删除添加服务错误的弹窗

This commit is contained in:
cjl520cy 2026-04-20 10:41:15 +08:00
parent 4dc74695de
commit f560bcb69d
1 changed files with 0 additions and 27 deletions

View File

@ -364,19 +364,6 @@
> >
</view> </view>
<!-- 新增上门提醒弹窗-->
<transition name="fade">
<view class="popup-mask2" v-if="showReminderPopup" @click="closeReminderPopup(false)">
<view class="popup-content2" @click.stop>
<view class="popup-title">提示</view>
<view class="popup-message">此服务是需要上门服务的哦</view>
<view class="popup-buttons">
<view class="popup-btn popup-btn-notshow" @click="closeReminderPopup(true)">不再提示</view>
<view class="popup-btn popup-btn-know" @click="closeReminderPopup(false)">我已知晓</view>
</view>
</view>
</view>
</transition>
</view> </view>
</template> </template>
@ -402,7 +389,6 @@ export default {
}, },
data() { data() {
return { return {
showReminderPopup: false,
artisanType: getApp().globalData.artisanType, artisanType: getApp().globalData.artisanType,
nowQer: "xc", nowQer: "xc",
progress: 0, progress: 0,
@ -474,11 +460,6 @@ export default {
this.serviceTypes = this.serviceTypes.concat(res.data); this.serviceTypes = this.serviceTypes.concat(res.data);
}); });
} }
//
const notShow = uni.getStorageSync('addServiceReminderNotShow');
if (!notShow) {
this.showReminderPopup = true;
}
this.getUserInfo(); this.getUserInfo();
}, },
computed: { computed: {
@ -575,14 +556,6 @@ export default {
return true; return true;
}, },
closeReminderPopup(notShowAgain) {
console.log('关闭弹窗,不再提示:', notShowAgain);
if (notShowAgain) {
uni.setStorageSync('addServiceReminderNotShow', true);
}
this.showReminderPopup = false;
},
goImgAndText() { goImgAndText() {
uni.navigateTo({ uni.navigateTo({
url: `/pages/shop/add-img-text?list=${this.formData.graphic_details}`, url: `/pages/shop/add-img-text?list=${this.formData.graphic_details}`,