123 lines
2.5 KiB
Vue
123 lines
2.5 KiB
Vue
<template>
|
|
<el-dialog
|
|
:visible.sync="visible"
|
|
:width="'35%'"
|
|
:append-to-body="true"
|
|
:close-on-click-modal="false"
|
|
class="dialog">
|
|
<template #title>
|
|
<slot name="title">
|
|
<div class="titleStyle">
|
|
新增产品
|
|
</div>
|
|
</slot>
|
|
</template>
|
|
|
|
<el-form
|
|
ref="dataForm"
|
|
:model="dataForm"
|
|
:rules="dataRule"
|
|
label-width="100px"
|
|
@keyup.enter.native="dataFormSubmit()">
|
|
<el-form-item label="产品" prop="productInfo">
|
|
<el-select
|
|
v-model="dataForm.productInfo"
|
|
style="width: 100%"
|
|
filterable
|
|
value-key="id"
|
|
placeholder="请选择产品">
|
|
<el-option
|
|
v-for="item in productArr"
|
|
:key="item.id"
|
|
:label="item.name"
|
|
:value="item" />
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<el-row style="text-align: right">
|
|
<el-button @click="visible = false">取消</el-button>
|
|
<el-button type="primary" @click="dataFormSubmit()">确定</el-button>
|
|
</el-row>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import {
|
|
getListByType
|
|
} from "@/api/warehouse/warehouseGoods";
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
visible: false,
|
|
dataForm: {
|
|
index: -1,
|
|
productInfo: '',
|
|
},
|
|
productArr: [],
|
|
dataRule: {
|
|
productId: [{ required: true, message: '产品不能为空', trigger: 'blur' }],
|
|
},
|
|
};
|
|
},
|
|
methods: {
|
|
init(index) {
|
|
if (index >= 0) {
|
|
this.dataForm.index = index;
|
|
}
|
|
this.visible = true;
|
|
this.$nextTick(() => {
|
|
this.$refs['dataForm'].resetFields();
|
|
getListByType(5).then((response) => {
|
|
this.productArr = response.data;
|
|
});
|
|
});
|
|
},
|
|
// 表单提交
|
|
dataFormSubmit() {
|
|
this.$refs['dataForm'].validate((valid) => {
|
|
if (valid) {
|
|
this.dataForm.productInfo.goodsId = this.dataForm.productInfo.id
|
|
this.dataForm.productInfo.remark = ''
|
|
// 修改的提交
|
|
if (this.dataForm.index >= 0) {
|
|
this.visible = false;
|
|
this.$emit('refreshDataList', this.dataForm);
|
|
return;
|
|
}
|
|
// 添加的提交
|
|
this.visible = false;
|
|
this.$emit('refreshDataList', this.dataForm);
|
|
}
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.dialog >>> .el-dialog__body {
|
|
padding: 30px 24px;
|
|
}
|
|
.dialog >>> .el-dialog__header {
|
|
font-size: 16px;
|
|
color: rgba(0, 0, 0, 0.85);
|
|
font-weight: 500;
|
|
padding: 13px 24px;
|
|
border-bottom: 1px solid #e9e9e9;
|
|
}
|
|
.dialog >>> .el-dialog__header .titleStyle::before {
|
|
content: '';
|
|
display: inline-block;
|
|
width: 4px;
|
|
height: 16px;
|
|
background-color: #0b58ff;
|
|
border-radius: 1px;
|
|
margin-right: 8px;
|
|
position: relative;
|
|
top: 2px;
|
|
}
|
|
</style>
|