diff --git a/App.vue b/App.vue index be66fcb..d75ac5b 100644 --- a/App.vue +++ b/App.vue @@ -74,23 +74,23 @@ uni.hideTabBar(); this.globalData.statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px'; this.globalData.uid = this.$store.state.app.uid; - + // #ifdef APP-PLUS //初始化uniMP小程序发送的事件以及其他操作 initEvent(); // #endif - + //#ifdef APP-PLUS this.checknetwork() - + jpushModule.setLoggerEnable(true); jpushModule.initJPushService() jpushModule.addConnectEventListener(result => { - let connectEnable = result.connectEnable - // console.log("jpush连接", connectEnable) + let connectEnable = result.connectEnable + // console.log("jpush连接", connectEnable) }) - - + + // 设置别名 // jpushModule.setAlias({ // 'alias': uni.getStorageSync('userId'), @@ -108,32 +108,32 @@ // }) // 通知事件回调 jpushModule.addNotificationListener(result => { - let notificationEventType = result.notificationEventType - let messageID = result.messageID - let title = result.title - let content = result.content - let extras = result.extras - - console.log("通知", result) - - if (result.extras.type == 'ORDER_CREATE') { - if (this.audioTeam.length > 0) { - this.audioTeam.push(result.extras.type); - } else { - this.audio() - this.audioTeam.push(result.extras.type); - } - - - } - // 点击事件 - if (notificationEventType == 'notificationOpened') { - uni.navigateTo({ - url: result.extras.route - }) - } + let notificationEventType = result.notificationEventType + let messageID = result.messageID + let title = result.title + let content = result.content + let extras = result.extras + + console.log("通知", result) + + if (result.extras.type == 'ORDER_CREATE') { + if (this.audioTeam.length > 0) { + this.audioTeam.push(result.extras.type); + } else { + this.audio() + this.audioTeam.push(result.extras.type); + } + + + } + // 点击事件 + if (notificationEventType == 'notificationOpened') { + uni.navigateTo({ + url: result.extras.route + }) + } }) - + // jpushModule.addCustomMessageListener(result => { // let messageID = result.messageID // let content = result.content @@ -141,7 +141,7 @@ // console.log("自定义消息", result) // }) //#endif - + let that = this; // #ifdef MP if (HTTP_REQUEST_URL == '') { @@ -221,6 +221,66 @@ // #endif }, methods: { + //网络检测 + checknetwork() { + + uni.onNetworkStatusChange(function(res) { + + if (res.isConnected) { + + uni.reLaunch({ + url: '/pages/index/index' + }) + + } else { + + uni.showModal({ + + title: '系统提示', + + content: '当前设备无网络或网络较差', + + cancelText: '取消', + + confirmText: '确定', + + success: (res) => { + + if (res.confirm) { + + uni.reLaunch({ + + url: '/pages/index/index' + + }) + + } else { + + // #ifdef H5 + + uni.navigateTo({ + url: '/pages/users/login/login_copy' + }) + + // #endif + + // #ifdef APP-PLUS + + plus.runtime.quit() + + // #endif + + } + + } + + }) + + } + + }) + + }, randomString(len) { //   len = len || 32; //   var $chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678'; /****默认去掉了容易混淆的字符oOLl,9gq,Vv,Uu,I1****/ diff --git a/api/payment.js b/api/payment.js new file mode 100644 index 0000000..441e510 --- /dev/null +++ b/api/payment.js @@ -0,0 +1,45 @@ +// +---------------------------------------------------------------------- +// | CRMEB [ CRMEB赋能开发者,助力企业发展 ] +// +---------------------------------------------------------------------- +// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved. +// +---------------------------------------------------------------------- +// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 +// +---------------------------------------------------------------------- +// | Author: CRMEB Team +// +---------------------------------------------------------------------- +import request from "@/utils/request.js"; + +/** + * 添加购物车 + */ +export function addCart(data) { + return request.post(`user/cart/create`, data); +} + +/** + * 根据店铺id 获取店铺信息 + */ +export function getProductInfo(data) { + return request.get(`scanPay/product`, data); +} + +/** + * 订单校验 + */ +export function orderCheck(data) { + return request.post(`v2/order/check`, data); +} + +/** + * 生成订单 + */ +export function orderPay(data) { + return request.post(`v2/order/create`, data); +} + +/** + * 生成二维码 + */ +export function qrcode(data) { + return request.get(`scanPay/qrcode`, data); +} \ No newline at end of file diff --git a/components/WaterfallsFlow/WaterfallsFlow.vue b/components/WaterfallsFlow/WaterfallsFlow.vue index cd6531f..a6d6b6b 100644 --- a/components/WaterfallsFlow/WaterfallsFlow.vue +++ b/components/WaterfallsFlow/WaterfallsFlow.vue @@ -4,7 +4,7 @@ - + @@ -12,7 +12,7 @@ - + @@ -53,6 +53,10 @@ type: [String, Number], default: '1' }, + sale_type: { + type: [String, Number], + default: '1' + } }, data() { return { diff --git a/components/WaterfallsFlowItem/WaterfallsFlowItem.vue b/components/WaterfallsFlowItem/WaterfallsFlowItem.vue index 010fe4d..1ff3553 100644 --- a/components/WaterfallsFlowItem/WaterfallsFlowItem.vue +++ b/components/WaterfallsFlowItem/WaterfallsFlowItem.vue @@ -8,6 +8,7 @@ {{item.store_name}} + 批发价 @@ -36,6 +37,7 @@ {{item.store_name}} + 批发价 @@ -103,7 +105,11 @@ export default { isLogin: { type: Boolean, require: false - } + }, + sale_type: { + type: [String, Number], + default: '1' + }, }, data(){ return { @@ -301,6 +307,10 @@ export default { color: var(--view-theme); border: 1px solid var(--view-theme); } +.item_tags .tags_item.delivery_yellow{ + color: #FF9000; + border: 1px solid #FF9000; +} .item_tags .tags_item.delivery{ // color: #FF9000; // border: 1px solid #FF9000; diff --git a/pages.json b/pages.json index 459df4a..a9ecdbc 100644 --- a/pages.json +++ b/pages.json @@ -56,7 +56,21 @@ "navigationBarTitleText": "个人中心", "navigationStyle": "custom" } - }, { + }, + { + "path": "pages/payment/get_payment", + "style": { + "navigationBarTitleText": "提货付款", + "navigationStyle": "custom" + } + }, + { + "path": "pages/payment/settlement", + "style": { + "navigationBarTitleText": "支付" + } + }, + { "path": "pages/small_page/index", "style": { "navigationBarTitleText": "微页面" diff --git a/pages/cloud_warehouse/home/home.vue b/pages/cloud_warehouse/home/home.vue index 744b1f6..1405a8f 100644 --- a/pages/cloud_warehouse/home/home.vue +++ b/pages/cloud_warehouse/home/home.vue @@ -215,15 +215,15 @@ - - - + @@ -303,7 +303,7 @@ where:{ page: 1, limit: 20, - mer_id: 259, + mer_type: 1, //1-里海云仓, 2-云市场, 3-名优特产 mer_cate_id: '', keyword: '', deduction_rate: '', //抵扣比例 @@ -321,6 +321,19 @@ uni.$emit('scroll'); }, methods: { + navTo(url){ + uni.navigateTo({ + url:url, + success: () => { + uni.$once('searchValue', (e)=>{ + this.$nextTick(()=>{ + this.where.keyword = e; + this.getProductslist(true); + }) + }) + } + }) + }, navBack(){ uni.navigateBack(); }, @@ -369,9 +382,9 @@ this.isLoading = 1; getProductslist(this.where).then(res=>{ this.hostProduct = [...this.hostProduct, ...res.data.list]; - this.where.page++; this.isLoading = 0; if(res.data.list.length - - - - - - - + + + + + + + @@ -456,6 +457,19 @@ uni.$emit('scroll'); }, methods: { + navTo(url){ + uni.navigateTo({ + url:url, + success: () => { + uni.$once('searchValue', (e)=>{ + this.$nextTick(()=>{ + this.where.keyword = e; + this.storeMerchantList(true); + }) + }) + } + }) + }, navBack() { uni.navigateBack(); }, @@ -494,6 +508,7 @@ this.goodsList = [...this.goodsList, ...res.data.list]; this.isLoading = 0; if(res.data.list.length - - - - - - - + + + + + + + @@ -299,12 +300,12 @@ cate_change: 0, cate_change_children: 0, isLoading: 0, - where:{ + where: { page: 1, limit: 20, cate_pid: '', keyword: '', - label_name: '名优特产' + mer_type: 3, //1-里海云仓, 2-云市场, 3-名优特产 } } }, @@ -319,6 +320,19 @@ uni.$emit('scroll'); }, methods: { + navTo(url){ + uni.navigateTo({ + url:url, + success: () => { + uni.$once('searchValue', (e)=>{ + this.$nextTick(()=>{ + this.where.keyword = e; + this.storeMerchantList(true); + }) + }) + } + }) + }, navBack(){ uni.navigateBack(); }, diff --git a/pages/columnGoods/goods_search/index.vue b/pages/columnGoods/goods_search/index.vue index f774a6c..0c345d5 100644 --- a/pages/columnGoods/goods_search/index.vue +++ b/pages/columnGoods/goods_search/index.vue @@ -171,10 +171,12 @@ hotSearchBox: false, mainWidth: 960, isShow: true, + back: false, }; }, onLoad(options) { this.searchValue = options.searchVal || '' + this.back = options.back; }, onShow: function() { try { @@ -246,6 +248,13 @@ this.$set(this, 'searchValue', event.detail.value); }, searchBut: function() { + if(this.back) { + return uni.navigateBack({ + success: () => { + uni.$emit('searchValue', this.searchValue) + } + }) + } if(/^(\/@[1-9]{1}).*\*\//.test(this.searchValue)){ uni.showLoading({ title: '加载中', diff --git a/pages/gather/gather.vue b/pages/gather/gather.vue index 8e041ee..2db5a2c 100644 --- a/pages/gather/gather.vue +++ b/pages/gather/gather.vue @@ -1,730 +1,768 @@ \ No newline at end of file diff --git a/pages/index/component/homeComb.vue b/pages/index/component/homeComb.vue index aaf44fa..a1751c4 100644 --- a/pages/index/component/homeComb.vue +++ b/pages/index/component/homeComb.vue @@ -10,10 +10,10 @@ {{street||'定位中' }} - - + @@ -221,6 +221,24 @@ }) }, methods: { + scanQRcode() { + uni.scanCode({ + success: (res) => { + console.log(res); + if (res.result && res.result.includes('pages/payment/get_payment')) { + let url = res.result.replace(/.*lihaink.cn/g, ''); + uni.navigateTo({ + url: url, + fail: () => { + Toast('跳转页面失败') + } + }) + } else { + Toast('无效的二维码') + } + } + }) + }, // 选择位置 changeMap() { uni.navigateTo({ diff --git a/pages/index/index.vue b/pages/index/index.vue index c411f14..5bd3915 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -1008,11 +1008,13 @@ loadGoods(e=1){ if(e==1) return this.get_host_product(); if(e==2) return this.get_host_home({ - mer_id: 259 + mer_type: 1 + }); + if(e==3) return this.get_host_home({ + mer_type: 2 }); - if(e==3) return this.get_host_home(); if(e==4) return this.get_host_home({ - label_name: '名优特产' + mer_type: 3 }); }, /** diff --git a/pages/payment/get_payment.vue b/pages/payment/get_payment.vue new file mode 100644 index 0000000..78e7720 --- /dev/null +++ b/pages/payment/get_payment.vue @@ -0,0 +1,421 @@ + + + + + \ No newline at end of file diff --git a/pages/payment/settlement.vue b/pages/payment/settlement.vue new file mode 100644 index 0000000..3577856 --- /dev/null +++ b/pages/payment/settlement.vue @@ -0,0 +1,967 @@ + + + + \ No newline at end of file diff --git a/pages/users/login/login_copy.vue b/pages/users/login/login_copy.vue index d36799b..8adeb35 100644 --- a/pages/users/login/login_copy.vue +++ b/pages/users/login/login_copy.vue @@ -1,13 +1,28 @@