fix:文案改动

This commit is contained in:
shijing 2025-03-11 17:15:11 +08:00
parent fdffd8a4ef
commit ffeac53e07
2 changed files with 14 additions and 2 deletions

View File

@ -311,6 +311,18 @@ export default {
},
methods: {
//
gettestitem(){
let that = this;
that.$API.qm.testitem.list.req({ process: that.process,type:20 }).then((res) => {
res.results.forEach((item) => {
let obj = {};
Object.assign(obj, item);
obj.value = '';
that.testitems.push(obj);
})
});
},
disabledDateFn(time) {
return time.getTime() > new Date().getTime();
},

View File

@ -36,7 +36,7 @@
<el-form-item label="批次号" prop="wm_in">
<el-select
v-model="form.wm_in"
placeholder="交接物料"
placeholder="物料"
clearable
style="width: 100%"
>
@ -65,7 +65,7 @@
controls-position="right"
/>
</el-form-item>
<el-form-item label="所在层数">
<el-form-item label="备注">
<el-input v-model="form.note"/>
</el-form-item>
</el-form>