From 39e843701bf637cd653bfdeb0d88ef4cacbc8152 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期日, 07 四月 2024 18:00:21 +0800 Subject: [PATCH] 考核规则 --- src/views/system/calculate/order/index.vue | 31 +++++++------------------------ 1 files changed, 7 insertions(+), 24 deletions(-) diff --git a/src/views/system/calculate/order/index.vue b/src/views/system/calculate/order/index.vue index 155ebdc..c944342 100644 --- a/src/views/system/calculate/order/index.vue +++ b/src/views/system/calculate/order/index.vue @@ -22,18 +22,6 @@ </el-option> </el-select> </el-form-item> - <el-form-item label="鑰冩牳鑼冨洿" prop="examineRange"> - <el-select v-model="queryParams.examineRange" clearable @clear="handleQuery" placeholder="鑰冩牳鑼冨洿"> - <el-option - label="甯傚眬鑰冩牳" - value="2"> - </el-option> - <el-option - label="鍒嗗眬鑰冩牳" - value="1"> - </el-option> - </el-select> - </el-form-item> <el-form-item label="鑰冩牳鏃堕棿"> <el-date-picker v-model="daterangeCheckTime" @@ -86,10 +74,10 @@ <el-card class="box-card" v-for="(item) in checkResultList"> <div slot="header" class="clearfix"> - <span>{{ item.checkUnitName }}</span> + <span>{{ checkUnitName }}</span> <el-button style="float: right; padding: 3px 0" type="text" @click="handleDetail(item)">璇︽儏</el-button> </div> - <div class="text item">鑰冩牳<span class="time">{{ item.examineName }}</span></div> + <div class="text item">鑰冩牳<span class="time">{{ examineName }}</span></div> <div class="text item">鑰冩牳棰戠巼<span class="time">{{ "瀛e害鑰冩牳" }}</span></div> <div class="text item">鑰冩牳鍒嗘暟<span class="time">{{ item.checkScore }}</span></div> <div class="text item">鑰冩牳鏃堕棿 @@ -155,21 +143,14 @@ <i class="el-icon-user"></i> 鑰冩牳瀵硅薄 </template> - {{detail.checkUnitName}} + {{checkUnitName}} </el-descriptions-item> <el-descriptions-item> <template slot="label"> <i class="el-icon-s-management"></i> 鑰冩牳鍚嶇О </template> - {{detail.examineName}} - </el-descriptions-item> - <el-descriptions-item> - <template slot="label"> - <i class="el-icon-full-screen"></i> - 鑰冩牳鑼冨洿 - </template> - <el-tag size="small">{{detail.examineRange === 1 ? '鍒嗗眬鑰冩牳' : '甯傚眬鑰冩牳'}}</el-tag> + {{examineName}} </el-descriptions-item> <el-descriptions-item> <template slot="label"> @@ -231,6 +212,8 @@ detail:{ }, + checkUnitName: '鎴愰兘x杩愮淮', + examineName: '鎴愰兘x杩愮淮鑰冩牳', tableData: [{ name: '瑙嗛骞冲潎鍦ㄧ嚎鐜�', content: '97%', @@ -313,7 +296,7 @@ this.queryParams["end"] = this.daterangeCheckTime[1]; } listCheckResult(this.queryParams).then(response => { - this.checkResultList = response.data; + this.checkResultList = response.rows; this.total = response.total; this.loading = false; }); -- Gitblit v1.8.0