Kaynağa Gözat

首页 导航指引

chenrui 3 yıl önce
ebeveyn
işleme
c0cd778f06

+ 1 - 3
src/views/Home.vue

@@ -251,9 +251,7 @@ export default {
               name: '销售出库',
               styleC: 'red-color',
               url: '/outboundOrderManagement/outboundOrder/list',
-              params: {
-              	state: 'WAIT'
-              },
+              params: JSON.stringify({ state: 'WAIT', outBizType: 'SALES' }),
               permission: 'M_outboundList',
               orderNum: 'salesWaitOutWarehouseCount'
             },

+ 2 - 1
src/views/outboundOrderManagement/outboundOrder/list.vue

@@ -404,7 +404,8 @@ export default {
     if (this.$store.state.app.isNewTab) {
       this.resetData()
       if (this.$route.query.pageParams) {
-        this.queryParam.state = this.$route.query.pageParams.state
+        this.queryParam.state = JSON.parse(this.$route.query.pageParams).state
+        this.queryParam.outBizType = JSON.parse(this.$route.query.pageParams).outBizType
       }
       this.pageInit()
       this.$refs.table.refresh(true)