feat:更新客户信息状态处理逻辑
Showing
1 changed file
with
6 additions
and
3 deletions
... | @@ -92,13 +92,16 @@ export default { | ... | @@ -92,13 +92,16 @@ export default { |
92 | } | 92 | } |
93 | }, | 93 | }, |
94 | custIdTypeCom() { | 94 | custIdTypeCom() { |
95 | return custIdTypeMap[this.custInfoCopy.custIdType] ? | 95 | return custIdTypeMap[this.custInfoCopy.custIdType] |
96 | custIdTypeMap[this.custInfoCopy.custIdType] : | 96 | ? custIdTypeMap[this.custInfoCopy.custIdType] |
97 | '无' | 97 | : '无' |
98 | } | 98 | } |
99 | }, | 99 | }, |
100 | methods: { | 100 | methods: { |
101 | transCustStatus(status) { | 101 | transCustStatus(status) { |
102 | if (status === '') { | ||
103 | return '无' | ||
104 | } | ||
102 | const numStatus = +status | 105 | const numStatus = +status |
103 | const map = { | 106 | const map = { |
104 | 0: '终止跟进', | 107 | 0: '终止跟进', | ... | ... |
-
Please register or sign in to post a comment