Showing
1 changed file
with
6 additions
and
1 deletions
| ... | @@ -358,7 +358,7 @@ | ... | @@ -358,7 +358,7 @@ |
| 358 | </Formitem> | 358 | </Formitem> |
| 359 | </el-col> | 359 | </el-col> |
| 360 | <!-- 订单申报通道 orderDeclareChannel --> | 360 | <!-- 订单申报通道 orderDeclareChannel --> |
| 361 | - <el-col :span="8"> | 361 | + <el-col :span="8" :key="dateKey"> |
| 362 | <Formitem | 362 | <Formitem |
| 363 | label="订单申报通道" | 363 | label="订单申报通道" |
| 364 | prop="orderDeclareChannel" | 364 | prop="orderDeclareChannel" |
| ... | @@ -371,6 +371,7 @@ | ... | @@ -371,6 +371,7 @@ |
| 371 | clearable | 371 | clearable |
| 372 | maxlength="4" | 372 | maxlength="4" |
| 373 | placeholder="" | 373 | placeholder="" |
| 374 | + @change="changeOrderDeclareChannel" | ||
| 374 | > | 375 | > |
| 375 | <el-option | 376 | <el-option |
| 376 | v-for="(item, index) in $store.getters.dict | 377 | v-for="(item, index) in $store.getters.dict |
| ... | @@ -876,6 +877,7 @@ export default { | ... | @@ -876,6 +877,7 @@ export default { |
| 876 | }, | 877 | }, |
| 877 | data() { | 878 | data() { |
| 878 | return { | 879 | return { |
| 880 | + dateKey: Date.now(), | ||
| 879 | //配置模板 | 881 | //配置模板 |
| 880 | portConfig: { | 882 | portConfig: { |
| 881 | PEK: { | 883 | PEK: { |
| ... | @@ -1065,6 +1067,9 @@ export default { | ... | @@ -1065,6 +1067,9 @@ export default { |
| 1065 | // } | 1067 | // } |
| 1066 | }, | 1068 | }, |
| 1067 | methods: { | 1069 | methods: { |
| 1070 | + changeOrderDeclareChannel() { | ||
| 1071 | + this.dateKey = Date.now(); | ||
| 1072 | + }, | ||
| 1068 | orderRequesterChange(val) { | 1073 | orderRequesterChange(val) { |
| 1069 | console.log(val); | 1074 | console.log(val); |
| 1070 | this.choosePortCode = []; | 1075 | this.choosePortCode = []; | ... | ... |
-
Please register or login to post a comment