diff --git a/src/saas/AppWalkask/AppWalkask.vue b/src/saas/AppWalkask/AppWalkask.vue index c8c75b18..2ddd09b8 100644 --- a/src/saas/AppWalkask/AppWalkask.vue +++ b/src/saas/AppWalkask/AppWalkask.vue @@ -27,7 +27,7 @@
- 走访人: + 走访人: {{ item.createTime }}
@@ -49,8 +49,8 @@ -->
- -

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

+ +

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

@@ -350,21 +350,21 @@ uni-page-body { bottom: 106px; z-index: 9; } - .empty{ + .empty { height: 100%; - img{ + img { width: 282px; height: 306px; margin: 168px 0 0 234px; } - p{ + p { text-align: center; font-size: 28px; font-family: PingFangSC-Regular, PingFang SC; color: #999; line-height: 44px; - span{ - color: #467DFE; + span { + color: #467dfe; } } } diff --git a/src/saas/AppWalkask/selectType.vue b/src/saas/AppWalkask/selectType.vue index 69610084..7cbb24a9 100644 --- a/src/saas/AppWalkask/selectType.vue +++ b/src/saas/AppWalkask/selectType.vue @@ -53,9 +53,8 @@
确定选择
-
+
-
@@ -76,19 +75,19 @@ export default { applicationName: '', applicationId: '', selectUser: {}, - type: '' + type: '', } }, onLoad() { this.$dict.load('appSpecialTypeFive').then(() => { this.typeList = this.$dict.getDict('appSpecialTypeFive') - console.log(this.typeList) }) }, methods: { toAdd() { - uni.navigateTo({ url: '../AppSpecialPeople/add'}) + uni.navigateTo({ url: '../AppSpecialPeople/add' }) }, + userClick(row, index) { if (this.userList[index].isChecked) { this.userList[index].isChecked = false //取消 @@ -110,7 +109,7 @@ export default { getUsers() { this.$http.post(`/app/appspecialadjustment/allList?size=20¤t=${this.current}`, { type: this.type, name: this.keyword }).then((res) => { if (res.code == 0) { - if(this.current > res.data.total) { + if (this.current > res.data.pages) { return } res.data.records.map((item) => { @@ -163,9 +162,9 @@ export default { }, }, onReachBottom() { - this.current ++ + this.current++ this.getUsers() - } + }, }