From 06bc1fdbe81da9a723ad9ee1d3d6dd74025b9e18 Mon Sep 17 00:00:00 2001 From: Your Name <123456> Date: 星期五, 08 四月 2022 10:57:36 +0800 Subject: [PATCH] 'lct' --- src/views/safetyproduction/feature.vue | 63 +++++++++++++++++++++++-------- 1 files changed, 46 insertions(+), 17 deletions(-) diff --git a/src/views/safetyproduction/feature.vue b/src/views/safetyproduction/feature.vue index 52cc7d6..eee259b 100644 --- a/src/views/safetyproduction/feature.vue +++ b/src/views/safetyproduction/feature.vue @@ -32,6 +32,8 @@ </el-table-column> <el-table-column label="父要素" prop="parentName" align="center"> </el-table-column> + <el-table-column label="得分" prop="point" align="center"> + </el-table-column> <el-table-column prop="remark" label="备注" align="center"> </el-table-column> <el-table-column prop="createTime" label="创建时间" align="center"> @@ -72,6 +74,7 @@ <el-dialog :title="title" :visible.sync="dialogVisible" + :close-on-click-modal="false" width="40%" > <el-form ref="form" :rules="rules" :model="form" label-width="80px"> @@ -107,6 +110,7 @@ v-model="form.parentId" placeholder="请选择" style="width: 100%" + :disabled="title=='编辑'?true:false" > <el-option v-for="item in parent" @@ -117,6 +121,11 @@ </el-option> </el-select> </el-form-item> + </el-col> + <el-col :span="11" :offset="2"> + <el-form-item label="得分" prop="point"> + <el-input v-model.number="form.point"></el-input> + </el-form-item> </el-col> </el-row> <el-form-item label="备注"> @@ -132,7 +141,7 @@ <el-button type="primary" class="btns" @click="AddelementManagement()" >确 定</el-button > - <el-button @click="dialogVisible = false">取 消</el-button> + <el-button @click="cancel()">取 消</el-button> </span> </el-dialog> </div> @@ -154,6 +163,7 @@ name: "", type: "", parentId: "", + point:"", remark: "", }, pageSize: 10, @@ -188,6 +198,9 @@ parentId: [ { required: true, message: "父要素不能为空", trigger: "change" }, ], + point: [ + { required: true, message: "得分不能为空", trigger: "change" }, + ], }, }; }, @@ -197,7 +210,6 @@ methods: { async elementManagementL() { var res = await elementManagementList(this.listQuery); - console.log(res); if (res.data.code == 200) { this.list = res.data.result.records; this.recordTotal = res.data.result.total @@ -211,7 +223,6 @@ this.$refs["form"].clearValidate(); }); getParentElement().then(res=>{ - // console.log('父类:',res) this.parent=res.data.result }) if (type == "新增") { @@ -224,7 +235,7 @@ }; } else { this.title = "编辑"; - this.form = value; + this.form=JSON.parse(JSON.stringify(value)); } }, AddelementManagement() { @@ -281,7 +292,7 @@ title: "成功", }); } else { - his.$message({ + this.$message({ type: "warning", message: res.data.message, }); @@ -292,18 +303,36 @@ }); }, deleteById(val) { - elementManagementDel({id:val}).then((res) => { - if (res.data.code == 200) { - this.elementManagementL(); - this.$notify({ - title: "成功", - message: "删除成功", - type: "success", - duration: 2000, - }); - } - }); + this.$confirm('确认删除吗','提示', { + confirmButtonText: '确认', + cancelButtonText: '取消', + type: 'warning' + }) + .then(()=>{ + elementManagementDel({id:val}).then((res) => { + if (res.data.code == 200) { + this.elementManagementL(); + this.$notify({ + title: "成功", + message: "删除成功", + type: "success", + duration: 2000, + }); + }else { + this.$message({ + type: "warning", + message: res.data.message, + }); + } + }); + }) + .catch(error =>{ + }); }, + cancel(){ + this.elementManagementL(); + this.dialogVisible = false; + }, find(){ this.elementManagementL(); }, @@ -323,4 +352,4 @@ background-color: #034ea2; border: 1px solid #034ea2; } -</style> \ No newline at end of file +</style> -- Gitblit v1.9.2