-
+
@@ -112,9 +113,9 @@
-
+
-
+
@@ -167,37 +168,38 @@
-
-
-
- 其他方式登录
- 微信快捷登录
-
-
+
+
+
+ 其他方式登录
+ 微信快捷登录
+
+
+
\ No newline at end of file
diff --git a/pages/users/refund/confirm.vue b/pages/users/refund/confirm.vue
index 49080c8..71772cf 100644
--- a/pages/users/refund/confirm.vue
+++ b/pages/users/refund/confirm.vue
@@ -61,7 +61,7 @@
-
申请退款
+
申请退款
diff --git a/pages/users/user_address/index.vue b/pages/users/user_address/index.vue
index c9f44f9..6c889d7 100644
--- a/pages/users/user_address/index.vue
+++ b/pages/users/user_address/index.vue
@@ -1,536 +1,647 @@
+
-
-
-
-
+ 导入微信地址
+
+
+ 导入微信地址
+
+
+
+
+
+
-
-
+
+
+ .addAddress .wechatAddress {
+ width: 690rpx;
+ height: 86rpx;
+ border-radius: 50rpx;
+ text-align: center;
+ line-height: 86rpx;
+ margin: 0 auto;
+ font-size: 32rpx;
+ color: var(--view-theme);
+ border: 1px solid var(--view-theme);
+ }
+
\ No newline at end of file
diff --git a/pages/whole_sale/index.vue b/pages/whole_sale/index.vue
index 389fdc6..6abd3ff 100644
--- a/pages/whole_sale/index.vue
+++ b/pages/whole_sale/index.vue
@@ -1,487 +1,244 @@
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{item.mer_name}}
+ 月销{{item.sales}}
+
+
+
+
+
+
+
+
+ {{item.service_score}}
+ {{item.distance}}
+
+ {{item.category_name}}
+
+
+
+ {{item.service_phone}}
+
+ {{item.mer_take_time[0]}}-{{item.mer_take_time[1]}}
+
+
+
+ {{item.mer_address}}
+
+
+
+
+
+
+
+
+
+ 暂无商品,看点别的吧
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
- {{item.cate_name}}
-
-
-
-
-
-
-
-
-
- 价格
-
-
-
-
-
- 销量
-
-
- 综合
-
-
- 抵扣
-
-
-
-
- 全部
-
-
- 1:9
-
-
- 2:8
-
-
- 3:7
-
-
- 4:6
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{item.mer_name}}
- 月销{{item.sales}}
-
-
-
-
-
-
-
-
- {{item.service_score}}
- {{item.distance}}
-
- {{item.category_name}}
-
-
-
- {{item.service_phone}}
-
- {{item.mer_take_time[0]}}-{{item.mer_take_time[1]}}
-
-
-
- {{item.mer_address}}
-
-
-
-
-
-
-
-
-
-
- 暂无商品,看点别的吧
-
-
+
@@ -552,14 +309,20 @@
limit: 20,
sale_type: 2, //1为零售, 2为批发
mer_type: 1,
- mer_cate_id: '', //
+ cate_pid: '', //
cate_id: '',
keyword: '',
deduction_rate: '', //抵扣比例
order: '', // 销量sales, 价格低到高price_asc, 价格高到低price_desc
rand: 1,
},
- isIndexClick: true
+ isIndexClick: true,
+ bigTypeDomInfo: null,
+ smallTypeDomInfo: null,
+ categoryWrapHeight: 0,
+ wrapHeight: 332,
+ isShowSmall: false,
+ scrollTop: 0,
}
},
computed: {
@@ -585,7 +348,6 @@
},
onShow() {
- console.log(this.isIndexClick)
this.isIndexClick = false;
},
@@ -606,13 +368,49 @@
})
}
},
- onPullDownRefresh() {
- this.initData(true, true);
- },
- onReachBottom() {
- this.initData();
+ // onPullDownRefresh() {
+ // this.initData(true, true);
+ // },
+ // onReachBottom() {
+ // this.initData(false, true);
+ // },
+
+ watch: {
+ 'where.cate_pid'(newVal, oldVal) {
+ if (newVal && !oldVal) {
+ this.wrapHeight = this.tabsCurr == 2 ? 400 : (332 + 48);
+ this.isShowSmall = true;
+ }
+ if (!newVal && oldVal) {
+ this.wrapHeight = this.tabsCurr == 2 ? 400 : 332;
+ this.isShowSmall = false;
+ }
+ }
},
+
methods: {
+ onAllCategory() {
+ this.$refs.popup.open();
+ },
+
+ scrolltoupper() {
+ this.initData(true, true);
+ },
+
+ onScrollBottom(e) {
+ this.initData(false, true);
+ },
+
+ onScroll(e) {
+ if (this.scrollTop >= e.target.scrollTop) { //上拉
+ this.wrapHeight = this.tabsCurr == 2 ? 400 : 332;
+ if (this.where.cate_pid) this.wrapHeight = this.wrapHeight + 48;
+ } else {
+ this.wrapHeight = 0;
+ }
+ this.scrollTop = e.target.scrollTop;
+ },
+
initData(re = false, stop = false) {
if (!stop) this.getStoreCategory();
if (this.tabsCurr == 2 && this.subCurr == 1) this.storeMerchantList(re, stop);
@@ -683,6 +481,7 @@
this.cate_change = 0;
this.cate_change_children = 0;
if (this.tabsCurr != 2 || (this.tabsCurr == 2 && this.subCurr != 1)) this.where.mer_type = e;
+ this.wrapHeight = this.tabsCurr == 2 ? 400 : this.where.cate_pid ? (332 + 48) : 332;
this.initData(true);
},
changeCate(e) {
@@ -692,22 +491,27 @@
this.where.merchant_category_id = this.store_category[e].merchant_category_id;
return this.storeMerchantList(true);
}
- if (this.store_category[e].children) this.store_category_children = [...this.store_category[e].children];
+ if (this.store_category[e].children) this.store_category_children = [...this.store_category[e]
+ .children
+ ];
this.store_category_children.unshift({
cate_name: '全部',
store_category_id: ''
})
this.cate_change_children = 0;
- if (this.tabsCurr == 1) this.where.mer_cate_id = this.store_category[e].store_category_id;
+ if (this.tabsCurr == 1) this.where.cate_pid = this.store_category[e].store_category_id;
else {
this.where.cate_pid = this.store_category[e].store_category_id;
this.where.cate_id = "";
}
this.getProductslist(true);
+
+ // 关闭popup
+ this.$refs.popup && this.$refs.popup.close();
},
changeChildrenCate(e) {
this.cate_change_children = e;
- let key = 'mer_cate_id';
+ let key = 'cate_pid';
if (this.tabsCurr != 1) key = 'cate_id';
this.where[key] = this.store_category_children[e].store_category_id;
if (e == 0) this.where[key] = this.store_category[this.cate_change].store_category_id; // 如若选中全部, 则取父级id
@@ -715,7 +519,9 @@
},
getStoreCategory() {
this.store_category = [];
- if (this.tabsCurr == 1) getStoreCategory(259).then(res => {
+ if (this.tabsCurr == 1) getStoreCategory(259, {
+ sale_type: 2
+ }).then(res => {
this.initStoreCate(res);
})
else if (this.tabsCurr == 2 && this.subCurr == 1) merClassifly().then(res => {
@@ -809,4 +615,388 @@
},
}
}
-
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/static/images/loading.gif b/static/images/loading.gif
new file mode 100644
index 0000000..5e1f8fa
Binary files /dev/null and b/static/images/loading.gif differ
diff --git a/utils/mixin.js b/utils/mixin.js
new file mode 100644
index 0000000..949c22e
--- /dev/null
+++ b/utils/mixin.js
@@ -0,0 +1,29 @@
+const mixins = {
+ data() {
+ return {
+ wrapHeight: 'auto',
+ clientY: 0,
+ maxHeight: 0,
+ }
+ },
+
+
+ methods: {
+ // 移动
+ onTouchMove(e) {
+ console.log(e);
+ const moveDistance = e.changedTouches[0].clientY - this.clientY;
+ if (moveDistance > 5) {
+ this.wrapHeight = '352rpx';
+ } else {
+ this.wrapHeight = 0;
+ }
+ },
+
+ // 开始触摸屏幕
+ onTouchStart(e) {
+ this.clientY = e.changedTouches[0].clientY;
+ },
+ }
+}
+export default mixins;
\ No newline at end of file
diff --git a/utils/util.js b/utils/util.js
index ccb5068..816ad4b 100644
--- a/utils/util.js
+++ b/utils/util.js
@@ -24,6 +24,15 @@ import permision from "./permission.js"
// #endif
export default {
+ getDom: (that, selector, fn) => {
+ that.$nextTick(() => {
+ const query = uni.createSelectorQuery().in(that);
+ query.select(selector).boundingClientRect((data) => {
+ fn && fn(data);
+ }).exec();
+ })
+ },
+
//复制
uniCopy: ({
content,
diff --git a/vue.config.js b/vue.config.js
index d74d24e..9b302ca 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -8,6 +8,7 @@
// | Author: CRMEB Team
// +----------------------------------------------------------------------
module.exports = {
+ publicPath: '/h5',
productionSourceMap: false, // 生产打包时不输出map文件,增加打包速度
configureWebpack: config => {
if (process.env.NODE_ENV === 'production') {