snow 2 years ago
parent
commit
09fc31e0ab

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/0.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.js


+ 5 - 5
src/apis/components/search-terrace.js

@@ -1,7 +1,7 @@
-import http from "@/apis/axios";
-const api = "admin/";
+import http from '@/apis/axios'
+const api = 'admin/'
 export default {
   // 列表
-  list: (data, params) => http(api + "platformlist", data, "post", params),
-};
-   
+  list: (data, params) => http(api + 'getPlatformListByUid', data, 'post', params)
+}
+

+ 57 - 58
src/components/globalComponents/search-terrace/main.vue

@@ -17,42 +17,26 @@
       :label="item.platform_name"
       :value="item.id"
       :disabled="item.status + '' === '0'"
-    >
-    </el-option>
+    />
   </el-select>
 </template>
 
 <script>
-import asyncRequest from "@/apis/components/search-terrace";
-import resToken from "@/mixins/resToken";
+import asyncRequest from '@/apis/components/search-terrace'
+import resToken from '@/mixins/resToken'
 export default {
-  name: "SearchTerrace",
+  name: 'SearchTerrace',
   mixins: [resToken],
   props: [
-    "size",
-    "value",
-    "placeholder",
-    "isDetail",
-    "disabled",
-    "type",
-    "names",
-    "is_show",
+    'size',
+    'value',
+    'placeholder',
+    'isDetail',
+    'disabled',
+    'type',
+    'names',
+    'is_show'
   ],
-   watch: {
-    names: function (val, old) {
-      // console.log(val, old, this.isDetail, "1");
-      this.searchName = val;
-      if (this.isDetail && this.searchName) {
-        this.remoteMethod(this.searchName);
-      }
-    },
-    isDetail: function (val, old) {
-      // console.log(val, old, this.isDetail, "2");
-      if (val && this.searchName) {
-        this.remoteMethod(this.searchName);
-      }
-    },
-  },
   /**
    * 属性集合
    * @param {String}        size             : 组件大小            非必填
@@ -70,60 +54,75 @@ export default {
     return {
       options: [],
       selectLoading: false,
-      searchName: "",
+      searchName: '',
       formValue: {
         page: 1,
         size: 10000,
-        start: "",
-        is_show: "1",
-        end: "",
-        platform_name: "",
-        creater: "",
-      },
-    };
+        start: '',
+        is_show: '1',
+        end: '',
+        platform_name: '',
+        creater: ''
+      }
+    }
+  },
+  watch: {
+    names: function(val, old) {
+      // console.log(val, old, this.isDetail, "1");
+      this.searchName = val
+      if (this.isDetail && this.searchName) {
+        this.remoteMethod(this.searchName)
+      }
+    },
+    isDetail: function(val, old) {
+      // console.log(val, old, this.isDetail, "2");
+      if (val && this.searchName) {
+        this.remoteMethod(this.searchName)
+      }
+    }
   },
   mounted() {
-    this.options = [];
-    this.selectLoading = false;
-    this.remoteMethod();
+    this.options = []
+    this.selectLoading = false
+    this.remoteMethod()
   },
   methods: {
     async selectChange(e) {
       if (e) {
-        let index = this.options.findIndex((v) => v.id === e);
+        const index = this.options.findIndex((v) => v.id === e)
         if (index !== -1) {
-          let model = {
+          const model = {
             id: this.options[index].id,
             code: this.options[index].platform_code,
             label: this.options[index].platform_name,
-            platform_type:this.options[index].platform_type
-          };
-          this.$emit("searchChange", model);
+            platform_type: this.options[index].platform_type
+          }
+          this.$emit('searchChange', model)
         } else {
-          this.$emit("searchChange", {});
+          this.$emit('searchChange', {})
         }
       } else {
-        this.$emit("searchChange", {});
+        this.$emit('searchChange', {})
       }
     },
     async remoteMethod() {
-      this.selectLoading = true;
-      this.options = [];
-      this.formValue.is_show = this.is_show || "1";
-      const { code, data, message } = await asyncRequest.list(this.formValue);
+      this.selectLoading = true
+      this.options = []
+      this.formValue.is_show = this.is_show || '1'
+      const { code, data, message } = await asyncRequest.list(this.formValue)
 
       if (code === 0) {
-        const { list } = data;
-        this.options = list;
+        const { list } = data
+        this.options = list
       } else if (code >= 100 && code <= 104) {
-        await this.logout();
+        await this.logout()
       } else {
-        this.$message.warning(message);
+        this.$message.warning(message)
       }
-      this.selectLoading = false;
-    },
-  },
-};
+      this.selectLoading = false
+    }
+  }
+}
 </script>
 
 <style>

+ 3 - 2
src/views/sellOut/filing/index.vue

@@ -186,7 +186,7 @@ export default {
       statusList,
       sitem: null,
 
-      loading: true,
+      loading: false,
       showModel: false,
       isDetail: false,
       modelId: 0,
@@ -230,7 +230,6 @@ export default {
     const { back } = this.$route.query;
     if (back) {
       this.parmValue = JSON.parse(back);
-      console.log(this.parmValue);
       const { page, size } = this.parmValue;
 
       // if(this.parmValue.khNo.length>0){
@@ -350,6 +349,8 @@ export default {
         return;
       }
 
+      return
+
       this.loading = true;
       this.parmValue.filingCode = this.select === "1" ? this.s_input : "";
       // this.parmValue.supplierNo = this.select === "2" ? this.s_input : "";

+ 25 - 26
src/views/supplierSellOut/supplierFiling/detail.vue

@@ -3,13 +3,13 @@
     <el-tabs v-model="activeTabs">
       <el-tab-pane name="1" :label="title">
         <el-collapse v-model="collapses">
-          <el-collapse-item name="1" :title="title" v-if="type === 'add'">
-              <base-form :type="type" :id="id"  />
+          <el-collapse-item v-if="type === 'add'" name="1" :title="title">
+            <base-form :id="id" :type="type" />
           </el-collapse-item>
 
           <template v-else>
-              <base-detail ref="baseForm" :sitem="sitem" @change-status="handleChangeStatus" @change-num="handleChangeNum" @change-order-code="handleChangeOrderCode" />
-           </template>
+            <base-detail ref="baseForm" :sitem="sitem" @change-status="handleChangeStatus" @change-num="handleChangeNum" @change-order-code="handleChangeOrderCode" />
+          </template>
 
           <tempalte v-if="status === '2'">
             <el-collapse-item name="2" title="待转单">
@@ -30,59 +30,58 @@
 
 <script>
 import WaitTransferred from './cpns/wait-transferred.vue'
-import ShipmentRequest from "./cpns/shipment-request.vue"
+import ShipmentRequest from './cpns/shipment-request.vue'
 import baseDetail from './cpns/baseDetail.vue'
 import BaseForm from './cpns/baseForm.vue'
 
 export default {
-  data() {
-    return {
-      activeTabs: '1',
-      collapses:['1','2','3'],
-      status:'',
-      sitem:{},
-      orderCode:"",
-      num:"0"
-    }
-  },
   components: {
     BaseForm,
     baseDetail,
     WaitTransferred,
     ShipmentRequest
   },
+  data() {
+    return {
+      activeTabs: '1',
+      collapses: ['1', '2', '3'],
+      status: '',
+      sitem: {},
+      orderCode: '',
+      num: '0'
+    }
+  },
   computed: {
     title() {
       return this.id && this.id !== 'add' ? '报备单详情' : '新建报备单'
     },
-    type(){
+    type() {
       return this.id && this.id !== 'add' ? 'view' : 'add'
     },
-    id(){
+    id() {
       return this.$route.query.id
     },
     getNewTime() {
-      this.newTime = new Date().valueOf();
-    },
+      this.newTime = new Date().valueOf()
+    }
   },
-  methods:{
-    handleChangeStatus(status){
-      this.status = status;
+  methods: {
+    handleChangeStatus(status) {
+      this.status = status
     },
-    handleChangeOrderCode(orderCode){
+    handleChangeOrderCode(orderCode) {
       this.orderCode = orderCode
     },
-    handleRefresh(){
+    handleRefresh() {
       this.$refs.baseForm.initData()
     },
-    handleChangeNum(num){
+    handleChangeNum(num) {
       this.num = num
     }
   }
 }
 </script>
 
-
 <style lang="scss" scoped>
 .report-detail__container {
   padding: 15px;

+ 1 - 1
src/views/supplierSellOut/supplierFiling/index.vue

@@ -47,7 +47,7 @@
           <el-row>
             <el-col :span="3" class="fr" style="width: 66px; margin-top: 10px">
               <el-button :size="searchSize" type="success" style="float: right"
-                @click="routeGoto('/report/detail', { id: 'add', type: 'add' })">
+                @click="routeGoto('/supplierSellOut/supplierFilingDetail', { id: 'add', type: 'add' })">
                 添加
               </el-button>
             </el-col>

Some files were not shown because too many files changed in this diff