Browse Source

Merge remote-tracking branch 'origin/master'

zhanglei
fanzongzhe 6 months ago
parent
commit
b24a5db599
  1. 14
      yxt-as-ui/src/views/client/customermanagement/customermanagement.vue
  2. 4
      yxt-as-ui/src/views/operation/repairbill/repairbillAdd.vue

14
yxt-as-ui/src/views/client/customermanagement/customermanagement.vue

@ -217,13 +217,13 @@ export default {
btnKey: 'addVehicle', btnKey: 'addVehicle',
btnLabel: '添加车辆' btnLabel: '添加车辆'
}, },
{ // {
type: 'danger', // type: 'danger',
size: 'small', // size: 'small',
icon: 'del', // icon: 'del',
btnKey: 'doDel', // btnKey: 'doDel',
btnLabel: '删除' // btnLabel: ''
}, // },
{ {
type: 'success', type: 'success',
size: 'small', size: 'small',

4
yxt-as-ui/src/views/operation/repairbill/repairbillAdd.vue

@ -1066,7 +1066,7 @@ export default {
this.formobj.customerVehicleSid = value.customerVehicleSid this.formobj.customerVehicleSid = value.customerVehicleSid
// //
if (this.formobj.billTypeKey === '2') { if (this.formobj.billTypeKey === '2') {
req.getListByCustomerSid({ customerSid: this.formobj.customerSid }).then((res) => { req.getListByCustomerSid({ sid: this.formobj.customerSid }).then((res) => {
if (res.success) { if (res.success) {
this.people_list = res.data this.people_list = res.data
} }
@ -1079,7 +1079,7 @@ export default {
this.formobj.billTypeKey = choose[0].dictKey this.formobj.billTypeKey = choose[0].dictKey
// //
if (this.formobj.billTypeKey === '2' && this.formobj.customerSid !== '') { if (this.formobj.billTypeKey === '2' && this.formobj.customerSid !== '') {
req.getListByCustomerSid({ customerSid: this.formobj.customerSid }).then((res) => { req.getListByCustomerSid({ sid: this.formobj.customerSid }).then((res) => {
if (res.success) { if (res.success) {
this.people_list = res.data this.people_list = res.data
} }

Loading…
Cancel
Save