Browse Source

更新 'src/pages/createing/index.vue'

修改结束拍摄,支付提示
dev
winter 1 year ago
parent
commit
8df2d4522e
1 changed files with 5 additions and 4 deletions
  1. +5
    -4
      src/pages/createing/index.vue

+ 5
- 4
src/pages/createing/index.vue View File

@@ -34,7 +34,7 @@
</view>
<!-- <text v-show="!userInfoModulesPinia.token">打开微信扫码登录小程序</text> -->
<text v-show="!userInfoModulesPinia.token" style="color: #ff4f00"
>19.9元可玩三次</text
>每次付费可制作3套写真</text
>
<text v-show="!userInfoModulesPinia.token">打开微信扫码支付</text>
<!-- <text
@@ -380,17 +380,18 @@ function loginOut() {
if (userInfoModulesPinia.createTimes) {
uni.showModal({
title: "是否结束拍摄?",
content: `您还有${userInfoModulesPinia.createTimes}次拍摄机会`,
content: `您还有${userInfoModulesPinia.createTimes}次拍摄机会,请继续`,
confirmColor: "#ff4f00",
confirmText: "再来一套",
cancelText: "结束拍摄",
//cancelText: "结束拍摄",
cancelText: "关闭窗口",
success: function (res) {
if (res.confirm) {
console.log("用户点击确定");
uni.navigateTo({ url: "/pages/chooseStyle/index" });
} else if (res.cancel) {
console.log("用户点击取消");
showQrCodeII.value = true;
//showQrCodeII.value = true;
}
},
});


Loading…
Cancel
Save