diff --git a/src/saas/AppConflictMediation/Content.vue b/src/saas/AppConflictMediation/Content.vue index 80ad833f..c5a3be67 100644 --- a/src/saas/AppConflictMediation/Content.vue +++ b/src/saas/AppConflictMediation/Content.vue @@ -14,6 +14,7 @@ + {{ form.content.length/200 }}
@@ -204,6 +205,11 @@ export default { } } + .limit { + position: fixed; + right: 0; + } + .btn { position: fixed; bottom: 0; diff --git a/src/saas/AppConflictMediation/List.vue b/src/saas/AppConflictMediation/List.vue index dd478f40..ed41b648 100644 --- a/src/saas/AppConflictMediation/List.vue +++ b/src/saas/AppConflictMediation/List.vue @@ -4,12 +4,8 @@
-

- {{item.value}} -

-

- {{item.label}} -

+

{{ item.value }}

+

{{ item.label }}

@@ -17,7 +13,7 @@
事件列表
-
{{ status? status: '全部' }}
+
{{ status? status: '全部类型' }}
-
+ + +
+ +

您还未添加过事务记录
点击新增按钮试试吧

@@ -125,12 +130,13 @@ export default { margin-top: 140px; text-align: center; color: #888; - font-size: 30px; + font-size: 28px; - b { - font-size: 32px; + b{ + font-size: 28px; color: $uni-color-primary; padding: 0 8px; + font-weight: 400; } image { @@ -221,5 +227,23 @@ export default { box-sizing: border-box; } } + .empty{ + height: 100%; + img{ + width: 282px; + height: 306px; + margin: 168px 0 0 234px; + } + p{ + text-align: center; + font-size: 28px; + font-family: PingFangSC-Regular, PingFang SC; + color: #999; + line-height: 44px; + span{ + color: #467DFE; + } + } + } } diff --git a/src/saas/AppMailList/AppMailList.vue b/src/saas/AppMailList/AppMailList.vue index d7b48e7b..5176031a 100644 --- a/src/saas/AppMailList/AppMailList.vue +++ b/src/saas/AppMailList/AppMailList.vue @@ -63,7 +63,8 @@ export default { params: { isPublic: 1, resource: "portal", - size: 999 + size: 999, + name: this.keyword } }).then(res => { if (res.code == 0) { diff --git a/src/saas/AppMailList/myAddList.vue b/src/saas/AppMailList/myAddList.vue index 35a35cc8..1cd116a6 100644 --- a/src/saas/AppMailList/myAddList.vue +++ b/src/saas/AppMailList/myAddList.vue @@ -46,7 +46,6 @@ export default { getList() { this.$http.post(`/app/appconvenientaddressbook/list`, null, { params: { - areaId: this.user.areaId, createUserId: this.user.id } }).then(res => { diff --git a/src/saas/AppSpecialPeople/detail.vue b/src/saas/AppSpecialPeople/detail.vue index 8a045c50..742e6244 100644 --- a/src/saas/AppSpecialPeople/detail.vue +++ b/src/saas/AppSpecialPeople/detail.vue @@ -101,13 +101,11 @@ export default { this.areaId = this.user.areaId this.areaName = this.user.areaName this.getStatistic() - this.getStatisticMon() this.getUserList() }) uni.$on('specialPeopleList', () => { this.getStatistic() - this.getStatisticMon() this.getUserList() }) }, @@ -119,7 +117,6 @@ export default { areaSelect(e) { this.areaId = e this.getStatistic() - this.getStatisticMon() this.getUserList() }, tabClick(index) { @@ -127,8 +124,9 @@ export default { }, getStatistic() { this.statisticsList = [] + this.statisticsListMon = [] this.$http.post(`app/appspecialadjustment/statistic?type=0&range=0`).then((res) => { - if (res.code == 0) { + if (res?.data) { for (let i in res.data.map) { var obj = { label: i, @@ -136,19 +134,12 @@ export default { } this.statisticsList.push(obj) } - } - }) - }, - getStatisticMon() { - this.statisticsListMon = [] - this.$http.post(`app/appspecialadjustment/statistic?type=0&range=0`).then((res) => { - if (res.code == 0) { - for(let i in res.data.monthMap){ - var obj = { - label: i, - value: res.data.monthMap[i] + for(let n in res.data.monthMap){ + var objmon = { + label: n, + value: res.data.monthMap[n] } - this.statisticsListMon.push(obj) + this.statisticsListMon.push(objmon) } } }) @@ -156,7 +147,7 @@ export default { getUserList() { this.userList = [] this.$http.post(`app/appspecialadjustment/allList?size=20¤t=${this.current}`,{type: this.type, name: this.name}).then((res) => { - if (res.code == 0) { + if (res?.data) { if(this.current > res.data.total) { return } diff --git a/src/saas/AppWalkask/AppWalkask.vue b/src/saas/AppWalkask/AppWalkask.vue index 8eb82edb..8eb2c43c 100644 --- a/src/saas/AppWalkask/AppWalkask.vue +++ b/src/saas/AppWalkask/AppWalkask.vue @@ -39,7 +39,7 @@ -
+ +
+ +

您还未添加过走访慰问
点击新增按钮试试吧

@@ -320,7 +324,7 @@ uni-page-body { text-align: center; color: #b7b7b7; margin-top: 10px; - font-weight: 800; + font-size: 28px; .toAdds { color: #467dfe; @@ -346,5 +350,23 @@ uni-page-body { bottom: 106px; z-index: 9; } + .empty{ + height: 100%; + img{ + width: 282px; + height: 306px; + margin: 168px 0 0 234px; + } + p{ + text-align: center; + font-size: 28px; + font-family: PingFangSC-Regular, PingFang SC; + color: #999; + line-height: 44px; + span{ + color: #467DFE; + } + } + } }