ソースを参照

编码bug修复

LAPTOP-16IUEB3P\Lenovo 3 年 前
コミット
5eccf28d31

ファイルの差分が大きいため隠しています
+ 1 - 12766
package-lock.json


+ 4 - 4
src/views/codeManagement/components/myTable.vue

@@ -185,19 +185,19 @@
               label: '年'
             },
             {
-              value: 'yyyymm',
+              value: 'yyyyMM',
               label: '年月'
             },
             {
-              value: 'yyyymmdd',
+              value: 'yyyyMMdd',
               label: '年月日'
             },
             {
-              value: 'yyyymmddhh',
+              value: 'yyyyMMddHH',
               label: '年月日时'
             },
             {
-              value: 'yyyymmddhhmmss',
+              value: 'yyyyMMddHHmmss',
               label: '年月日时分秒'
             }
           ]

+ 40 - 3
src/views/ledgerAssets/boat/index.vue

@@ -1,15 +1,42 @@
 <template>
   <div class="ele-body">
-    舟皿台账
+     <el-card shadow="never" v-loading="loading">
+       <ele-split-layout
+         width="266px"
+         allow-collapse
+         :right-style="{ overflow: 'hidden' }"
+       >
+         <div>
+           <div class="ele-border-lighter sys-organization-list">
+             <AssetTree
+               @handleNodeClick="handleNodeClick"
+               @setDefault="setDefaultList"
+               :type="[2]"
+               ref="treeList"
+             />
+           </div>
+         </div>
+         <template v-slot:content>
+           11111
+           <!-- <org-user-list
+             v-if="current"
+             :organization-list="data"
+             :organization-id="current.id"
+           /> -->
+         </template>
+       </ele-split-layout>
+     </el-card>
   </div>
 </template>
 
 <script>
+  import AssetTree from '@/components/AssetTree';
   export default {
-    // name: 'boatLedger',
-    components: {},
+    components: { AssetTree },
     data () {
       return {
+        // 加载状态
+        loading: true,
 
       };
     },
@@ -17,6 +44,16 @@
 
     },
     methods: {
+      handleNodeClick (info) {
+        // this.chooseId = info.id
+        // this.searchForm.classificationIds = [info.id]
+        // this.handleList()
+      },
+      
+      setDefaultList(id){
+        // this.searchForm.classificationIds = [id]
+        // this.handleList()
+      },
 
     }
   };

+ 0 - 1
vue.config.js

@@ -16,7 +16,6 @@ module.exports = {
       // 当我们的本地的请求 有/api的时候,就会代理我们的请求地址向另外一个服务器发出请求
       '/api': {
         // target: 'http://192.168.3.51:86', // 测试
-
         // target: 'http://192.168.3.35:8080', // kang杨威
         target: 'http://192.168.3.25:8080', // 黄峥嵘
         // target: 'http://192.168.3.41:8080', // 何江鹏

この差分においてかなりの量のファイルが変更されているため、一部のファイルを表示していません