diff --git a/src/components/ebiz/parentList/ParentPicker.vue b/src/components/ebiz/parentList/ParentPicker.vue index 52e4ebd19..a69163e94 100644 --- a/src/components/ebiz/parentList/ParentPicker.vue +++ b/src/components/ebiz/parentList/ParentPicker.vue @@ -112,7 +112,7 @@ export default { this.$emit('input', value) }, choose(data) { - this.name = data.name + this.name = data.allowanceBaseEnjoyDTO.name this.$emit('on-choose', data) }, closeParentPicker() { diff --git a/src/views/ebiz/allowance/application/List.vue b/src/views/ebiz/allowance/application/List.vue index 6f5c1a65a..6513a5d8e 100644 --- a/src/views/ebiz/allowance/application/List.vue +++ b/src/views/ebiz/allowance/application/List.vue @@ -114,14 +114,16 @@ export default { }) }, 100) // 右上角的显示 - window.EWebBridge.webCallAppInJs('webview_right_button', { - btns: [ - { - title: '我的资料', - title_color: '2e4591' - } - ] - }) + setTimeout(() => { + window.EWebBridge.webCallAppInJs('webview_right_button', { + btns: [ + { + title: '我的资料', + title_color: '2e4591' + } + ] + }) + }, 100) window.appCallBack = this.appCallBack this.getList() this.remindFunc() @@ -197,16 +199,16 @@ export default { let url = '' switch (allowanceType) { case 'APPLY_ALLOWANCE': //账户信息 - url = '/allowance/application/AccountInfo?allowanceNo=' + order.allowanceNo + '&allowancePageFlag='+allowancePageFlag+'&edit=1' + url = '/allowance/application/AccountInfo?allowanceNo=' + order.allowanceNo + '&allowancePageFlag=' + allowancePageFlag + '&edit=1' break case 'BANK_ALLOWANCE': //影像附件 - url = '/allowance/application/AttachmentManagement?allowanceNo=' + order.allowanceNo + '&allowancePageFlag='+allowancePageFlag+'&edit=1' + url = '/allowance/application/AttachmentManagement?allowanceNo=' + order.allowanceNo + '&allowancePageFlag=' + allowancePageFlag + '&edit=1' break case 'MEDIA_ALLOWANCE': //签字页面 - url = '/allowance/application/SignatureConfirmation?allowanceNo=' + order.allowanceNo + '&allowancePageFlag='+allowancePageFlag+'&edit=1' + url = '/allowance/application/SignatureConfirmation?allowanceNo=' + order.allowanceNo + '&allowancePageFlag=' + allowancePageFlag + '&edit=1' break case 'SIGN_ALLOWANCE': //签字页面 - url = '/allowance/application/SignatureConfirmation?allowanceNo=' + order.allowanceNo + '&allowancePageFlag='+allowancePageFlag+'&edit=1' + url = '/allowance/application/SignatureConfirmation?allowanceNo=' + order.allowanceNo + '&allowancePageFlag=' + allowancePageFlag + '&edit=1' break default: break @@ -223,7 +225,7 @@ export default { query: { allowanceNo: order.allowanceNo, edit: '1', - allowancePageFlag:allowancePageFlag + allowancePageFlag: allowancePageFlag } } })