Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
aixianling
2021-12-24 19:11:35 +08:00
4 changed files with 7 additions and 9 deletions

View File

@@ -27,10 +27,7 @@
<div class="cards"> <div class="cards">
<div class="cards-left">活动人数</div> <div class="cards-left">活动人数</div>
<div class="cards-right" @click="toSignUser()"> <div class="cards-right" @click="toSignUser()">
<span style="color: #1c6bdf"> <span style="color: #1c6bdf">{{ detail.realNum }}</span>
<span v-if="detail.realNum != 0">{{ detail.realNum }}</span>
<span v-else>不限</span>
</span>
<u-icon name="arrow-right" color="#DDDDDD" size="28" style="margin-left: 8px"></u-icon> <u-icon name="arrow-right" color="#DDDDDD" size="28" style="margin-left: 8px"></u-icon>
</div> </div>
</div> </div>

View File

@@ -190,13 +190,13 @@ export default {
]) ])
}, },
}, },
onLoad() { created() {
this.$dict.load('wxCustomerAddWay', 'wxCustomerLogType') this.$dict.load('wxCustomerAddWay', 'wxCustomerLogType')
this.getCustomLog(this.top.custom) this.getCustomLog(this.top.custom)
this.injectJWeixin('openUserProfile') this.injectJWeixin('openUserProfile')
}, },
onShow() { onShow() {
document.title = '居民详情' document.title = '居民详情'
} }
} }
</script> </script>

View File

@@ -106,8 +106,8 @@ export default {
delta: 1 delta: 1
}) })
} }
}).catch(res => { }).catch(err => {
this.$u.toast(res) this.$u.toast('添加失败')
uni.hideLoading() uni.hideLoading()
}) })
} }

View File

@@ -278,6 +278,7 @@ export default {
}) })
this.$forceUpdate() this.$forceUpdate()
console.log(this.formData)
this.pageShow = true this.pageShow = true
} }
} }
@@ -303,7 +304,7 @@ export default {
}) })
}) })
this.$forceUpdate() this.$forceUpdate()
console.log(this.formData)
this.pageShow = true this.pageShow = true
}) })
}, },