|
@@ -59,6 +59,10 @@
|
|
|
<icon class="list-icon yszc-icon"></icon>
|
|
|
<text>隐私政策</text>
|
|
|
</view>
|
|
|
+ <view class="list-row" @click="kefudianhua">
|
|
|
+ <icon class="list-icon kfdh-icon"></icon>
|
|
|
+ <text>客服电话</text>
|
|
|
+ </view>
|
|
|
<view class="list-row" @click="exitLogin">
|
|
|
<icon class="list-icon login-out-icon"></icon>
|
|
|
<text>退出登录</text>
|
|
@@ -73,6 +77,7 @@
|
|
|
<duihuanmaDialog ref="duihuanmaDialogRef" @confirm-btn="duihuanmaBtn" title="兑换"></duihuanmaDialog>
|
|
|
<tel-dialog @telClose="telClose" @bindBtn="bindBtn" v-if="telDialogFlag"></tel-dialog>
|
|
|
<agree-content-dialog ref="agreeContentDialogRef" :agreeType="agreeType"></agree-content-dialog>
|
|
|
+ <tip-small-dialog ref="kefuDialogRef" :title="kefuTitle" @confirm-btn="kefuBtn" :content="kefuContent" class="kefu-dialog"></tip-small-dialog>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -155,6 +160,10 @@
|
|
|
const duihuanmaDialogRef = ref(null);
|
|
|
const bannerArr = ref(null);
|
|
|
|
|
|
+ const kefuDialogRef = ref(null);
|
|
|
+ const kefuTitle = '提示';
|
|
|
+ const kefuContent = '客服电话:17304117625';
|
|
|
+
|
|
|
const exitLogin = () => {
|
|
|
exitDialogRef.value.handleShow();
|
|
|
}
|
|
@@ -232,6 +241,12 @@
|
|
|
agreeContentDialogRef.value.handleShow();
|
|
|
}
|
|
|
|
|
|
+ function kefudianhua(){
|
|
|
+ kefuDialogRef.value.handleShow();
|
|
|
+ }
|
|
|
+ function kefuBtn(){
|
|
|
+ kefuDialogRef.value.handleClose();
|
|
|
+ }
|
|
|
// 游客弹窗---确定
|
|
|
|
|
|
function ykConfirm() {
|