Showing
1 changed file
with
2 additions
and
1 deletions
| ... | ... | @@ -44,7 +44,7 @@ |
| 44 | 44 | <uni-list class="customer-info-list"> |
| 45 | 45 | <uni-list-item title="年度总销量"> |
| 46 | 46 | <template v-slot:footer> |
| 47 | - <uni-easyinput type="number" v-model="customerInfo.annualTotalSales" placeholder="请输入年度总销量" | |
| 47 | + <uni-easyinput v-model="customerInfo.annualTotalSales" placeholder="请输入年度总销量" | |
| 48 | 48 | :inputBorder="false" /> |
| 49 | 49 | </template> |
| 50 | 50 | </uni-list-item> |
| ... | ... | @@ -374,6 +374,7 @@ export default { |
| 374 | 374 | })).filter(it => it.id) |
| 375 | 375 | } |
| 376 | 376 | const vals = this.getPayload() || {} |
| 377 | + console.log(vals,'12312321') | |
| 377 | 378 | if (this.customerInfo.annualTotalSales === '' && vals.annualTotalSales !== undefined && vals.annualTotalSales !== null) { |
| 378 | 379 | this.customerInfo.annualTotalSales = vals.annualTotalSales |
| 379 | 380 | } | ... | ... |