248 lines
6.2 KiB
Vue
248 lines
6.2 KiB
Vue
<!--
|
|
* @Author: zhp
|
|
* @Date: 2023-02-14 15:02:26
|
|
* @LastEditTime: 2023-04-06 15:12:57
|
|
* @LastEditors: zhp
|
|
* @Description:
|
|
-->
|
|
<template>
|
|
<el-form :model="dataForm" ref="dataForm" @keyup.enter.native="dataFormSubmitHandle()" label-width="150px">
|
|
<el-form-item prop="inspectionTypeId" :label="$t('disqualification.inspectionTypeId')">
|
|
<el-select v-model="dataForm.inspectionTypeId" :placeholder="$t('disqualification.inspectionTypeId')">
|
|
<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-item prop="teamId" :label="$t('disqualification.teamName')">
|
|
<el-select v-model="dataForm.teamId" :placeholder="$t('disqualification.teamName')">
|
|
<el-option v-for="item in teamList" :key="item.id" :label="item.teamName" :value="item.id">
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item prop="productTypeId" :label="$t('disqualification.productTypeName')">
|
|
<el-select v-model="dataForm.productTypeId" :placeholder="$t('disqualification.productTypeName')">
|
|
<el-option v-for="item in typeList" :key="item.id" :label="item.productTypeName" :value="item.id">
|
|
</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: "/nonconform/qmsApprovalDispositionTeamConfiguration",
|
|
infoURL: "/nonconform/qmsApprovalDispositionTeamConfiguration/{ id }",
|
|
getTypeListURL: '/basic/qmsProductType/page',
|
|
getTeamListURL: '/basic/qmsTeam/page'
|
|
},
|
|
typeList: [],
|
|
teamList:[],
|
|
listQuery: {
|
|
limit: 999,
|
|
page: 1
|
|
},
|
|
options: [{
|
|
value: 0,
|
|
label: '监控'
|
|
},
|
|
{
|
|
value: 1,
|
|
label: '电芯来料检验'
|
|
},
|
|
{
|
|
value: 2,
|
|
label: 'IQC抽检'
|
|
},
|
|
{
|
|
value: 3,
|
|
label: 'IQC抽检2'
|
|
},
|
|
{
|
|
value: 4,
|
|
label: '原料抽检'
|
|
},
|
|
{
|
|
value: 5,
|
|
label: '进货外观检验'
|
|
},
|
|
{
|
|
value: 6,
|
|
label: '库内原料检验'
|
|
},
|
|
{
|
|
value: 7,
|
|
label: '来料检验'
|
|
},
|
|
{
|
|
value: 8,
|
|
label: '胶片'
|
|
},
|
|
{
|
|
value: 9,
|
|
label: '抽检'
|
|
},
|
|
{
|
|
value: 10,
|
|
label: '巡检'
|
|
}, {
|
|
value: 11,
|
|
label: '首检'
|
|
},
|
|
{
|
|
value: 12,
|
|
label: '末检'
|
|
},
|
|
{
|
|
value: 13,
|
|
label: '实时监测'
|
|
},
|
|
{
|
|
value: 14,
|
|
label: 'FQC抽检'
|
|
},
|
|
{
|
|
value: 15,
|
|
label: 'OQC抽检'
|
|
},
|
|
],
|
|
visible: false,
|
|
dataForm: {
|
|
id: null,
|
|
productTypeId: null,
|
|
teamId:null,
|
|
inspectionTypeId:null
|
|
},
|
|
};
|
|
},
|
|
computed: {
|
|
dataRule() {
|
|
return {
|
|
// dictLabel: [
|
|
// {
|
|
// required: true,
|
|
// message: this.$t("validate.required"),
|
|
// trigger: "blur",
|
|
// },
|
|
// ],
|
|
// dictValue: [
|
|
// {
|
|
// required: true,
|
|
// message: this.$t("validate.required"),
|
|
// trigger: "blur",
|
|
// },
|
|
// ],
|
|
// sort: [
|
|
// {
|
|
// required: true,
|
|
// message: this.$t("validate.required"),
|
|
// trigger: "blur",
|
|
// },
|
|
// ],
|
|
};
|
|
},
|
|
},
|
|
mounted () {
|
|
this.getData();
|
|
},
|
|
methods: {
|
|
init(id, ) {
|
|
this.dataForm.id = id || ""
|
|
// console.log(11111)
|
|
// this.dataForm.dictTypeId = dictTypeId || "";
|
|
this.visible = true
|
|
this.$nextTick(() => {
|
|
this.$refs["dataForm"].resetFields();
|
|
if (this.dataForm.id) {
|
|
this.getInfo()
|
|
} else {
|
|
// this.getCode()
|
|
}
|
|
});
|
|
},
|
|
getData() {
|
|
this.$http
|
|
.get(this.urlOptions.getTypeListURL, this.listQuery)
|
|
.then(({ data: res }) => {
|
|
if (res.code === 0) {
|
|
console.log(res.data);
|
|
this.typeList = res.data.list
|
|
}
|
|
})
|
|
.catch(() => {
|
|
});
|
|
this.$http
|
|
.get(this.urlOptions.getTeamListURL, this.listQuery)
|
|
.then(({ data: res }) => {
|
|
if (res.code === 0) {
|
|
console.log(res.data);
|
|
this.teamList = res.data.list
|
|
}
|
|
})
|
|
.catch(() => {
|
|
});
|
|
},
|
|
// getCode() {
|
|
// this.$http.post(this.urlOptions.getCodeURL)
|
|
// .then(({ data: res }) => {
|
|
// if (res.code === 0) {
|
|
// console.log(res);
|
|
// this.dataForm.customSamplingCode = res.data
|
|
// }
|
|
// })
|
|
// .catch(() => {
|
|
// });
|
|
// },
|
|
// 获取信息
|
|
getInfo() {
|
|
this.$http
|
|
.get(`/nonconform/qmsApprovalDispositionTeamConfiguration/${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>
|