From 856e7ac04edd98e79cc969af262db0b508b76139 Mon Sep 17 00:00:00 2001 From: zhouwenxuan <1175765986@qq.com> Date: 星期五, 04 八月 2023 15:50:48 +0800 Subject: [PATCH] 文件预览 --- pages/tabBar/current/current.vue | 81 +++++++++++++++++++++++++--------------- 1 files changed, 50 insertions(+), 31 deletions(-) diff --git a/pages/tabBar/current/current.vue b/pages/tabBar/current/current.vue index 89a9100..9cde2da 100644 --- a/pages/tabBar/current/current.vue +++ b/pages/tabBar/current/current.vue @@ -6,7 +6,7 @@ <view class="statusBar" :style="{ paddingTop: statusBarHeight + 'px' }"></view> <!-- 真正的导航栏内容 --> <view class="navBar"> - <u-icon style=" margin-left: -25px;" name="arrow-left" color="black" size="17" @click="goBack" /> + <u-icon style=" margin-left: -25px;" name="arrow-left" color="black" size="17" @click="goBack" v-if="role!='工作人员'" /> <view class="barText">信息查看</view> </view> </view> @@ -45,24 +45,24 @@ <!-- <view class="listContent" v-if="InfoList.length > 0">--> <scroll-view :scroll-top="scrollTop" scroll-y="true" class="listContent" @scrolltoupper="upper" v-if="InfoList.length > 0" @scrolltolower="lower" @scroll="scroll" lower-threshold="50"> - <view v-for="(item, index) in InfoList" :key="index" class="itemContent"> + <view v-for="(item, index) in InfoList" :key="index" class="itemContent" @click="toDetail(item)"> <view class="content"> - <text>[{{item.colorContent}}]</text> - <text>{{item.title}},{{item.content}}</text> - <view class="btnGroup" style="float: right;"> - <u-button - size="mini" - style="background-color:rgb(255, 223, 37);color: white;width: 100px;margin: 3px 8px;" - @click="toDetail(item)" - > - 信息详情 - </u-button> + <text class="tit">[{{item.colorContent}}]{{item.title}}</text><br> + <text class="cont">{{item.content}}</text> + <view class="btnGroup"> +<!-- <u-button --> +<!-- size="mini" --> +<!-- style="background-color:rgb(255, 223, 37);color: white;width: 100px;margin: 3px 8px;"--> +<!-- @click="toDetail(item)"--> +<!-- >--> +<!-- 信息详情--> +<!-- </u-button>--> <u-button size="mini" - style="background-color:rgb(17, 204, 33);color: white;width: 100px;" - @click="toResponsivity(item)" + style="background-color:rgb(17, 204, 33);color: white;width: 100px;margin: 0;font-size: 13px" + @click.native.stop="toResponsivity(item)" > - 查看叫应率 + 叫应率 {{item.responsesRate}} </u-button> </view> @@ -125,6 +125,7 @@ selectedSaleAnalysis: 'all', InfoList: [], unitType: null, + role:'', } }, onLoad() { @@ -135,6 +136,7 @@ uni.hideTabBar(); }, onShow() { + this.role = uni.getStorageSync('roleName'); this.data.pageIndex = 1 this.getInfoList(); }, @@ -200,6 +202,8 @@ uni.navigateTo({ url: `/pages/tabBar/responsivity/countyResponsivity?data=` + encodeURIComponent(JSON.stringify(res.data)) }) + }else{ + uni.$u.toast(res.msg) } }) }, @@ -376,42 +380,57 @@ display: flex; align-items: center; } +.examineList{ + margin-top: 12px; + height: calc(100vh - 226px); + overflow: hidden; + overflow-y: scroll; +} .listContent{ display: flex; flex-direction: column; width: calc(100% - 24px); margin: 0 12px; + margin-bottom: 30px; background: #fff; border-radius: 5px; box-shadow: 0 3px 12px rgba(0,0,0,0.05); height: 100%; } .itemContent{ - font-size: 16px; color: #333; + font-size: 16px; margin-top: 15px; padding: 0 12px 10px; border-bottom: 1px solid #ebebeb; - } .content{ - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; + .tit{ + width: 100%; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + } + .cont{ + width: 100%; + font-size: 14px; + color: #666; + display: block; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + margin-bottom: 6px; + } + .btnGroup{ + width: 100%; + display: flex; + justify-content: left; + } } .buttonCo{ margin-top: 5px; margin-bottom: 10px; } -.examineList{ - margin-top: 12px; - height: calc(100vh - 266px); - overflow: hidden; - overflow-y: scroll; -} -.btnGroup{ - display: flex; - align-items: center; - justify-content: flex-end; -} + + </style> \ No newline at end of file -- Gitblit v1.9.2