|
|
@@ -217,7 +217,7 @@
|
|
|
|
|
|
<!-- 底部提示 -->
|
|
|
<view class="supplier-notice-footer">
|
|
|
- <text class="supplier-notice-tip">买花时注意区分,避免下错,下错了收不到花,会误事,会耽误明天的安排!!!</text>
|
|
|
+ <text class="supplier-notice-tip">买花时注意区分,避免下错,下错了收不到花,会耽误明天的安排!!!</text>
|
|
|
<view class="supplier-notice-buttons">
|
|
|
<button class="admin-button-com default" @click="remindLater">下次提醒</button>
|
|
|
<button class="admin-button-com blue" @click="closeSupplierNotice">知道了</button>
|
|
|
@@ -352,9 +352,13 @@ export default {
|
|
|
},
|
|
|
// 关闭供货商提示弹框
|
|
|
closeSupplierNotice() {
|
|
|
- this.$refs.supplierNoticePopup.close()
|
|
|
- // 调用已有的接口标记已通知
|
|
|
- hasNotice().then(res => { })
|
|
|
+ this.$util.confirmModal({
|
|
|
+ content: "我确认并清晰知道:我有多家批发店,如果还买错,是我自己的责任,不怪批发店和软件",
|
|
|
+ okText: "确认"
|
|
|
+ }, () => {
|
|
|
+ this.$refs.supplierNoticePopup.close()
|
|
|
+ hasNotice().then(res => { })
|
|
|
+ })
|
|
|
},
|
|
|
// 下次提醒
|
|
|
remindLater() {
|