diff --git a/assets/css/base.less b/assets/css/base.less
index 78111a7..d917846 100644
--- a/assets/css/base.less
+++ b/assets/css/base.less
@@ -290,4 +290,9 @@ checkbox .wx-checkbox-input.wx-checkbox-input-checked {
.ai-center {
align-items: center;
+}
+.ql-editor.ql-blank::before {
+ font-style: normal;
+ font-size: 28rpx;
+ color: #C2C5CC;
}
\ No newline at end of file
diff --git a/pages/cloud/components/HotelItem.vue b/pages/cloud/components/HotelItem.vue
new file mode 100644
index 0000000..f63f17b
--- /dev/null
+++ b/pages/cloud/components/HotelItem.vue
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+ {{ item.cityName }}
+
+
+ {{ item.content }}
+
+
+
+ {{ item.name }}
+
+
+
+
+
diff --git a/pages/cloud/haveFun.vue b/pages/cloud/haveFun.vue
index 359503d..cc86761 100644
--- a/pages/cloud/haveFun.vue
+++ b/pages/cloud/haveFun.vue
@@ -1,117 +1,36 @@
-
-
-
-
-
-
-
+
+
-
-
+
{{ item.name }}
-
@@ -119,41 +38,150 @@ export default {
{{ cityName }}
-
-
-
-
-
-
-
-
- {{ item.cityName }}
+
+
+
+
+
+
- {{ item.content }}
-
-
-
- {{ item.name }}
+
+
+
+
-
-
-
-
-
- 暂无数据
+
+
+
+ 暂无数据
+
+
-
+
diff --git a/pages/home/index.vue b/pages/home/index.vue
index 405b075..69e42e6 100644
--- a/pages/home/index.vue
+++ b/pages/home/index.vue
@@ -211,7 +211,9 @@
{{ unReadMessageInfo.noticeTitle }}
-
+
+
+
我知道了
diff --git a/pages/user/User/index.vue b/pages/user/User/index.vue
index 21a0eb9..7eb444a 100644
--- a/pages/user/User/index.vue
+++ b/pages/user/User/index.vue
@@ -316,9 +316,10 @@ export default {
},
{
text: '帮助中心',
- url: '/pages/user/Message/Message',
+ url: '',
icon: '/icon/icon-help.png',
- allowEnter: true
+ allowEnter: true,
+ showTip: true
},
{
text: '设置中心',
@@ -468,6 +469,12 @@ export default {
},
toolItemClickHandle(item) {
const url = item.url
+ if (item.showTip) {
+ this.$dialog.toast({
+ mes: '暂未开放'
+ })
+ return
+ }
if (!url || !item.allowEnter) {
return
}
diff --git a/pagesInn/components/jin-edit/jin-edit.vue b/pagesInn/components/jin-edit/jin-edit.vue
index c435769..a3bcc47 100644
--- a/pagesInn/components/jin-edit/jin-edit.vue
+++ b/pagesInn/components/jin-edit/jin-edit.vue
@@ -1,17 +1,19 @@
@@ -36,7 +38,7 @@
-
+
@@ -49,8 +51,15 @@
+
+
\ No newline at end of file
diff --git a/pkg_user/views/myCoupons.vue b/pkg_user/views/myCoupons.vue
index 6413c58..b871308 100644
--- a/pkg_user/views/myCoupons.vue
+++ b/pkg_user/views/myCoupons.vue
@@ -5,23 +5,13 @@
-
-
-
-
-
diff --git a/uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow.vue b/uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow.vue
index 0f019e9..7b634d7 100644
--- a/uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow.vue
+++ b/uni_modules/custom-waterfalls-flow/components/custom-waterfalls-flow/custom-waterfalls-flow.vue
@@ -1,8 +1,29 @@
-
-
-
+
+
+
@@ -15,8 +36,22 @@
-
-
+
+
@@ -156,6 +191,7 @@
this.msg++;
}
this.$nextTick(() => {
+ console.log(this.data.list)
this.initValue(this.curIndex, 'refresh==>');
})
}, 1)
diff --git a/utils/dialog.js b/utils/dialog.js
index 732c0bc..0906f31 100644
--- a/utils/dialog.js
+++ b/utils/dialog.js
@@ -49,7 +49,7 @@ dialog.message = (mes = "操作失败", obj = {}) => {
uni.showToast({
title: mes,
icon: "none",
- duration: 2000,
+ duration: 3000,
complete: () => {
resolve();
}
@@ -61,7 +61,7 @@ dialog.toast = (options) => {
uni.showToast({
title: options.mes,
icon: "none",
- duration: 2000,
+ duration: 3000,
complete: () => {
options.callback ? options.callback() : null
}
@@ -72,7 +72,7 @@ dialog.error = (mes) => {
uni.showToast({
title: mes,
icon: "none",
- duration: 2000
+ duration: 3000
});
};
@@ -84,7 +84,7 @@ export function validatorDefaultCatch(err, type = "message") {
uni.showToast({
title: err.errors[0].message,
icon: 'none',
- duration: 2000
+ duration: 3000
})
return false
}