diff --git a/src/pages.json b/src/pages.json index 6da17bd..b3e00eb 100644 --- a/src/pages.json +++ b/src/pages.json @@ -4,7 +4,13 @@ }, "pages": [ { - "path": "pages/index" + "path": "pages/index", + "style": { + "navigationBarTitleText": "超级会员", + "navigationBarBackgroundColor": "#D1A55A" + + } + }, { "path": "pages/user" diff --git a/src/pages/home.vue b/src/pages/home.vue index 818f2e3..711d6dc 100644 --- a/src/pages/home.vue +++ b/src/pages/home.vue @@ -279,7 +279,6 @@ export default { .then((res) => { uni.hideLoading(); let datas = JSON.parse(res.payUrl); - console.log(datas); uni.navigateToMiniProgram({ appId: datas.cqpMpAppId, path: datas.cqpMpPath, diff --git a/src/pages/index.vue b/src/pages/index.vue index 529ad4f..c46743f 100644 --- a/src/pages/index.vue +++ b/src/pages/index.vue @@ -2,64 +2,305 @@ * @Author: wwxin * @Date: 2023-12-08 13:58:32 * @LastEditors: wwxin 2463926940@qq.com - * @LastEditTime: 2024-09-18 11:38:27 + * @LastEditTime: 2024-10-25 17:51:03 * @FilePath: /sharetea-user/src/pagesUser/profile.vue * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE --> diff --git a/src/pages/user.vue b/src/pages/user.vue index 4610b0d..6efa9ee 100644 --- a/src/pages/user.vue +++ b/src/pages/user.vue @@ -2,7 +2,7 @@ * @Author: wwxin * @Date: 2023-12-08 13:58:32 * @LastEditors: wwxin 2463926940@qq.com - * @LastEditTime: 2024-09-13 20:08:04 + * @LastEditTime: 2024-10-24 10:47:59 * @FilePath: /sharetea-user/src/pagesUser/profile.vue * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE --> @@ -28,7 +28,7 @@ export default { handlerCopy() { uni .makePhoneCall({ - phoneNumber: '4008103568', + phoneNumber: '4000753009', }) .catch((e) => {}); }, diff --git a/src/util/http/env.js b/src/util/http/env.js index 3a1868c..a654673 100644 --- a/src/util/http/env.js +++ b/src/util/http/env.js @@ -2,14 +2,14 @@ * @Author: wwxin * @Date: 2023-02-04 11:05:26 * @LastEditors: wwxin 2463926940@qq.com - * @LastEditTime: 2024-09-14 15:27:02 + * @LastEditTime: 2024-10-23 18:33:28 * @FilePath: / * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE */ // 测试环境 const DEV_BASE_URL = "https://td.xtl10.fun"; //const DEV_BASE_URL = "http://47.109.21.59:889"; - //const DEV_BASE_URL = "http://192.168.110.175:8081"; +// const DEV_BASE_URL = "http://192.168.110.175:8081"; let BASE_URL = DEV_BASE_URL; const envConfig = { BASE_URL,