From b7d59880975d3aa75760e764c20c2c4217039c78 Mon Sep 17 00:00:00 2001 From: zhouwenxuan <1175765986@qq.com> Date: 星期五, 04 八月 2023 09:17:25 +0800 Subject: [PATCH] 叫应率修改 --- pages/tabBar/responsivity/countyResponsivity.vue | 15 ++++++++------- 1 files changed, 8 insertions(+), 7 deletions(-) diff --git a/pages/tabBar/responsivity/countyResponsivity.vue b/pages/tabBar/responsivity/countyResponsivity.vue index b5ab7cc..735e428 100644 --- a/pages/tabBar/responsivity/countyResponsivity.vue +++ b/pages/tabBar/responsivity/countyResponsivity.vue @@ -20,7 +20,7 @@ <th></th> <th>处理情况</th> <th v-if="unittype == 4">叫应时间</th> - <th v-else>叫应率</th> + <th v-else>转发叫应率</th> <th v-if="unittype == 4">反馈</th> <th v-else>详情</th> </tr> @@ -74,7 +74,8 @@ console.log("data",test) this.title = test.title; this.tableData = test.appPageResponseByIdRespDTOS; - this.unittype = test.unittype; + this.unittype = this.tableData[0].unittype; + console.log("unittype",this.tableData) this.tableData.forEach((item,index) => { this.tableData[index].response = item.responseStatus ==1 ? '待叫应' :item.responseStatus == 2 ? '已叫应' :'超时未叫应' this.tableData[index].responsivity = item.forwardRate ? item.forwardRate :'--'; @@ -109,11 +110,11 @@ } }) }else { - // uni.showToast({ - // icon: 'none', - // title: '无转发', - // duration: 3000 - // }) + uni.showToast({ + icon: 'none', + title: '暂无下级转发数据', + duration: 3000 + }) } }, toDetail(item){ -- Gitblit v1.9.2