diff --git a/common/config.js b/common/config.js
index 813a9ab..191473b 100644
--- a/common/config.js
+++ b/common/config.js
@@ -1,6 +1,6 @@
-// const ROOTPATH1 = "https://dj-api.hnsiyao.cn/czg/"; //
-// const ROOTPATH = "https://dj-api.hnsiyao.cn/czg/"; //后台服务域名
-// const ROOTPATH2 = "https://dj-h5.hnsiyao.cn"; //后台服务域名
+const ROOTPATH1 = "https://dj-api.hnsiyao.cn/czg"; //
+const ROOTPATH = "https://dj-api.hnsiyao.cn/czg"; //后台服务域名
+const ROOTPATH2 = "https://dj-h5.hnsiyao.cn"; //后台服务域名
// const ROOTPATH1 = "https://video.hnsiyao.cn/sqx_fast/"; //
// const ROOTPATH = "https://video.hnsiyao.cn/sqx_fast/"; //后台服务域名
@@ -13,9 +13,9 @@
// const ROOTPATH1 = "http://192.168.1.41:8100/czg"; //
// const ROOTPATH = "http://192.168.1.41:8100/czg"; //后台服务域名
// 测试
-const ROOTPATH1 = "https://web-api.hnsiyao.cn/czg"; //
-const ROOTPATH = "https://web-api.hnsiyao.cn/czg"; //后台服务域名
-const ROOTPATH2 = "https://video-h5.hnsiyao.cn"; //后台服务域名
+// const ROOTPATH1 = "https://web-api.hnsiyao.cn/czg"; //
+// const ROOTPATH = "https://web-api.hnsiyao.cn/czg"; //后台服务域名
+// const ROOTPATH2 = "https://video-h5.hnsiyao.cn"; //后台服务域名
module.exports = {
diff --git a/me/setting/index.vue b/me/setting/index.vue
index 8e69385..5d201bb 100644
--- a/me/setting/index.vue
+++ b/me/setting/index.vue
@@ -20,10 +20,10 @@
隐私协议
-
+
退出登录
diff --git a/pages/index/index2.vue b/pages/index/index2.vue
index c938ac2..45cc522 100644
--- a/pages/index/index2.vue
+++ b/pages/index/index2.vue
@@ -14,10 +14,10 @@
-
+
- 公告
+ 公告{{}}
diff --git a/pages/task/index.vue b/pages/task/index.vue
index ea6920f..a88f8ab 100644
--- a/pages/task/index.vue
+++ b/pages/task/index.vue
@@ -459,7 +459,16 @@
this.$Request.getT('/app/taskCenter/selectTaskCenter', {}).then(res => {
if (res.code == 0) {
- this.list = res.data
+ if (!this.isShowMoneyPay) {
+ if (res.data[0].title == '分享奖励') {
+ res.data.shift()
+ this.list = res.data
+ } else {
+ this.list = res.data
+ }
+ } else {
+ this.list = res.data
+ }
}
uni.stopPullDownRefresh();
})