Showing
1 changed file
with
18 additions
and
8 deletions
| ... | @@ -342,15 +342,20 @@ | ... | @@ -342,15 +342,20 @@ |
| 342 | </el-col> | 342 | </el-col> |
| 343 | <el-col :span="3"> | 343 | <el-col :span="3"> |
| 344 | <Formitem label="运输方式" prop="trafMode"> | 344 | <Formitem label="运输方式" prop="trafMode"> |
| 345 | - <el-input | 345 | + <el-select |
| 346 | type="text" | 346 | type="text" |
| 347 | - class="inputShadow" | ||
| 348 | id="inputInner--trafMode" | 347 | id="inputInner--trafMode" |
| 349 | - resize="none" | ||
| 350 | v-model="formData.trafMode" | 348 | v-model="formData.trafMode" |
| 351 | clearable | 349 | clearable |
| 352 | placeholder="" | 350 | placeholder="" |
| 353 | - ></el-input> | 351 | + > |
| 352 | + <el-option | ||
| 353 | + v-for="(item, index) in $store.getters.dict.DECLARE_TRAFMODE" | ||
| 354 | + :key="index" | ||
| 355 | + :label="item.itemChineseName" | ||
| 356 | + :value="item.itemValue" | ||
| 357 | + ></el-option> | ||
| 358 | + </el-select> | ||
| 354 | </Formitem> | 359 | </Formitem> |
| 355 | </el-col> | 360 | </el-col> |
| 356 | <el-col :span="3"> | 361 | <el-col :span="3"> |
| ... | @@ -465,15 +470,20 @@ | ... | @@ -465,15 +470,20 @@ |
| 465 | </el-col> | 470 | </el-col> |
| 466 | <el-col :span="3"> | 471 | <el-col :span="3"> |
| 467 | <Formitem label="运费币制" prop="fcurrency"> | 472 | <Formitem label="运费币制" prop="fcurrency"> |
| 468 | - <el-input | 473 | + <el-select |
| 469 | type="text" | 474 | type="text" |
| 470 | - class="inputShadow" | ||
| 471 | id="inputInner--fcurrency" | 475 | id="inputInner--fcurrency" |
| 472 | - resize="none" | ||
| 473 | v-model="formData.fcurrency" | 476 | v-model="formData.fcurrency" |
| 474 | clearable | 477 | clearable |
| 475 | placeholder="" | 478 | placeholder="" |
| 476 | - ></el-input> | 479 | + > |
| 480 | + <el-option | ||
| 481 | + v-for="(item, index) in $store.getters.dict.CURRENCY" | ||
| 482 | + :key="index" | ||
| 483 | + :label="item.itemChineseName" | ||
| 484 | + :value="item.itemValue" | ||
| 485 | + ></el-option> | ||
| 486 | + </el-select> | ||
| 477 | </Formitem> | 487 | </Formitem> |
| 478 | </el-col> | 488 | </el-col> |
| 479 | <el-col :span="3"> | 489 | <el-col :span="3"> | ... | ... |
-
Please register or login to post a comment