pull/2/head
xiaozhiyong 1 year ago
parent 3a618dcb68
commit 054f945b8a
  1. 7
      driverManagement/serviceStation/serviceStation.vue

@ -56,6 +56,7 @@
},
methods: {
channelJudgment(item) {
let result = ''
if (item.channelCode) {
let cenum = {
TY: '团油',
@ -63,7 +64,7 @@
XOIL: '星油',
SQL: '三千里',
}
return ` - ${cenum[item.channelCode]}`
result += ` - ${cenum[item.channelCode]}`
}
if (item.secondChannelCode) {
let cenum = {
@ -74,9 +75,9 @@
SQ: '上汽',
TY: '团油',
}
return ` - ${cenum[item.secondChannelCode]}`
result += ` - ${cenum[item.secondChannelCode]}`
}
return ''
return result
},
seleFn(e) {
clearTimeout(this.timer)

Loading…
Cancel
Save