Showing
1 changed file
with
7 additions
and
13 deletions
| ... | @@ -468,13 +468,13 @@ | ... | @@ -468,13 +468,13 @@ |
| 468 | </Formitem> | 468 | </Formitem> |
| 469 | </el-col> | 469 | </el-col> |
| 470 | <el-col :span="6"> | 470 | <el-col :span="6"> |
| 471 | - <Formitem label="备注" prop="remark"> | 471 | + <Formitem label="备注" prop="note"> |
| 472 | <el-input | 472 | <el-input |
| 473 | type="text" | 473 | type="text" |
| 474 | class="inputShadow" | 474 | class="inputShadow" |
| 475 | - id="inputInner--remark" | 475 | + id="inputInner--note" |
| 476 | resize="none" | 476 | resize="none" |
| 477 | - v-model="formData.remark" | 477 | + v-model="formData.note" |
| 478 | clearable | 478 | clearable |
| 479 | placeholder="" | 479 | placeholder="" |
| 480 | ></el-input> | 480 | ></el-input> |
| ... | @@ -613,20 +613,14 @@ | ... | @@ -613,20 +613,14 @@ |
| 613 | mapDicDatas($store.getters.dict.MEASUREMENT_UNIT, scope.row.unit) | 613 | mapDicDatas($store.getters.dict.MEASUREMENT_UNIT, scope.row.unit) |
| 614 | }}</span> | 614 | }}</span> |
| 615 | </template> | 615 | </template> |
| 616 | - <template v-slot:unitLegalFirstCode="scope"> | 616 | + <template v-slot:unit1="scope"> |
| 617 | <span>{{ | 617 | <span>{{ |
| 618 | - mapDicDatas( | 618 | + mapDicDatas($store.getters.dict.MEASUREMENT_UNIT, scope.row.unit1) |
| 619 | - $store.getters.dict.MEASUREMENT_UNIT, | ||
| 620 | - scope.row.unitLegalFirstCode | ||
| 621 | - ) | ||
| 622 | }}</span> | 619 | }}</span> |
| 623 | </template> | 620 | </template> |
| 624 | - <template v-slot:unitLegalSecondCode="scope"> | 621 | + <template v-slot:unit2="scope"> |
| 625 | <span>{{ | 622 | <span>{{ |
| 626 | - mapDicDatas( | 623 | + mapDicDatas($store.getters.dict.MEASUREMENT_UNIT, scope.row.unit2) |
| 627 | - $store.getters.dict.MEASUREMENT_UNIT, | ||
| 628 | - scope.row.unitLegalSecondCode | ||
| 629 | - ) | ||
| 630 | }}</span> | 624 | }}</span> |
| 631 | </template> | 625 | </template> |
| 632 | <template v-slot:currency="scope"> | 626 | <template v-slot:currency="scope"> | ... | ... |
-
Please register or login to post a comment