From cc453c8d4eae86f49814169079235e39d75ade68 Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Sat, 27 Jan 2024 15:43:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/activity.js | 4 +- config/app.js | 6 + pages.json | 32 +- pages/helpPeople/formTable.vue | 994 ++++++++++++++++++ pages/helpPeople/helpPeople.vue | 84 ++ .../activityDetail/activityDetail.vue | 3 +- pages/newActivity/giftBag/giftBag.vue | 239 +++-- pages/newActivity/invitation/invitation.vue | 3 +- pages/newActivity/subsidy/subsidy2.vue | 5 +- pages/newActivity/subsidy/subsidy3.vue | 5 +- pages/newActivity/towPrice/towPrice.vue | 3 +- pages/redpacket/redpack_type.vue | 64 +- static/active/redpack_type_img.webp | Bin 0 -> 178034 bytes 13 files changed, 1287 insertions(+), 155 deletions(-) create mode 100644 pages/helpPeople/formTable.vue create mode 100644 pages/helpPeople/helpPeople.vue create mode 100644 static/active/redpack_type_img.webp diff --git a/api/activity.js b/api/activity.js index 5ca75fe..0f17fae 100644 --- a/api/activity.js +++ b/api/activity.js @@ -302,7 +302,9 @@ export function storeActivityQrcode(data) { // 活动商品专区 export function storeActivityProduct(data) { - return request.get(`storeActivity/product`, data); + return request.get(`storeActivity/product`, data, { + noAuth: true + }); } // 活动区域列表 diff --git a/config/app.js b/config/app.js index cee47b2..5d52a61 100644 --- a/config/app.js +++ b/config/app.js @@ -8,6 +8,7 @@ let httpApiTwo let httpApiThree let httpApiFour let httpApiFive +let httpApiSix let wsApi // 在打包之前请检查当前环境是否正确 @@ -21,6 +22,7 @@ switch (env) { httpApiTwo = 'https://nk.lihaink.cn' httpApiThree = 'http://ceshi-oa.lihaink.cn' httpApiFour = 'https://worker-task.lihaink.cn' + httpApiSix = 'https://new-worker.lihaink.cn' wsApi = 'wss://shop.lihaink.cn' break; case 'prew': @@ -28,6 +30,7 @@ switch (env) { httpApiTwo = "https://nk.lihaink.cn" httpApiThree = 'http://ceshi-oa.lihaink.cn' httpApiFour = 'https://preview-worker-task.lihaink.cn' + httpApiSix = 'https://ceshi-new-wokr.lihaink.cn' wsApi = 'wss://test.shop.lihaink.cn' break; default: @@ -36,6 +39,7 @@ switch (env) { httpApiThree = 'http://ceshi-oa.lihaink.cn' httpApiFour = 'https://ceshi-worker-task.lihaink.cn' httpApiFive = 'https://ceshi-zhibo.lihaink.cn' + httpApiSix = 'https://ceshi-new-wokr.lihaink.cn' wsApi = 'wss://crmeb-test.shop.lihaink.cn' } @@ -55,6 +59,7 @@ module.exports = { HTTP_REQUEST_URL_THREE: httpApiThree, HTTP_REQUEST_URL_FOUR: httpApiFour, HTTP_REQUEST_URL_FIVE: httpApiFive, + HTTP_REQUEST_URL_SIX: httpApiSix, VUE_APP_WS_URL: `${wsApi}?type=user`, VUE_APP_WS_URL_ONE:wsApi_one, // #endif @@ -64,6 +69,7 @@ module.exports = { HTTP_REQUEST_URL: process.env.NODE_ENV == 'development'? httpApi : window.location.protocol + "//" + window.location.host, HTTP_REQUEST_URL_TWO: httpApiTwo, HTTP_REQUEST_URL_FIVE: httpApiFive, + HTTP_REQUEST_URL_SIX: httpApiSix, HTTP_REQUEST_URL_FOUR: window.location.host == 'shop.lihaink.cn' ?'https://worker-task.lihaink.cn':window.location.host == 'test.shop.lihaink.cn'?'https://preview-worker-task.lihaink.cn':'https://ceshi-worker-task.lihaink.cn', // 聊天长连接地址 diff --git a/pages.json b/pages.json index a8ba8c6..ba6439d 100644 --- a/pages.json +++ b/pages.json @@ -240,7 +240,7 @@ "style" : { "navigationBarTitleText" : "红包余额", - "enablePullDownRefresh": true, + "enablePullDownRefresh": false, "navigationStyle": "custom", "onReachBottomDistance": 300 } @@ -250,7 +250,7 @@ "style" : { "navigationBarTitleText" : "实物通用红包", - "enablePullDownRefresh": true, + "enablePullDownRefresh": false, "navigationStyle": "custom", "onReachBottomDistance": 300 } @@ -260,7 +260,7 @@ "style" : { "navigationBarTitleText" : "现金抵扣红包", - "enablePullDownRefresh": true, + "enablePullDownRefresh": false, "navigationStyle": "custom", "onReachBottomDistance": 300 } @@ -270,7 +270,7 @@ "style" : { "navigationBarTitleText" : "两元专区", - "enablePullDownRefresh": true, + "enablePullDownRefresh": false, "navigationStyle": "custom", "onReachBottomDistance": 300 } @@ -288,7 +288,29 @@ "style" : { "navigationBarTitleText" : "新人礼包", - "enablePullDownRefresh" : false + "enablePullDownRefresh": false, + "navigationStyle": "custom", + "onReachBottomDistance": 300 + } + }, + { + "path" : "pages/helpPeople/helpPeople", + "style" : + { + "navigationBarTitleText" : "", + "enablePullDownRefresh": false, + "navigationStyle": "custom", + "onReachBottomDistance": 300 + } + }, + { + "path" : "pages/helpPeople/formTable", + "style" : + { + "navigationBarTitleText" : "信息收集", + "enablePullDownRefresh": false, + "navigationStyle": "custom", + "onReachBottomDistance": 300 } } ], diff --git a/pages/helpPeople/formTable.vue b/pages/helpPeople/formTable.vue new file mode 100644 index 0000000..2185173 --- /dev/null +++ b/pages/helpPeople/formTable.vue @@ -0,0 +1,994 @@ + + + + \ No newline at end of file diff --git a/pages/helpPeople/helpPeople.vue b/pages/helpPeople/helpPeople.vue new file mode 100644 index 0000000..25869a3 --- /dev/null +++ b/pages/helpPeople/helpPeople.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/pages/newActivity/activityDetail/activityDetail.vue b/pages/newActivity/activityDetail/activityDetail.vue index f7bf497..6067b4e 100644 --- a/pages/newActivity/activityDetail/activityDetail.vue +++ b/pages/newActivity/activityDetail/activityDetail.vue @@ -1,6 +1,5 @@