|
@@ -35,7 +35,8 @@
|
|
|
<agree-dialog ref="agreeYkDialog" @confirm-btn="ykConfirmBtn"></agree-dialog>
|
|
|
<agree-dialog ref="agreeWxDialog" @confirm-btn="wxConfirmBtn"></agree-dialog>
|
|
|
<tel-dialog ref="telDialogRef" @telClose="telClose" @bindBtn="bindBtn" v-if="telDialogFlag"></tel-dialog>
|
|
|
- <tip-dialog ref="tipDialogRef" :title="tipTitle" :content="tipContent"></tip-dialog>
|
|
|
+ <tipMiddleDialog ref="tipDialogRef" :closeFlag='false' :title="tipTitle" @confirm-btn="BanbenConfirmBtn"
|
|
|
+ :content="tipContent"></tipMiddleDialog>
|
|
|
|
|
|
</view>
|
|
|
</template>
|
|
@@ -70,7 +71,8 @@
|
|
|
import {
|
|
|
useIsCanBack
|
|
|
} from "@/store/isCanBack.js"
|
|
|
- import tipDialog from '@/components/dialog/tipDialog.vue';
|
|
|
+ // import tipDialog from '@/components/dialog/tipDialog.vue';
|
|
|
+ import tipMiddleDialog from '@/components/dialog/tipMiddleDialog.vue';
|
|
|
import config from '../../config.js'
|
|
|
import {
|
|
|
error
|
|
@@ -128,6 +130,16 @@
|
|
|
|
|
|
})
|
|
|
|
|
|
+ function BanbenConfirmBtn() {
|
|
|
+ const systemInfo = uni.getSystemInfoSync();
|
|
|
+ if (systemInfo.platform == 'ios') {
|
|
|
+ const appStoreUrl = 'itms-apps://itunes.apple.com/app/6741551741'
|
|
|
+ plus.runtime.openURL(appStoreUrl)
|
|
|
+ } else {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
function getLoginInit() {
|
|
|
getVersion({}).then(res => {
|
|
|
if (version != res.data.version) {
|