BUG 25331

This commit is contained in:
aixianling
2021-12-09 18:31:25 +08:00
parent 21730aa629
commit 8110844bd2
2 changed files with 56 additions and 62 deletions

View File

@@ -80,7 +80,7 @@
<div class="popup-btn" @click="isShow = false">关闭</div>
</div>
</u-popup>
<u-modal v-model="isShowModal" show-cancel-button content="确定停止该表单?" @confirm="toStop"></u-modal>
<u-modal v-model="isShowModal" show-cancel-button content="确定停止该表单?" @confirm="toStop"></u-modal>
</div>
</template>
@@ -112,16 +112,11 @@ export default {
},
created() {
this.$loading()
this.injectJWeixin(['sendChatMessage', 'selectEnterpriseContact']).then(() => {
this.$dict.load(['questionnaireStatus', 'questionnaireType', 'questionnaireFieldType']).then(() => {
this.getList()
})
})
this.getList()
},
methods: {
...mapActions(['injectJWeixin', 'wxInvoke']),
...mapActions(['wxInvoke']),
linkTo(url) {
this.isShow = false
@@ -130,7 +125,7 @@ export default {
})
},
showPopup (item) {
showPopup(item) {
if (item.status === '2') {
this.$confirm('表单已停止发布,请在后台管理系统中查看调查结果', '', {
showCancel: false
@@ -172,27 +167,25 @@ export default {
this.isShow = false
}
if (data.tapIndex === 0 || data.tapIndex === 1) {
this.injectJWeixin(['shareAppMessage', 'shareWechatMessage']).then(() => {
if (data.tapIndex === 0) {
this.wxInvoke(['shareAppMessage', {
title: this.info.title,
desc: this.info.tableExplain,
link: res.data.linkUrl,
imgUrl: this.info.headPicture
}, () => {
this.isShow = false
}])
} else {
this.wxInvoke(['shareWechatMessage', {
title: this.info.title,
desc: this.info.tableExplain,
link: res.data.linkUrl,
imgUrl: this.info.headPicture
}, () => {
this.isShow = false
}])
}
})
if (data.tapIndex === 0) {
this.wxInvoke(['shareAppMessage', {
title: this.info.title,
desc: this.info.tableExplain,
link: res.data.linkUrl,
imgUrl: this.info.headPicture
}, () => {
this.isShow = false
}])
} else {
this.wxInvoke(['shareWechatMessage', {
title: this.info.title,
desc: this.info.tableExplain,
link: res.data.linkUrl,
imgUrl: this.info.headPicture
}, () => {
this.isShow = false
}])
}
}
}
})
@@ -311,6 +304,7 @@ export default {
.form {
height: 100vh;
overflow: hidden;
::v-deep .u-search {
margin-bottom: 0 !important;