|
@@ -112,13 +112,17 @@
|
|
|
|
|
|
<van-dialog
|
|
<van-dialog
|
|
use-slot
|
|
use-slot
|
|
- title="标题"
|
|
|
|
|
|
+ title="预订须知"
|
|
:show="ishow"
|
|
:show="ishow"
|
|
@confirm="confirmOrder"
|
|
@confirm="confirmOrder"
|
|
:show-cancel-button="false"
|
|
:show-cancel-button="false"
|
|
>
|
|
>
|
|
|
|
+
|
|
<view style="padding: 0 32rpx;">
|
|
<view style="padding: 0 32rpx;">
|
|
- <rich-text :nodes="store.buy_notice"></rich-text>
|
|
|
|
|
|
+ <scroll-view style="height: 40vh;" :scroll-top="scrollTop" scroll-y="true" :refresher-enabled="false">
|
|
|
|
+ <rich-text :nodes="store.buy_notice"></rich-text>
|
|
|
|
+ </scroll-view>
|
|
|
|
+
|
|
</view>
|
|
</view>
|
|
|
|
|
|
</van-dialog>
|
|
</van-dialog>
|
|
@@ -227,7 +231,13 @@
|
|
|
|
|
|
methods: {
|
|
methods: {
|
|
readshouknow() {
|
|
readshouknow() {
|
|
- this.ishow = true;
|
|
|
|
|
|
+ if(this.store.buy_notice!='') {
|
|
|
|
+ this.ishow = true;
|
|
|
|
+
|
|
|
|
+ }else {
|
|
|
|
+ this.$msg("暂无预定须知哦")
|
|
|
|
+ }
|
|
|
|
+
|
|
},
|
|
},
|
|
confirmOrder() {
|
|
confirmOrder() {
|
|
this.ishow = false;
|
|
this.ishow = false;
|