12/20 界面优化

dev_unify
wangwei 4 months ago
parent 4908ac4415
commit 76ad8c9451

@ -552,7 +552,8 @@ export function addAliBizProduct(params) {
return axios({
url: "/udiwms/inout/order/addAliBizProduct",
method: "post",
data: params
data: params,
timeout: 60000
});
}

@ -83,6 +83,13 @@
></el-input>
</template>
</el-table-column>
<el-table-column label="包装比例" prop="packRatio" show-overflow-tooltip width="120">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.packRatio" style="width: 100%"
:disabled="scope.$index !== selectedIndex"
></el-input>
</template>
</el-table-column>
<el-table-column label="层级单位" prop="packUnit" show-overflow-tooltip width="120">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.packUnit" style="width: 100%"
@ -754,6 +761,7 @@ export default {
nameCode: '',
packLevel: null,
bhxjsl: null,
packRatio:null,
isDisabled: false,
isUpDisabled: true,
rowDisabled: false
@ -968,7 +976,8 @@ export default {
uuid: this.newProductData.uuid,
productId: row.productId,
diType: row.diType,
xjdw: row.xjdw
xjdw: row.xjdw,
packRatio: row.packRatio
}
updateLevelDrug(editQuery).then(res => {
this.saveLoading = false

Loading…
Cancel
Save