luobang 2 năm trước cách đây
mục cha
commit
6d175b388b

+ 2 - 2
build/utils.js

@@ -15,8 +15,8 @@ const devPathSrc = path.resolve(__dirname, '../../../src') // node_modules应用
 // ['index','appoint','configManager','homepage',''inward,'queue','RMS','sale','serviceManager','SporadicManage'
 //       统计报表       组织机构/系统管理 采购  仓储
 //  'statisticalReport','systemConfig','TMS','WMS','workFlow','ADMINISTRATORS']
-// let devModules = ['index', 'queue']
-let devModules = ['all']
+let devModules = ['index', 'statisticalReport']
+// let devModules = ['all']
 //let devModules=['index']
 if (pathSrc.indexOf('node_modules') > -1) {
   devModules = require('../../../cors.js').devModules

+ 2 - 2
config/index.js

@@ -72,8 +72,8 @@ let proxyTable = {
   },
   // 所有数据的请求域名地址r
   '/api/v1': {
-    target: 'http://172.16.33.166:80',
-    // target: 'http://localhost:8080',
+    // target: 'http://172.16.33.166:80',
+    target: 'http://localhost:8080',
     // target: 'http://192.168.1.104:8080',
     ws: true,
     pathRewrite: {

+ 23 - 12
src/views/statisticalReport/components/salesLogisticsStatistics/saleSteelReports.vue

@@ -1783,17 +1783,23 @@ export default {
     //控制筛选数组变化
     filterListChange() {
       //客户筛选数组
-      let consigneeNameList = this.tableData.map(e => {
-        return e.consigneeName
-      })
+      let consigneeNameList = this.tableData
+        .map(e => {
+          return e.consigneeName
+        })
+        .sort()
       //承运商筛选数组
-      let carrierNameList = this.tableData.map(e => {
-        return e.carrierName
-      })
+      let carrierNameList = this.tableData
+        .map(e => {
+          return e.carrierName
+        })
+        .sort()
       //车牌号筛选数组
-      let capacityList = this.tableData.map(e => {
-        return e.newCapacityNo
-      })
+      let capacityList = this.tableData
+        .map(e => {
+          return e.newCapacityNo
+        })
+        .sort()
       //物资筛选数组
       let materialNameList = this.tableData
         .map(e => {
@@ -1802,6 +1808,7 @@ export default {
         .filter(e => {
           return e != null
         })
+        .sort()
       //销售片区筛选数组
       let saleAreaList = this.tableData
         .map(e => {
@@ -1817,6 +1824,7 @@ export default {
         .filter(e => {
           return e != null
         })
+        .sort()
       let orderStatusList = this.tableData
         .map(e => {
           return e.orderStatus
@@ -1831,12 +1839,15 @@ export default {
         .filter(e => {
           return e != null
         })
+        .sort()
       let saleOrderStatusList = this.tableData.map(e => {
         return e.saleOrderStatus
       })
-      let saleRemarkList = this.tableData.map(e => {
-        return e.saleRemark
-      })
+      let saleRemarkList = this.tableData
+        .map(e => {
+          return e.saleRemark
+        })
+        .sort()
       this.filterConsigneeList = []
       this.filterCarrierList = []
       this.filterCapacityList = []