Showing
1 changed file
with
6 additions
and
1 deletions
| ... | @@ -356,7 +356,7 @@ | ... | @@ -356,7 +356,7 @@ |
| 356 | </Formitem> | 356 | </Formitem> |
| 357 | </el-col> | 357 | </el-col> |
| 358 | <!-- 订单申报通道 orderDeclareChannel --> | 358 | <!-- 订单申报通道 orderDeclareChannel --> |
| 359 | - <el-col :span="8"> | 359 | + <el-col :span="8" :key="dateKey"> |
| 360 | <Formitem | 360 | <Formitem |
| 361 | label="订单申报通道" | 361 | label="订单申报通道" |
| 362 | prop="orderDeclareChannel" | 362 | prop="orderDeclareChannel" |
| ... | @@ -369,6 +369,7 @@ | ... | @@ -369,6 +369,7 @@ |
| 369 | clearable | 369 | clearable |
| 370 | maxlength="4" | 370 | maxlength="4" |
| 371 | placeholder="" | 371 | placeholder="" |
| 372 | + @change="changeOrderDeclareChannel" | ||
| 372 | > | 373 | > |
| 373 | <el-option | 374 | <el-option |
| 374 | v-for="(item, index) in $store.getters.dict | 375 | v-for="(item, index) in $store.getters.dict |
| ... | @@ -881,6 +882,7 @@ export default { | ... | @@ -881,6 +882,7 @@ export default { |
| 881 | }, | 882 | }, |
| 882 | data() { | 883 | data() { |
| 883 | return { | 884 | return { |
| 885 | + dateKey: Date.now(), | ||
| 884 | //配置模板 | 886 | //配置模板 |
| 885 | portConfig: { | 887 | portConfig: { |
| 886 | PEK: { | 888 | PEK: { |
| ... | @@ -1070,6 +1072,9 @@ export default { | ... | @@ -1070,6 +1072,9 @@ export default { |
| 1070 | // } | 1072 | // } |
| 1071 | }, | 1073 | }, |
| 1072 | methods: { | 1074 | methods: { |
| 1075 | + changeOrderDeclareChannel() { | ||
| 1076 | + this.dateKey = Date.now(); | ||
| 1077 | + }, | ||
| 1073 | orderRequesterChange(val) { | 1078 | orderRequesterChange(val) { |
| 1074 | console.log(val); | 1079 | console.log(val); |
| 1075 | this.choosePortCode = []; | 1080 | this.choosePortCode = []; | ... | ... |
-
Please register or login to post a comment