From dfc35ece9ae09ad910538f0b181275e0e6c8a00c Mon Sep 17 00:00:00 2001 From: lct123456 <lucht> Date: 星期四, 21 四月 2022 21:59:41 +0800 Subject: [PATCH] 巡检记录和巡检数据 --- src/views/safetyproduction/review.vue | 40 ++++++++++++++++++++++++++++++++++------ 1 files changed, 34 insertions(+), 6 deletions(-) diff --git a/src/views/safetyproduction/review.vue b/src/views/safetyproduction/review.vue index 7d1c1d7..4a471fb 100644 --- a/src/views/safetyproduction/review.vue +++ b/src/views/safetyproduction/review.vue @@ -201,7 +201,7 @@ <el-dialog title="扣分详情" :visible.sync="dialogVisible" :close-on-click-modal="false" width="30%"> <el-form ref="form" :model="form" label-width="54px"> <el-form-item label="说明"> - <el-input disabled="true" v-model="form.name"></el-input> + <el-input :disabled="true" v-model="form.name"></el-input> </el-form-item> <el-form-item label="扣分值"> <el-input v-model="form.point"></el-input> @@ -215,7 +215,7 @@ class="dialog-footer" style="text-align: center; display: block" > - <el-button type="primary" class="btns" @click="dialogVisible = false" + <el-button type="primary" class="btns" @click="addC" >确 定</el-button > <el-button @click="lost()">取 消</el-button> @@ -236,7 +236,9 @@ dialogVisible: false, id: "", form: {}, - list: [], + list: {}, + point:"", + pointDel:"" }; }, created() { @@ -247,12 +249,20 @@ itemInfo(id) { safetySelfInspectionItemInfo({id:id}).then((res) => { this.list = res.data.result; + this.point=res.data.result.point + this.pointDel=res.data.result.point }); }, modItem() { if(this.list.safetyInspectionItemResult!=null){ + console.log(this.list) + for(var i=0;i<this.list.selfDeductionList.length;i++){ + this.pointDel=this.pointDel-this.list.selfDeductionList[i].point + } + safetySelfInspectionModItemInfo(this.list).then((res) => { if (res.data.code == 200) { + if(this.pointDel>=0){ this.$notify({ type: "success", duration: 2000, @@ -265,6 +275,9 @@ id:this.id } }); + }else{ + alert(`扣分不得超过总分${this.point}`) + } } }); }else{ @@ -285,8 +298,21 @@ }, handleClick(data) { this.dialogVisible = true; - this.form = data; - console.log(data); + // this.form = data; + this.form=JSON.parse(JSON.stringify(data)); + }, + addC(){ + if(this.form.point<=this.point){ + for(let i = 0;i<this.list.selfDeductionList.length;i++){ + if (this.form.id==this.list.selfDeductionList[i].id){ + this.list.selfDeductionList[i].point = this.form.point + this.list.selfDeductionList[i].remark = this.form.remark + } + } + }else{ + alert(`扣分不得超过总分${this.point}`) + } + this.dialogVisible = false; }, lost() { this.dialogVisible = false; @@ -318,6 +344,8 @@ width: 100%; background-color: white; border-radius: 5px; + height: 850px; + overflow-y:overlay; } .box-right-content { padding: 15px 0; @@ -326,4 +354,4 @@ background-color: #034ea2; border: 1px solid #034ea2; } -</style> \ No newline at end of file +</style> -- Gitblit v1.9.2