瀏覽代碼

样式修改

zhongxiaoyu 1 年之前
父節點
當前提交
e1c7ad1bc1

+ 3 - 0
src/components/SimpleTable/index.vue

@@ -377,6 +377,9 @@ defineExpose({
         z-index: 2;
       }
     }
+    &.align-left .cell {
+      text-align: left;
+    }
     .cell {
       padding: 0;
       font-size: 14px;

+ 1 - 1
src/components/steps/index.vue

@@ -166,7 +166,7 @@ const stepStyle = (index: number) => {
 <style lang="scss" scoped>
 .steps {
   height: calc(100% - 16px - 10px);
-  padding: 0 20px;
+  padding: 0 30px;
   display: flex;
   align-items: center;
   .step {

+ 12 - 10
src/views/realTime/components/FlightView/index.vue

@@ -186,16 +186,18 @@ const tableFormatter: CommonTableFormatter = (
       'anjian',
     ].includes(column.property)
   ) {
-    const splitValue = value.split('_')
-    if (splitValue.length === 2) {
-      const [count, datetime] = splitValue
-      return `${count ? `${count}\n` : ''}${datetimeToTime(
-        datetime,
-        flightDate as CommonValue
-      )}`
-    } else {
-      return datetimeToTime(value, flightDate as CommonValue)
-    }
+    // const splitValue = value.split('_')
+    // if (splitValue.length === 2) {
+    //   const [count, datetime] = splitValue
+    //   return `${count ? `${count}\n` : ''}${datetimeToTime(
+    //     datetime,
+    //     flightDate as CommonValue
+    //   )}`
+    // } else {
+    //   return datetimeToTime(value, flightDate as CommonValue)
+    // }
+    const time = datetimeToTime(value, flightDate as CommonValue)
+    return time ? `位置:--\n结果:通过\n时间:${time}` : ''
   }
   if (column.property === 'nodeCode') {
     const name = `${props.name.slice(0, 1).toLowerCase()}${props.name

+ 3 - 0
src/views/realTime/components/WaybillView/index.vue

@@ -391,6 +391,9 @@ const { cellClickHandler } = useTableCellClick(`${props.name}Goods`)
           margin-right: 8px;
         }
       }
+      ::v-deep .step-info-desc {
+        text-align: left;
+      }
     }
   }
   .goods-list :deep {

+ 20 - 0
src/views/realTime/hooks/useTableStyle.ts

@@ -108,6 +108,26 @@ export function useTableStyle(
       if (['stowageNo'].includes(column.property)) {
         classes.push('cell-click')
       }
+      if (
+        [
+          'tally',
+          'pull',
+          'wait',
+          'stowage',
+          'depot',
+          'resure',
+          'planeDown',
+          'loadPlane',
+          'pullSure',
+          'dlv',
+          'jxjj',
+          'hzjj',
+          'unload',
+          'anjian',
+        ].includes(column.property)
+      ) {
+        classes.push('align-left')
+      }
     }
 
     if (tableName?.includes('FlightWaybill')) {

+ 1 - 1
src/views/userManagement/account/auth.vue

@@ -47,7 +47,7 @@
           <div class="strategy-content">
             <template v-if="roleData.length">
               <el-scrollbar>
-                <el-checkbox-group @change="checkChange" v-model="roleGroup" size="default">
+                <el-checkbox-group style="padding: 8px;" @change="checkChange" v-model="roleGroup" size="default">
                   <el-row :gutter="16">
                     <el-col :span="8" v-for="(item,index) in roleData" :key="index">
                       <div @click="handleClick(item,index)" :class="index == roleIndex ? 'active' : ''" class="strategy-content-list">

+ 9 - 11
src/views/userManagement/role/auth.vue

@@ -24,7 +24,7 @@
         <div class="manageTitle">权限树</div>
         <div class="t30 auth-tree">
           <el-scrollbar>
-            <el-tree ref="treeRef" highlight-current @check="currentChange" :default-expanded-keys="checkKeys" :data="data" show-checkbox :props="defaultProps" node-key="auth_id" @node-click="handleNodeClick">
+            <el-tree ref="treeRef" highlight-current @check="currentChange" :default-expanded-keys="checkKeys" :data="data" show-checkbox :props="defaultProps" :expand-on-click-node="false" node-key="auth_id" @node-click="handleNodeClick">
               <template #default="{data}">
                 <span class="custom-tree-node">
                   {{ data.auth_name }}
@@ -222,17 +222,15 @@ const roleAuths = async () => {
   } catch (error) {}
 };
 
-const handleNodeClick = (data) => {
-  checkObj.value = data;
-  checkData.value.push(_.cloneDeep(data));
-  const datas = _.unionBy(checkData.value, "auth_id");
-  checkData.value = datas;
-  const checkNode = checkData.value.filter(
-    (item) => item.auth_id == data.auth_id
+const handleNodeClick = data => {
+  const cloneData = _.cloneDeep(data)
+  checkObj.value = cloneData;
+  checkData.value = _.unionBy([...checkData.value, cloneData], 'auth_id');
+  const checkNode = boxData.value[boxData.value.length - 1].find(
+    item => item.auth_id == data.auth_id
   );
-  if (checkNode.length) {
-    const formObj = checkNode[0];
-    form.value = formObj;
+  if (checkNode) {
+    form.value = { ...checkNode };
   } else {
     clearFormData();
   }