设备代码提交

20231126-yw
郑明梁 2 years ago
parent 12e67bdfd4
commit 9dec12457b

@ -58,7 +58,7 @@
</el-form-item>
</el-col>
<el-col :span="10">
<el-col :span="10" v-if="paramValue!=2">
<el-form-item class="query-form-item" label="设备来源:">
<el-select v-model="formData.type" placeholder="请选择设备来源信息"
:disabled="detailList.length >0"
@ -113,7 +113,10 @@
<el-table-column width="150" label="设备名称" prop="productName" show-overflow-tooltip></el-table-column>
<el-table-column width="150" label="规格型号" prop="ggxh" show-overflow-tooltip></el-table-column>
<el-table-column width="150" label="DI/物资编码" prop="nameCode" show-overflow-tooltip></el-table-column>
<el-table-column width="120" label="批次号">
<el-table-column width="150" label="批次号" prop="batchNo" v-if="paramValue != 2" show-overflow-tooltip></el-table-column>
<el-table-column width="150" label="生产日期" prop="productionDate" v-if="paramValue != 2" show-overflow-tooltip></el-table-column>
<el-table-column width="150" label="失效日期" prop="expireDate" v-if="paramValue != 2" show-overflow-tooltip></el-table-column>
<el-table-column width="120" label="批次号" v-if="paramValue == 2">
<template slot-scope="scope">
<el-input v-model="scope.row.batchNo"
:disabled="scope.row.id != selectedIndex"
@ -122,7 +125,7 @@
<!--@input="scope.row.batchNo =scope.row.batchNo.replace(/[\W]/g, '')"-->
</template>
</el-table-column>
<el-table-column width="120" label="生产日期">
<el-table-column width="120" label="生产日期" v-if="paramValue == 2">
<template slot-scope="scope">
<el-input v-model="scope.row.productionDate" auto-complete="off"
@ -132,7 +135,7 @@
></el-input>
</template>
</el-table-column>
<el-table-column width="120" label="失效日期">
<el-table-column width="120" label="失效日期" v-if="paramValue == 2">
<template slot-scope="scope">
<el-input v-model="scope.row.expireDate" auto-complete="off"

Loading…
Cancel
Save