From 7b82ecd876bf67238232b349021ef6cf1b5e5a16 Mon Sep 17 00:00:00 2001 From: "DESKTOP-GMUNQ1B\\k" <1154079537@qq.com> Date: Tue, 5 Mar 2024 15:23:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/app.js | 25 ++++---- pages/users/invite_code/index.vue | 95 +++++++++++++++++++++---------- 2 files changed, 80 insertions(+), 40 deletions(-) diff --git a/config/app.js b/config/app.js index 5d52a61..8d45329 100644 --- a/config/app.js +++ b/config/app.js @@ -23,7 +23,7 @@ switch (env) { httpApiThree = 'http://ceshi-oa.lihaink.cn' httpApiFour = 'https://worker-task.lihaink.cn' httpApiSix = 'https://new-worker.lihaink.cn' - wsApi = 'wss://shop.lihaink.cn' + wsApi = 'wss://shop.lihaink.cn' break; case 'prew': httpApi = 'https://test.shop.lihaink.cn' //预发布环境 @@ -31,7 +31,7 @@ switch (env) { 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' + wsApi = 'wss://test.shop.lihaink.cn' break; default: httpApi = "https://crmeb-test.shop.lihaink.cn" // 测试 @@ -40,7 +40,7 @@ switch (env) { 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' + wsApi = 'wss://crmeb-test.shop.lihaink.cn' } const ossUrl = 'https://lihai001.oss-cn-chengdu.aliyuncs.com/public' @@ -59,26 +59,29 @@ module.exports = { HTTP_REQUEST_URL_THREE: httpApiThree, HTTP_REQUEST_URL_FOUR: httpApiFour, HTTP_REQUEST_URL_FIVE: httpApiFive, - HTTP_REQUEST_URL_SIX: httpApiSix, + HTTP_REQUEST_URL_SIX: httpApiSix, VUE_APP_WS_URL: `${wsApi}?type=user`, - VUE_APP_WS_URL_ONE:wsApi_one, + VUE_APP_WS_URL_ONE: wsApi_one, // #endif // #ifdef H5 //H5接口是浏览器地址 - HTTP_REQUEST_URL: process.env.NODE_ENV == 'development'? httpApi : window.location.protocol + "//" + window.location.host, + 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', + 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', // 聊天长连接地址 VUE_APP_WS_URL: wsApi ? `${wsApi}?type=user` : VUE_APP_WS_URL, // #endif openPlantGrass: openPlantGrass, - ENV: env, - OSS_URL: ossUrl, - + ENV: env, + OSS_URL: ossUrl, + HEADER: { 'content-type': 'application/json', //#ifdef H5 diff --git a/pages/users/invite_code/index.vue b/pages/users/invite_code/index.vue index 9b7ffe4..f63f585 100644 --- a/pages/users/invite_code/index.vue +++ b/pages/users/invite_code/index.vue @@ -29,14 +29,22 @@ 采购金额 销售金额 - - - {{item.real_name}} - {{item.uid}} - ¥{{item.buy_amount}} - ¥{{item.sale_amount}} + + + + + + {{item.real_name}} + {{item.uid}} + ¥{{item.buy_amount}} + ¥{{item.sale_amount}} + + + + {{loadTitle}} + - + @@ -51,7 +59,9 @@ qrcode, merchantRecord } from "@/api/activity.js"; -import { Toast } from '../../../libs/uniApi'; + import { + Toast + } from '../../../libs/uniApi'; export default { components: { @@ -76,47 +86,44 @@ import { Toast } from '../../../libs/uniApi'; this.getList(); this.getUserInfo(); }, - /** - * 页面上拉触底事件的处理函数 - */ - onReachBottom: function() { - this.getList(); - }, methods: { + scrolltolower(e) { + this.getList(); + }, + // 获取二维码 getQrcode() { qrcode().then(res => { this.qrcodeUrl = res.data.url; - }).catch(err=>{ - uni.showModal({ - content:'暂未开通邀请码,需开通邀请码请联系管理员', - showCancel: false, - success: (res)=>{ - uni.navigateBack(); - } - }) - }) + }).catch(err => { + uni.showModal({ + content: '暂未开通邀请码,需开通邀请码请联系管理员', + showCancel: false, + success: (res) => { + uni.navigateBack(); + } + }) + }) }, + // 获取好友列表 getList() { let that = this; if (that.loading) return; if (that.loadend) return; that.loading = true; - that.loadTitle = ''; merchantRecord({ page: that.page, limit: that.limit }).then(res => { let list = res.data.list, loadend = list.length < that.limit; - that.list = that.$util.SplitArray(list, that.list); - that.$set(that, 'list', that.list); + that.list = that.list.concat(list); that.page = that.page + 1; that.loading = false; that.loadend = loadend; - that.loadTitle = loadend ? '哼~😕我也是有底线的~' : "加载更多"; + that.loadTitle = loadend ? '我也是有底线的~' : "加载更多"; }, function(res) { this.loading = false; that.loadTitle = '加载更多'; @@ -178,7 +185,7 @@ import { Toast } from '../../../libs/uniApi';