From 26f2cbdbde628ac6bdc9748ac80ad337fcdde59e Mon Sep 17 00:00:00 2001 From: Tcsm <1377977403@qq.com> Date: 星期二, 13 六月 2023 15:35:01 +0800 Subject: [PATCH] 1.各模块点击电子文件可进入详情页面 2.家根网和家谱的详情页接上数据 --- ruoyi-ui/src/views/honor/index.vue | 43 +++++++++++++++++++++++++++++++------------ 1 files changed, 31 insertions(+), 12 deletions(-) diff --git a/ruoyi-ui/src/views/honor/index.vue b/ruoyi-ui/src/views/honor/index.vue index 732a9c1..8c175f8 100644 --- a/ruoyi-ui/src/views/honor/index.vue +++ b/ruoyi-ui/src/views/honor/index.vue @@ -207,6 +207,7 @@ </el-table-column> <el-table-column label="鐢靛瓙鏂囦欢" prop="url" width="160" align="center"> <template slot-scope="scope" > + <div @click="handleCheck(scope.row)"> <img class="el-upload-list__item-thumbnail" src="../../assets/images/deviceLis.png" @@ -222,7 +223,7 @@ style="width: 35px; height: 35px;" fit="cover" v-if="scope.row.url ===',' " - > + ></div> </template> </el-table-column> <el-table-column label="澶囨敞" prop="remark" sortable width="120" align="center"> @@ -270,9 +271,12 @@ <el-form ref="elForm" :model="formDat" :rules="rules" size="medium" label-width="100px"> <el-form-item label="鏃堕棿" prop="createTime"> - <el-input v-model="formDat.createTime" placeholder="璇疯緭鍏ュ垱寤烘椂闂�" clearable :style="{width: '100%'}" > + <el-input v-model="formDat.createTime" type='date' placeholder='閫夋嫨鏃ユ湡' clearable :style="{width: '100%'}" > </el-input> </el-form-item> +<!-- <el-form-item label="鑾峰緱鏃堕棿" prop="happenTime">--> +<!-- <el-date-picker v-model='formDat.happenTime' type='date' placeholder='閫夋嫨鏃ユ湡'></el-date-picker>--> +<!-- </el-form-item>--> <el-form-item label="绫诲埆" prop="type"> <!-- <el-input v-model="formDat.type" placeholder="璇疯緭鍏ョ被鍒�" clearable :style="{width: '100%'}" >--> <!-- </el-input>--> @@ -293,11 +297,12 @@ </el-input> </el-form-item> <el-form-item label="鏈夋晥鏃堕棿" prop="validityDate"> - <el-input v-model="formDat.validityDate" placeholder="璇疯緭鍏ユ湁鏁堟椂闂�" clearable :style="{width: '100%'}" > + <el-input v-model="formDat.validityDate" type='date' placeholder='閫夋嫨鏃ユ湡' clearable :style="{width: '100%'}" > </el-input> </el-form-item> + <el-form-item label="鑾峰緱鏃堕棿" prop="getDate"> - <el-input v-model="formDat.getDate" placeholder="璇疯緭鍏ヨ幏寰楁椂闂�" clearable :style="{width: '100%'}" > + <el-input v-model="formDat.getDate" type='date' placeholder='閫夋嫨鏃ユ湡' clearable :style="{width: '100%'}" > </el-input> </el-form-item> <el-form-item label="瀛樻斁浣嶇疆" prop="location"> @@ -549,7 +554,9 @@ /** 鏌ヨ璁板綍鍒楄〃 */ getList() { this.loading = true; - // console.log(this.queryParams) + console.log(this.queryParams) + this.queryParams.happenStartTime = this.dateRange.length > 0 && this.dateRange[0] + this.queryParams.happenEndTime = this.dateRange.length > 0 && this.dateRange[1] // listProperty(this.addDateRange(this.queryParams, this.dateRange)).then(response => { listHonor(this.queryParams).then(response => { // alert(123) @@ -574,12 +581,24 @@ }, //绫诲埆閫夋嫨 getSrc(type) { - if (type === '鍑虹敓璇�'){ + if (type === 1){ return '鍑虹敓璇�' - }else if(type === '鐗欑'){ - return '鐗欑' - }else if(type === '鍐呯'){ - return '鍐呯' + }else if(type === 2){ + return '瀛︾敓璇�' + }else if(type === 3){ + return '姣曚笟璇�' + }else if(type === 4){ + return '缁撳璇�' + }else if(type === 5){ + return '鎴峰彛绨�' + }else if(type === 6){ + return '鐙敓瀛愬コ璇�' + }else if(type === 7){ + return '楂樼骇鑱岀О' + }else if(type === 8){ + return '鎶ょ収' + }else if(type === 9){ + return '閫氳璇�' }else { return '鍏跺畠' } @@ -661,7 +680,7 @@ /** 鏌ョ湅璇︾粏淇℃伅 */ handleCheck(row){ const id = row.id; - this.$router.push("/self/honor/honorInfo/" + id); + this.$router.push("/self/Honor/honorInfo/" + id); }, /** 淇敼鎸夐挳鎿嶄綔 */ handleUpdate(row) { @@ -669,7 +688,7 @@ let jd = true this.$router.push({ - path:"/self/honor/honorInfo/" + id, + path:"/self/Honor/honorInfo/" + id, query:{ detail:jd } -- Gitblit v1.9.1