linwenxin 7 hónapja
szülő
commit
f2aecfba92

+ 3 - 3
package-lock.json

@@ -4761,9 +4761,9 @@
       "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ=="
     },
     "@zjlib/element-plugins": {
-      "version": "2.14.2",
-      "resolved": "http://121.41.110.30:4873/@zjlib%2felement-plugins/-/element-plugins-2.14.2.tgz",
-      "integrity": "sha512-6mzSZBjvM7SxcU1Tmmie5IYah1e54bMEv/rcGANgnAJlmJXxaZuJTNJ6rj0VpPmpvC3r0tIfF0vDoLoMgO39ew==",
+      "version": "2.15.0",
+      "resolved": "http://121.41.110.30:4873/@zjlib%2felement-plugins/-/element-plugins-2.15.0.tgz",
+      "integrity": "sha512-8Jo7YCwzmIuENfCB6I11TtOUW/MRuFq+lk+n4hFL8m9D7uyGfjvCost5S5qOxIE6ZRo6Iy2oBu+jUcp/SXpnlA==",
       "requires": {
         "@turf/turf": "^6.5.0",
         "@vuemap/vue-amap": "^0.1.12",

+ 1 - 1
package.json

@@ -18,7 +18,7 @@
     "@jiaminghi/data-view": "^2.10.0",
     "@turf/turf": "^6.5.0",
     "@vue/composition-api": "^1.7.1",
-    "@zjlib/element-plugins": "^2.14.2",
+    "@zjlib/element-plugins": "^2.15.0",
     "@zjlib/element-ui2": "^1.0.3",
     "axios": "0.18.1",
     "chatgpt": "^4.1.2",

+ 15 - 13
src/main.js

@@ -69,13 +69,6 @@ Vue.use(ElementPlugins, {
   //   // })
   // }
 })
-Vue.use(AMap)
-AMap.initAMapApiLoader({
-  // 高德的key
-  key: 'df9bfabcba60cc6e7ad45ae9923a682d',
-  version: '2.0',
-  plugins: ['AMap.Geocoder', 'AMap.AutoComplete', 'AMap.PlaceSearch', 'AMap.DistrictSearch']
-})
 
 // // 本地引用;
 // import ElementPlugins, { AMap } from '@packages'
@@ -84,12 +77,21 @@ AMap.initAMapApiLoader({
 //     'label-position': 'right'
 //   }
 // })
-// Vue.use(AMap)
-// AMap.initAMapApiLoader({
-//   // 高德的key
-//   key: 'df9bfabcba60cc6e7ad45ae9923a682d',
-//   plugins: ['AMap.Geocoder', 'AMap.AutoComplete', 'AMap.PlaceSearch']
-// })
+
+Vue.use(AMap)
+AMap.initAMapApiLoader({
+  // 高德的key
+  key: 'df9bfabcba60cc6e7ad45ae9923a682d',
+  plugins: ['AMap.Geocoder', 'AMap.AutoComplete', 'AMap.PlaceSearch']
+})
+
+Vue.use(AMap)
+AMap.initAMapApiLoader({
+  // 高德的key
+  key: 'df9bfabcba60cc6e7ad45ae9923a682d',
+  version: '2.0',
+  plugins: ['AMap.Geocoder', 'AMap.AutoComplete', 'AMap.PlaceSearch', 'AMap.DistrictSearch']
+})
 
 import '@/utils/time.js'
 import { getIPAdd } from '@/utils/lbs.js'

+ 4 - 0
src/views/workOrder/workOrderPool/detailModule/workOrderInfo/mixins/pandanxinxi.js

@@ -74,6 +74,7 @@ export default {
             !this?.orderInfo?.isThreeOrder && this.formOptions.websitId.isShow && this.formOptions.websitId.isEdit,
           name: 'el-select',
           options: this.websitList,
+          echoInsertion: true,
           md: 8,
           attributes: {
             disabled: !this.formOptions.websitId.isEdit,
@@ -84,6 +85,7 @@ export default {
           formItemAttributes: {
             label: '网点名称',
             prop: 'websitId',
+            propName: 'websitName',
             rules: this.formOptions.websitId.isRules
           },
           events: {
@@ -167,6 +169,7 @@ export default {
                     this.orderInfo.workerId == item.value ||
                     !~this.orderInfo.orderWorkers.map(item => item.workerId).indexOf(item.value)
                 ),
+                echoInsertion: true,
                 md: 8,
                 attributes: {
                   disabled: !this.formOptions.workerId.isEdit,
@@ -177,6 +180,7 @@ export default {
                 formItemAttributes: {
                   label: '主要工程师',
                   prop: 'workerId',
+                  propName: 'workerName',
                   rules: this.formOptions.workerId.isRules
                 },
                 events: {

+ 10 - 0
src/views/workOrder/workOrderPool/detailModule/workOrderInfo/mixins/serviceInfo.js

@@ -193,6 +193,7 @@ export default {
           name: 'el-select',
           md: 6,
           options: this.orderChannels,
+          echoInsertion: true,
           attributes: {
             disabled: !this.formOptions.orderChannelId.isEdit,
             placeholder: '请选择',
@@ -202,6 +203,7 @@ export default {
           formItemAttributes: {
             label: '工单渠道',
             prop: 'orderChannelId',
+            propName: 'orderChannelText',
             rules: this.formOptions.orderChannelId.isRules
           },
           events: {
@@ -257,6 +259,7 @@ export default {
           name: 'el-select',
           md: 6,
           options: this.WORKER_ORDER_SOURCE,
+          echoInsertion: true,
           attributes: {
             disabled: !this.formOptions.source.isEdit,
             placeholder: '请选择',
@@ -266,6 +269,7 @@ export default {
           formItemAttributes: {
             label: '工单来源',
             prop: 'source',
+            propName: 'source',
             rules: this.formOptions.source.isRules
           },
           events: {
@@ -340,6 +344,7 @@ export default {
             { value: '急', label: '急' },
             { value: '紧急', label: '紧急' }
           ],
+          echoInsertion: true,
           attributes: {
             clearable: true,
             filterable: true,
@@ -349,6 +354,7 @@ export default {
           formItemAttributes: {
             label: '紧急程度',
             prop: 'urgent',
+            propName: 'urgent',
             rules: this.formOptions.urgent.isRules
           }
         },
@@ -362,6 +368,7 @@ export default {
             { value: '二级', label: '二级' },
             { value: '三级', label: '三级' }
           ],
+          echoInsertion: true,
           attributes: {
             clearable: true,
             filterable: true,
@@ -371,6 +378,7 @@ export default {
           formItemAttributes: {
             label: '投诉等级',
             prop: 'complaint',
+            propName: 'complaint',
             rules: this.formOptions.complaint.isRules
           }
         },
@@ -385,6 +393,7 @@ export default {
             { value: '中评', label: '中评' },
             { value: '差评', label: '差评' }
           ],
+          echoInsertion: true,
           attributes: {
             clearable: true,
             filterable: true,
@@ -394,6 +403,7 @@ export default {
           formItemAttributes: {
             label: '评价结果',
             prop: 'evaluate',
+            propName: 'evaluate',
             rules: this.formOptions.evaluate.isRules
           }
         },