模板修改

fengcang
anthonyywj2 3 years ago
parent a192f62a36
commit c3bc6119af

@ -246,7 +246,8 @@
> >
<selectDiDetail :editQuery="diDetails" <selectDiDetail :editQuery="diDetails"
></selectDiDetail> ></selectDiDetail>
</el-dialog>- </el-dialog>
-
</div> </div>
</template> </template>
@ -292,6 +293,10 @@ export default {
thirdId: "", thirdId: "",
keys: [], keys: [],
thirdSys: null, thirdSys: null,
manufactory: null,
price: null,
erpName: null,
measname: null,
}, },
fromOptions: [], fromOptions: [],
checked: true, checked: true,
@ -415,6 +420,7 @@ export default {
} }
this.combineQuery.manufactory = this.currentRow.manufactory; this.combineQuery.manufactory = this.currentRow.manufactory;
this.combineQuery.price = this.currentRow.price; this.combineQuery.price = this.currentRow.price;
this.combineQuery.measname = this.currentRow.measname;
combineUdi(this.combineQuery) combineUdi(this.combineQuery)
.then((response) => { .then((response) => {
if (response.code == 20000) { if (response.code == 20000) {

@ -132,13 +132,13 @@
<el-form-item label="仓库编码" prop="title" class="query-form-item"> <el-form-item label="仓库编码" prop="title" class="query-form-item">
<el-input <el-input
v-model="formData.code" style="width: 80%" v-model.trim="formData.code" style="width: 80%"
auto-complete="off" auto-complete="off"
></el-input> ></el-input>
</el-form-item> </el-form-item>
<el-form-item label="仓库名称" prop="name" class="query-form-item"> <el-form-item label="仓库名称" prop="name" class="query-form-item">
<el-input <el-input
v-model="formData.name" style="width: 80%" v-model.trim="formData.name" style="width: 80%"
auto-complete="off" auto-complete="off"
></el-input> ></el-input>
</el-form-item> </el-form-item>

@ -138,7 +138,14 @@
placeholder="请输入"></el-input> placeholder="请输入"></el-input>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="打印方式" prop="remark1" show-overflow-tooltip="true">
<template slot-scope="scope">
<el-select v-model="scope.row.printType" placeholder="打印方式">
<el-option label="批次号" :value=0></el-option>
<el-option label="条码清单" :value=1></el-option>
</el-select>
</template>
</el-table-column>
<el-table-column label="操作" width="150" prop="price" fixed="right"> <el-table-column label="操作" width="150" prop="price" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button

Loading…
Cancel
Save