125 lines
3.7 KiB
Vue
125 lines
3.7 KiB
Vue
|
|
<template>
|
|||
|
|
<div class="app-container">
|
|||
|
|
<!-- 对话框(添加 / 修改) -->
|
|||
|
|
<el-dialog :title="dialogTitle" :visible.sync="dialogVisible" width="45%" v-dialogDrag append-to-body>
|
|||
|
|
<el-form ref="formRef" :model="formData" :rules="formRules" v-loading="formLoading" label-width="100px">
|
|||
|
|
<el-form-item label="检测项目名称" prop="projectName">
|
|||
|
|
<el-input v-model="formData.projectName" placeholder="请输入检测项目名称"/>
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="角色" prop="roleId">
|
|||
|
|
<el-select v-model="formData.roleId" placeholder="请选择角色">
|
|||
|
|
<el-option
|
|||
|
|
v-for="role in roleList"
|
|||
|
|
:key="role.id"
|
|||
|
|
:label="role.name"
|
|||
|
|
:value="role.id"
|
|||
|
|
/>
|
|||
|
|
</el-select>
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="备注" prop="remark">
|
|||
|
|
<el-input v-model="formData.remark" placeholder="请输入备注"/>
|
|||
|
|
</el-form-item>
|
|||
|
|
</el-form>
|
|||
|
|
<div slot="footer" class="dialog-footer">
|
|||
|
|
<el-button type="primary" @click="submitForm" :disabled="formLoading">确 定</el-button>
|
|||
|
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
|||
|
|
</div>
|
|||
|
|
</el-dialog>
|
|||
|
|
</div>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script>
|
|||
|
|
import * as DlInspectionProjectApi from '@/api/inspection/project';
|
|||
|
|
import {getRole} from "@/api/inspection/project";
|
|||
|
|
|
|||
|
|
export default {
|
|||
|
|
name: "DlInspectionProjectForm",
|
|||
|
|
components: {},
|
|||
|
|
data() {
|
|||
|
|
return {
|
|||
|
|
// 弹出层标题
|
|||
|
|
dialogTitle: "",
|
|||
|
|
// 是否显示弹出层
|
|||
|
|
dialogVisible: false,
|
|||
|
|
// 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|||
|
|
formLoading: false,
|
|||
|
|
// 表单参数
|
|||
|
|
formData: {
|
|||
|
|
projectName: undefined,
|
|||
|
|
roleId: undefined,
|
|||
|
|
remark: undefined,
|
|||
|
|
},
|
|||
|
|
// 表单校验
|
|||
|
|
formRules: {
|
|||
|
|
projectName: [
|
|||
|
|
{required: true, message: '检测项目名称不能为空', trigger: 'blur'}
|
|||
|
|
],
|
|||
|
|
roleId: [
|
|||
|
|
{required: true, message: '角色不能为空', trigger: 'change'}
|
|||
|
|
]
|
|||
|
|
},
|
|||
|
|
roleList: [],
|
|||
|
|
};
|
|||
|
|
},
|
|||
|
|
methods: {
|
|||
|
|
/** 打开弹窗 */
|
|||
|
|
async open(id) {
|
|||
|
|
this.getRole()
|
|||
|
|
this.dialogVisible = true;
|
|||
|
|
this.reset();
|
|||
|
|
// 修改时,设置数据
|
|||
|
|
if (id) {
|
|||
|
|
this.formLoading = true;
|
|||
|
|
try {
|
|||
|
|
const res = await DlInspectionProjectApi.getDlInspectionProject(id);
|
|||
|
|
this.formData = res.data;
|
|||
|
|
this.title = "修改检测项目";
|
|||
|
|
} finally {
|
|||
|
|
this.formLoading = false;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
this.title = "新增检测项目";
|
|||
|
|
},
|
|||
|
|
/** 提交按钮 */
|
|||
|
|
async submitForm() {
|
|||
|
|
// 校验主表
|
|||
|
|
await this.$refs["formRef"].validate();
|
|||
|
|
this.formLoading = true;
|
|||
|
|
try {
|
|||
|
|
const data = this.formData;
|
|||
|
|
// 修改的提交
|
|||
|
|
if (data.id) {
|
|||
|
|
await DlInspectionProjectApi.updateDlInspectionProject(data);
|
|||
|
|
this.$modal.msgSuccess("修改成功");
|
|||
|
|
this.dialogVisible = false;
|
|||
|
|
this.$emit('success');
|
|||
|
|
return;
|
|||
|
|
}
|
|||
|
|
// 添加的提交
|
|||
|
|
await DlInspectionProjectApi.createDlInspectionProject(data);
|
|||
|
|
this.$modal.msgSuccess("新增成功");
|
|||
|
|
this.dialogVisible = false;
|
|||
|
|
this.$emit('success');
|
|||
|
|
} finally {
|
|||
|
|
this.formLoading = false;
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
/** 表单重置 */
|
|||
|
|
reset() {
|
|||
|
|
this.formData = {
|
|||
|
|
projectName: undefined,
|
|||
|
|
roleId: undefined,
|
|||
|
|
remark: undefined,
|
|||
|
|
};
|
|||
|
|
this.resetForm("formRef");
|
|||
|
|
},
|
|||
|
|
/** 获取角色下拉框数据 */
|
|||
|
|
async getRole() {
|
|||
|
|
const res = await getRole();
|
|||
|
|
console.log("角色的集合", res.data)
|
|||
|
|
this.roleList = res.data
|
|||
|
|
},
|
|||
|
|
}
|
|||
|
|
};
|
|||
|
|
</script>
|