Browse Source

Merge remote-tracking branch 'origin/master'

master
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',
btnLabel: '添加车辆'
},
{
type: 'danger',
size: 'small',
icon: 'del',
btnKey: 'doDel',
btnLabel: '删除'
},
// {
// type: 'danger',
// size: 'small',
// icon: 'del',
// btnKey: 'doDel',
// btnLabel: ''
// },
{
type: 'success',
size: 'small',

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

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

Loading…
Cancel
Save