137 lines
3.5 KiB
Vue
137 lines
3.5 KiB
Vue
<!--
|
|
* @Author: zhp
|
|
* @Date: 2023-02-14 15:02:26
|
|
* @LastEditTime: 2023-07-12 16:20:26
|
|
* @LastEditors: zhp
|
|
* @Description:
|
|
-->
|
|
<template>
|
|
<el-form :model="dataForm" ref="dataForm" :rules="dataRule" @keyup.enter.native="dataFormSubmitHandle()" label-width="120px">
|
|
<el-form-item prop="name" :label="$t('basic.name')">
|
|
<el-input v-model="dataForm.name" :placeholder="$t('basic.name')"></el-input>
|
|
</el-form-item>
|
|
<!-- <el-form-item prop="productTypeStatus" :label="$t('basic.status')">
|
|
<el-select v-model="dataForm.productTypeStatus" :placeholder="$t('basic.status')">
|
|
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item> -->
|
|
</el-form>
|
|
</template>
|
|
|
|
<script>
|
|
import debounce from "lodash/debounce";
|
|
import basicAdd from "@/mixins/basic-add";
|
|
export default {
|
|
mixins: [basicAdd],
|
|
data() {
|
|
return {
|
|
urlOptions: {
|
|
submitURL: "/supplier/qmsSupplierRequirementListGroup",
|
|
infoURL: "/supplier/qmsSupplierRequirementListGroup/{id}"
|
|
// getTypeListURL: '/basic/qmsProductType/page'
|
|
},
|
|
options: [{
|
|
value: 0,
|
|
label: '不可用'
|
|
},
|
|
{
|
|
value: 1,
|
|
label: '可用'
|
|
}],
|
|
typeList:[],
|
|
visible: false,
|
|
listQuery: {
|
|
limit: 999,
|
|
page:1
|
|
},
|
|
dataForm: {
|
|
id: "",
|
|
code:null,
|
|
name: null,
|
|
supplierTypeStatus:null,
|
|
},
|
|
};
|
|
},
|
|
computed: {
|
|
dataRule() {
|
|
return {
|
|
code: [
|
|
{
|
|
required: true,
|
|
message: this.$t("validate.required"),
|
|
trigger: "blur",
|
|
},
|
|
],
|
|
name: [
|
|
{
|
|
required: true,
|
|
message: this.$t("validate.required"),
|
|
trigger: "blur",
|
|
},
|
|
]
|
|
};
|
|
},
|
|
},
|
|
methods: {
|
|
init(id) {
|
|
this.dataForm.id = id || ""
|
|
// this.dataForm.dictTypeId = dictTypeId || "";
|
|
this.visible = true;
|
|
this.$nextTick(() => {
|
|
this.$refs["dataForm"].resetFields()
|
|
if (this.dataForm.id) {
|
|
this.getInfo();
|
|
} else {
|
|
// this.getCode()
|
|
}
|
|
});
|
|
},
|
|
// 获取信息
|
|
getInfo() {
|
|
this.$http
|
|
.get(`/supplier/qmsProjectType/${this.dataForm.id}`)
|
|
.then(({ data: res }) => {
|
|
if (res.code !== 0) {
|
|
return this.$message.error(res.msg);
|
|
}
|
|
this.dataForm = {
|
|
...this.dataForm,
|
|
...res.data,
|
|
};
|
|
})
|
|
.catch(() => {});
|
|
},
|
|
// 表单提交
|
|
dataFormSubmitHandle: debounce(
|
|
function () {
|
|
this.$refs["dataForm"].validate((valid) => {
|
|
if (!valid) {
|
|
return false;
|
|
}
|
|
this.$http[!this.dataForm.id ? "post" : "put"](this.urlOptions.submitURL, this.dataForm)
|
|
.then(({ data: res }) => {
|
|
if (res.code !== 0) {
|
|
return this.$message.error(res.msg);
|
|
}
|
|
this.$message({
|
|
message: this.$t("prompt.success"),
|
|
type: "success",
|
|
duration: 500,
|
|
onClose: () => {
|
|
console.log(1111);
|
|
this.visible = false;
|
|
this.$emit("successSubmit");
|
|
},
|
|
});
|
|
})
|
|
.catch(() => {});
|
|
});
|
|
},
|
|
1000,
|
|
{ leading: true, trailing: false }
|
|
),
|
|
},
|
|
};
|
|
</script>
|