lshcom 1.0.15 → 1.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lshcom",
3
- "version": "1.0.15",
3
+ "version": "1.0.17",
4
4
  "files": [
5
5
  "src/assets/*",
6
6
  "src/common/*",
@@ -69,8 +69,11 @@
69
69
  this.selectValue = val
70
70
  },
71
71
  options: function (val, oldVal) {
72
- this.selectOptions = JSON.parse(JSON.stringify(val))
73
- this.unshiftAll()
72
+ this.selectOptions = []
73
+ this.$nextTick(() => {
74
+ this.selectOptions = JSON.parse(JSON.stringify(val))
75
+ this.unshiftAll()
76
+ });
74
77
  },
75
78
  },
76
79
  computed: {
@@ -3181,7 +3181,9 @@ export default {
3181
3181
  empCode: this.empCode,
3182
3182
  "mobile": this.portrayalVo.mobile, //人群、客户标签必填
3183
3183
  "name": this.options.filter(item => item.value == this.name)[0].label, //人群必填
3184
- "vin": this.vehicleListObj.frameNo //车辆必填
3184
+ "vin": this.vehicleListObj.frameNo, //车辆必填
3185
+ scvId: this.portrayalVo.carOwner.scvId,
3186
+ customerIdNo: this.portrayalVo.carOwner.customerIdNo,
3185
3187
  }, obj => {
3186
3188
  this[this.activeName1 + "Arr"] = obj
3187
3189
  this[this.activeName1 + "Search"]()