0609danweimaterialcnumber
This commit is contained in:
parent
2e5b24b370
commit
437b924667
|
|
@ -3,7 +3,7 @@
|
|||
<el-form
|
||||
id="customerForm"
|
||||
ref="checkForm"
|
||||
label-width="100px"
|
||||
label-width="150px"
|
||||
:model="checkForm"
|
||||
>
|
||||
<el-row>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<el-form
|
||||
id="customerForm"
|
||||
ref="checkForm"
|
||||
label-width="100px"
|
||||
label-width="150px"
|
||||
:model="checkForm"
|
||||
>
|
||||
<el-row>
|
||||
|
|
|
|||
|
|
@ -349,7 +349,9 @@
|
|||
<el-input v-model="item.batch" placeholder="批次号"></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="5" style="margin-right: 10px">
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="5">
|
||||
<el-form-item
|
||||
class="expiration_date"
|
||||
label="有效期"
|
||||
|
|
@ -365,6 +367,21 @@
|
|||
</el-date-picker>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="18">
|
||||
<el-form-item label="物料编号:">
|
||||
<div v-for="(ob,ind) in item.details" :key="ob.number" style="display: inline-block">
|
||||
<span>{{ob.number}}</span>
|
||||
<el-button
|
||||
v-if="ob.number!==''"
|
||||
@click="deleteItemNumber(index,ind)"
|
||||
style="border: none;background: none;padding: 0;margin-top: 4px;"
|
||||
>
|
||||
<i class="el-icon-remove-outline" style="font-size: 20px"></i>
|
||||
</el-button>
|
||||
</div>
|
||||
<el-input style="width: 300px;" clearable v-model="itemDetails" placeholder="物料编号,回车确定编号" @keyup.enter.native="detailEnter(itemDetails,index)"></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<!-- 删除按钮 -->
|
||||
<el-col :span="1">
|
||||
<el-tooltip
|
||||
|
|
@ -448,6 +465,7 @@ const defaulteinventory = {
|
|||
material: "", // 物料
|
||||
count: "", //数量
|
||||
batch: "", //批次
|
||||
details:[],
|
||||
},
|
||||
],
|
||||
};
|
||||
|
|
@ -469,6 +487,7 @@ export default {
|
|||
fifoList: {
|
||||
count: 0,
|
||||
},
|
||||
itemDetails:'',
|
||||
types_: {
|
||||
1: "生产领料",
|
||||
2: "销售提货",
|
||||
|
|
@ -506,8 +525,14 @@ export default {
|
|||
this.getpuorderList();
|
||||
},
|
||||
methods: {
|
||||
detailEnter(item,index){
|
||||
this.inventory.details[index].details.push({number:item});
|
||||
this.itemDetails = '';
|
||||
},
|
||||
deleteItemNumber(index,ind){
|
||||
this.inventory.details[index].details.splice(ind,1);
|
||||
},
|
||||
checkPermission,
|
||||
|
||||
getList() {
|
||||
this.listLoading = true;
|
||||
|
||||
|
|
@ -582,6 +607,7 @@ export default {
|
|||
material: "", // 物料
|
||||
count: "", //数量
|
||||
batch: "", // 批次
|
||||
details:[]
|
||||
});
|
||||
} else {
|
||||
this.$message("最多可添加十项条件");
|
||||
|
|
@ -612,6 +638,7 @@ export default {
|
|||
material: "", // 物料
|
||||
count: "", //数量
|
||||
batch: "", //批次
|
||||
details:[],
|
||||
},
|
||||
];
|
||||
this.inventory = Object.assign({}, defaulteinventory);
|
||||
|
|
|
|||
|
|
@ -261,8 +261,7 @@
|
|||
}, {
|
||||
value: '套',
|
||||
label: '套'
|
||||
},
|
||||
{
|
||||
}, {
|
||||
value: '个',
|
||||
label: '个'
|
||||
}, {
|
||||
|
|
@ -271,6 +270,24 @@
|
|||
}, {
|
||||
value: '瓶',
|
||||
label: '瓶'
|
||||
}, {
|
||||
value: 'g',
|
||||
label: 'g'
|
||||
}, {
|
||||
value: 'kg',
|
||||
label: 'kg'
|
||||
}, {
|
||||
value: '卷',
|
||||
label: '卷'
|
||||
}, {
|
||||
value: '张',
|
||||
label: '张'
|
||||
}, {
|
||||
value: '支',
|
||||
label: '支'
|
||||
}, {
|
||||
value: '袋',
|
||||
label: '袋'
|
||||
},
|
||||
],
|
||||
listQuery: {
|
||||
|
|
|
|||
|
|
@ -216,8 +216,7 @@
|
|||
}, {
|
||||
value: '套',
|
||||
label: '套'
|
||||
},
|
||||
{
|
||||
}, {
|
||||
value: '个',
|
||||
label: '个'
|
||||
}, {
|
||||
|
|
@ -226,6 +225,24 @@
|
|||
}, {
|
||||
value: '瓶',
|
||||
label: '瓶'
|
||||
}, {
|
||||
value: 'g',
|
||||
label: 'g'
|
||||
}, {
|
||||
value: 'kg',
|
||||
label: 'kg'
|
||||
}, {
|
||||
value: '卷',
|
||||
label: '卷'
|
||||
}, {
|
||||
value: '张',
|
||||
label: '张'
|
||||
}, {
|
||||
value: '支',
|
||||
label: '支'
|
||||
}, {
|
||||
value: '袋',
|
||||
label: '袋'
|
||||
},
|
||||
],
|
||||
listQuery: {
|
||||
|
|
|
|||
|
|
@ -245,7 +245,8 @@
|
|||
:model="tableForm"
|
||||
:close-on-click-modal="false"
|
||||
:visible.sync="dialogVisibleForm"
|
||||
:title="tableForm.name">
|
||||
:title="tableForm.name"
|
||||
>
|
||||
<el-form
|
||||
label-width="200px"
|
||||
label-position="right"
|
||||
|
|
@ -312,6 +313,13 @@
|
|||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row style="box-sizing: border-box;padding-right: 50px">
|
||||
<el-col v-for="(item,$index) in dialogFieldList" :key="$index" :span="12">
|
||||
<el-form-item v-if="item.field_type==='draw'" :label="item.field_name">
|
||||
<img style="width: 500px;" :src="item.draw_template" alt="tupian">
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
</el-dialog>
|
||||
</el-card>
|
||||
|
|
@ -428,6 +436,20 @@
|
|||
</el-col>
|
||||
</el-row>
|
||||
</el-form-item>
|
||||
<el-form-item label="模板图片" v-if="field.field_type === 'draw'">
|
||||
<el-upload
|
||||
class="avatar-uploader"
|
||||
:action="upUrl"
|
||||
accept="image/jpeg, image/gif, image/png, image/bmp"
|
||||
:show-file-list="false"
|
||||
:on-success="handleAvatarSuccess"
|
||||
:before-upload="beforeAvatarUpload"
|
||||
:headers="upHeaders"
|
||||
>
|
||||
<img v-if="field.draw_template" :src="field.draw_template" class="avatar"/>
|
||||
<i v-else class="el-icon-plus avatar-uploader-icon"/>
|
||||
</el-upload>
|
||||
</el-form-item>
|
||||
<el-form-item label="排序" prop="sort">
|
||||
<el-input-number v-model="field.sort" :min="1" placeholder="排序"></el-input-number>
|
||||
</el-form-item>
|
||||
|
|
@ -496,6 +518,7 @@
|
|||
field_name: '',
|
||||
sort: '',
|
||||
field_choice: [""],
|
||||
draw_template:''
|
||||
},
|
||||
field_choice: [''],
|
||||
options: [],
|
||||
|
|
@ -585,6 +608,10 @@
|
|||
{
|
||||
value: 'selects',
|
||||
label: '多选'
|
||||
},
|
||||
{
|
||||
value: 'draw',
|
||||
label: '绘图模板'
|
||||
}
|
||||
],
|
||||
formList:[],
|
||||
|
|
@ -796,7 +823,18 @@
|
|||
.catch(() => {
|
||||
});
|
||||
}
|
||||
|
||||
},
|
||||
handleAvatarSuccess(res, file) {
|
||||
debugger;
|
||||
console.log(res)
|
||||
this.field.draw_template = res.data.path;
|
||||
},
|
||||
beforeAvatarUpload(file) {
|
||||
const isLt2M = file.size / 1024 / 1024 < 2;
|
||||
if (!isLt2M) {
|
||||
this.$message.error("上传头像图片大小不能超过 2MB!");
|
||||
}
|
||||
return isLt2M;
|
||||
},
|
||||
//新增字段
|
||||
handlefieldCreate() {
|
||||
|
|
|
|||
|
|
@ -190,8 +190,7 @@
|
|||
}, {
|
||||
value: '套',
|
||||
label: '套'
|
||||
},
|
||||
{
|
||||
}, {
|
||||
value: '个',
|
||||
label: '个'
|
||||
}, {
|
||||
|
|
@ -200,6 +199,24 @@
|
|||
}, {
|
||||
value: '瓶',
|
||||
label: '瓶'
|
||||
}, {
|
||||
value: 'g',
|
||||
label: 'g'
|
||||
}, {
|
||||
value: 'kg',
|
||||
label: 'kg'
|
||||
}, {
|
||||
value: '卷',
|
||||
label: '卷'
|
||||
}, {
|
||||
value: '张',
|
||||
label: '张'
|
||||
}, {
|
||||
value: '支',
|
||||
label: '支'
|
||||
}, {
|
||||
value: '袋',
|
||||
label: '袋'
|
||||
},
|
||||
],
|
||||
listQuery: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue