Showing
1 changed file
with
19 additions
and
1 deletions
| ... | @@ -508,6 +508,24 @@ | ... | @@ -508,6 +508,24 @@ |
| 508 | </Formitem> | 508 | </Formitem> |
| 509 | </el-col> | 509 | </el-col> |
| 510 | <el-col :span="3"> | 510 | <el-col :span="3"> |
| 511 | + <Formitem label="运费标志" prop="fflag"> | ||
| 512 | + <el-select | ||
| 513 | + type="text" | ||
| 514 | + id="inputInner--fflag" | ||
| 515 | + v-model="formData.fflag" | ||
| 516 | + clearable | ||
| 517 | + placeholder="" | ||
| 518 | + > | ||
| 519 | + <el-option | ||
| 520 | + v-for="(item, index) in $store.getters.dict.DECLARE_F_FLAG" | ||
| 521 | + :key="index" | ||
| 522 | + :label="item.itemChineseName" | ||
| 523 | + :value="item.itemValue" | ||
| 524 | + ></el-option> | ||
| 525 | + </el-select> | ||
| 526 | + </Formitem> | ||
| 527 | + </el-col> | ||
| 528 | + <el-col :span="6"> | ||
| 511 | <Formitem label="生产销售企业代码" prop="ownerCode"> | 529 | <Formitem label="生产销售企业代码" prop="ownerCode"> |
| 512 | <el-input | 530 | <el-input |
| 513 | type="text" | 531 | type="text" |
| ... | @@ -559,7 +577,7 @@ | ... | @@ -559,7 +577,7 @@ |
| 559 | ></el-input> | 577 | ></el-input> |
| 560 | </Formitem> | 578 | </Formitem> |
| 561 | </el-col> | 579 | </el-col> |
| 562 | - <el-col :span="3"> | 580 | + <el-col :span="6"> |
| 563 | <Formitem label="区内企业名称" prop="iacName"> | 581 | <Formitem label="区内企业名称" prop="iacName"> |
| 564 | <el-input | 582 | <el-input |
| 565 | type="text" | 583 | type="text" | ... | ... |
-
Please register or login to post a comment