From 1cee7738e03abb770195fee19d657f0ce8056786 Mon Sep 17 00:00:00 2001 From: luobisheng <727299681@qq.com> Date: 星期三, 30 十一月 2022 14:10:26 +0800 Subject: [PATCH] 案卷查询 --- src/views/operate/viewEvent/index.vue | 49 +++++++++---------------------------------------- 1 files changed, 9 insertions(+), 40 deletions(-) diff --git a/src/views/operate/viewEvent/index.vue b/src/views/operate/viewEvent/index.vue index 39171b6..0e7a57c 100644 --- a/src/views/operate/viewEvent/index.vue +++ b/src/views/operate/viewEvent/index.vue @@ -61,12 +61,12 @@ </template> </el-table-column> <el-table-column prop="category" label="闂绫诲埆" min-width="8"> - <template slot-scope="scope"> - <span>{{ scope.row.category == 1 ? '杩濊' : '杩濆缓' }}</span> + <template v-if="scope.row.category" slot-scope="scope"> + <span>{{ getCategoryLabel(scope.row.category) }}</span> </template> </el-table-column> <el-table-column prop="eventSource" label="闂鏉ユ簮" min-width="8"> - <template slot-scope="scope"> + <template v-if="scope.row.eventSource" slot-scope="scope"> <span>{{ scope.row.eventSource === 2 ? '浜哄伐涓婃姤' : '瑙嗛涓婁紶' }}</span> </template> </el-table-column> @@ -106,13 +106,6 @@ <div class="funsItem funs-sp"> <el-checkbox v-model="unsame" @change="disSame(tableData)">鍙嶉��</el-checkbox> </div> - <div class="funsItem"> - <el-select v-model="myIdx" placeholder="鎵归噺鎿嶄綔" @change="selectChange" disabled> - <el-option v-for="item in options" :key="item.value" :label="item.label" - :value="item.value" :disabled="item.disabled"> - </el-option> - </el-select> - </div> </div> <div class="pagination"> <el-pagination background :current-page="currentPage" layout="prev, pager, next" @@ -133,6 +126,7 @@ import MyIllDetail from '@/components/illdetail' import helper from '@/utils/mydate' import casequery from "@/api/operate/basecase"; +import { CATEGOTY, RESOURCE_TYPE } from "@/utils/helper"; export default { components: { @@ -153,25 +147,6 @@ unsame: false, myIdx: 0, preMyIdx: 0, - options: [ - { - value: 0, - label: '鎵归噺鎿嶄綔', - disabled: true, - }, - { - value: 1, - label: '鎵归噺鍚敤', - }, - { - value: 2, - label: '鎵归噺绂佺敤', - }, - { - value: 3, - label: '鎵归噺鍒犻櫎', - } - ], tempList: [], typeList: [ { @@ -320,19 +295,13 @@ this.getList(); }, - // 闂绫诲瀷 - changeMyProblem(val) { - this.getList(); - }, - - // 瀹℃牳鐘舵�� - changeInStatus(val) { - this.getList(); - }, - filterTime(time) { return helper(time); - } + }, + + getCategoryLabel(data) { + return CATEGOTY.find(item => item.value === data).label; + } } } </script> -- Gitblit v1.8.0