From c4e6f7ba1de4c8e06fc894433fc745ff9697be9a Mon Sep 17 00:00:00 2001 From: mengxiaolong Date: Fri, 21 Aug 2020 11:59:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E4=BF=A1=E5=88=86=E4=BA=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/questions/QuestionsDetail.vue | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/views/ebiz/questions/QuestionsDetail.vue b/src/views/ebiz/questions/QuestionsDetail.vue index 8fd1f85d5..7e8c0410d 100644 --- a/src/views/ebiz/questions/QuestionsDetail.vue +++ b/src/views/ebiz/questions/QuestionsDetail.vue @@ -470,17 +470,19 @@ export default { } else { title = '国富人寿转账不成功问题件处理' } + let shareObj = { + title: title, + content: '签字进行', + shareType: 0, + url: `${location.origin}/#/questions/detail/${this.problemDetail.id}/${this.problemDetail.issueType}?&token=${localStorage.token}&receiveType=${this.problemDetail.receiveType}&prtNo=${this.$route.query.prtNo}`, + img: this.$assetsUrl + 'images/logo.png' + } + console.dir(shareObj) if (data.trigger == 'right_button_click') { // eslint-disable-next-line no-undef EWebBridge.webCallAppInJs('bridge', { flag: 'share', - extra: { - title: title, - content: '签字进行', - shareType: 0, - url: `${location.origin}/#/questions/detail/${this.problemDetail.id}/${this.problemDetail.issueType}?&token=${localStorage.token}&receiveType=${this.problemDetail.receiveType}&prtNo=${this.$route.query.prtNo}`, - img: this.$assetsUrl + 'images/logo.png' - } + extra: shareObj }) } },