| | |
| | | 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> |
| | |
| | | handleDetail(row) { |
| | | this.detail = row; |
| | | this.detail.carOnlineRate = '97%'; |
| | | this.detailTitle = row.checkUnitName + '考核结果'; |
| | | this.detailTitle = '考核结果'; |
| | | this.detailOpen = true; |
| | | |
| | | }, |