| | |
| | | icon="el-icon-delete" |
| | | size="mini" |
| | | :disabled="multiple" |
| | | v-hasPermi="['system:result:remove']" |
| | | @click="handleDelete" |
| | | >删除</el-button> |
| | | </el-col> |
| | |
| | | plain |
| | | icon="el-icon-download" |
| | | size="mini" |
| | | v-hasPermi="['system:result:export']" |
| | | @click="handleExport" |
| | | >导出</el-button> |
| | | </el-col> |
| | |
| | | <el-card class="box-card" v-for="(item) in checkResultList"> |
| | | <div slot="header" class="clearfix"> |
| | | <span>{{ checkUnitName }}</span> |
| | | <el-button style="float: right; padding: 3px 0" type="text" @click="handleDetail(item)">详情</el-button> |
| | | <el-button style="float: right; padding: 3px 6px" type="text" @click="handleDetail(item)">详情</el-button> |
| | | <el-button style="float: right; padding: 3px 0" type="text" @click="handleDetail(item)">打分</el-button> |
| | | </div> |
| | | <div class="text item">考核<span class="time">{{ examineName }}</span></div> |
| | | <div class="text item">考核频率<span class="time">{{ "季度考核" }}</span></div> |
| | | <div class="text item">考核分数<span class="time">{{ item.checkScore }}</span></div> |
| | | <div class="text item">考核时间 |
| | | <span class="time">{{ item.checkTime }}</span> |
| | | <el-button size="small" round style="float: right;" @click="handlePublish(item)" v-show="item.publish != 1" v-hasPermi="['result:contract:publish']">确认发布</el-button> |
| | | <el-button size="small" round style="float: right;" @click="handlePublish(item)" v-show="item.publish == 1" v-hasPermi="['result:contract:publish']">已发布</el-button> |
| | | </div> |
| | | </el-card> |
| | | |
| | |
| | | handleDetail(row) { |
| | | this.detail = row; |
| | | this.detail.carOnlineRate = '97%'; |
| | | this.detailTitle = row.checkUnitName + '考核结果'; |
| | | this.detailTitle = '考核结果'; |
| | | this.detailOpen = true; |
| | | |
| | | }, |
| | |
| | | this.download('system/checkResult/export', { |
| | | ...this.queryParams |
| | | }, `checkResult_${new Date().getTime()}.xlsx`) |
| | | } |
| | | }, |
| | | |
| | | } |
| | | }; |
| | | </script> |