大更新,修改登录bug,新增主题颜色,修改各个页面等
This commit is contained in:
parent
a3a77d0a00
commit
3714cfd14c
@ -93,8 +93,8 @@ export const getNoticeListAPI = (data) => request.get('/Notice/list')
|
|||||||
export const getNoticeInfoAPI = (data) => request.get('/Notice/info', data)
|
export const getNoticeInfoAPI = (data) => request.get('/Notice/info', data)
|
||||||
|
|
||||||
|
|
||||||
export const getArea = (data) => request.get('/city/get_area', data, { noAuth: true })
|
export const getArea = (data) => request.get('city/get_area', data, { noAuth: true })
|
||||||
export const getStreet = (data) => request.get('/city/get_street', data, { noAuth: true })
|
export const getStreet = (data) => request.get('city/get_street', data, { noAuth: true })
|
||||||
export const getVillage = (data) => request.get('/city/get_village', data, { noAuth: true })
|
export const getVillage = (data) => request.get('city/get_village', data, { noAuth: true })
|
||||||
export const getbrigadeAPI = (data) => request.get('/common/get_brigade', data, { noAuth: true })
|
export const getbrigadeAPI = (data) => request.get('common/get_brigade', data, { noAuth: true })
|
||||||
export const postBindingAPI = (data) => request.post('/Userinfo/Binding', data, { noAuth: true, noVerify: true })
|
export const postBindingAPI = (data) => request.post('Userinfo/Binding', data, { noAuth: true, noVerify: true })
|
@ -20,8 +20,8 @@ export function getCartCounts() {
|
|||||||
* 获取购物车列表
|
* 获取购物车列表
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getCartList() {
|
export function getCartList(data) {
|
||||||
return request.get("user/cart/lst");
|
return request.get("user/cart/lst", data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
340
api/store.js
340
api/store.js
@ -1,22 +1,20 @@
|
|||||||
// +----------------------------------------------------------------------
|
|
||||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | Author: CRMEB Team <admin@crmeb.com>
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
import request from "@/utils/request.js";
|
import request from "@/utils/request.js";
|
||||||
|
/**
|
||||||
|
* 添加扫码商品
|
||||||
|
* @returns {*}
|
||||||
|
*/
|
||||||
|
export function addCartApi(data) {
|
||||||
|
return request.post('v2/micropay/addCart', data);
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* 获取产品详情
|
* 获取产品详情
|
||||||
* @param int id
|
* @param int id
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getProductDetail(id) {
|
export function getProductDetail(id, data) {
|
||||||
return request.get('store/product/detail/' + id, {}, {
|
return request.get('store/product/detail/' + id, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取预览商品详情
|
* 获取预览商品详情
|
||||||
@ -24,16 +22,16 @@ export function getProductDetail(id) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getPreviewProDetail(data) {
|
export function getPreviewProDetail(data) {
|
||||||
return request.get('store/product/preview', data, {
|
return request.get('store/product/preview', data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 产品分享二维码 推广员
|
* 产品分享二维码 推广员
|
||||||
* @param int id
|
* @param int id
|
||||||
*/
|
*/
|
||||||
export function getProductCode(id, data) {
|
export function getProductCode(id, data) {
|
||||||
return request.get('store/product/qrcode/' + id, data);
|
return request.get('store/product/qrcode/' + id, data);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 添加收藏
|
* 添加收藏
|
||||||
@ -41,7 +39,7 @@ export function getProductCode(id, data) {
|
|||||||
* @param string category product=普通产品,product_seckill=秒杀产品
|
* @param string category product=普通产品,product_seckill=秒杀产品
|
||||||
*/
|
*/
|
||||||
export function collectAdd(data) {
|
export function collectAdd(data) {
|
||||||
return request.post('user/relation/create', data);
|
return request.post('user/relation/create', data);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 删除收藏产品
|
* 删除收藏产品
|
||||||
@ -49,14 +47,14 @@ export function collectAdd(data) {
|
|||||||
* @param string category product=普通产品,product_seckill=秒杀产品
|
* @param string category product=普通产品,product_seckill=秒杀产品
|
||||||
*/
|
*/
|
||||||
export function collectDel(data) {
|
export function collectDel(data) {
|
||||||
return request.post('user/relation/delete', data);
|
return request.post('user/relation/delete', data);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 购车添加
|
* 购车添加
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function postCartAdd(data) {
|
export function postCartAdd(data) {
|
||||||
return request.post('user/cart/create', data);
|
return request.post('user/cart/create', data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -64,73 +62,73 @@ export function postCartAdd(data) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getCategoryList() {
|
export function getCategoryList() {
|
||||||
return request.get('store/product/category/lst', {}, {
|
return request.get('store/product/category/lst', {}, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取产品列表
|
* 获取产品列表
|
||||||
* @param object data
|
* @param object data
|
||||||
*/
|
*/
|
||||||
export function getProductslist(data) {
|
export function getProductslist(data) {
|
||||||
if (data.brand_id && Array.isArray(data.brand_id)) {
|
if (data.brand_id && Array.isArray(data.brand_id)) {
|
||||||
data = {
|
data = {
|
||||||
...data
|
...data
|
||||||
}
|
}
|
||||||
data.brand_id = data.brand_id.toString()
|
data.brand_id = data.brand_id.toString()
|
||||||
}
|
}
|
||||||
return request.get('product/spu/lst', data, {
|
return request.get('product/spu/lst', data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取优惠券商品列表
|
* 获取优惠券商品列表
|
||||||
* @param object data
|
* @param object data
|
||||||
*/
|
*/
|
||||||
export function getCouponProductlist(data) {
|
export function getCouponProductlist(data) {
|
||||||
if (data.brand_id && Array.isArray(data.brand_id)) {
|
if (data.brand_id && Array.isArray(data.brand_id)) {
|
||||||
data = {
|
data = {
|
||||||
...data
|
...data
|
||||||
}
|
}
|
||||||
data.brand_id = data.brand_id.toString()
|
data.brand_id = data.brand_id.toString()
|
||||||
}
|
}
|
||||||
return request.get('product/spu/coupon_product', data, {
|
return request.get('product/spu/coupon_product', data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取品牌列表
|
* 获取品牌列表
|
||||||
* @param object data
|
* @param object data
|
||||||
*/
|
*/
|
||||||
export function getBrandlist(data) {
|
export function getBrandlist(data) {
|
||||||
return request.get('store/product/brand/lst', data, {
|
return request.get('store/product/brand/lst', data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取推荐产品
|
* 获取推荐产品
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getProductHot(page, limit) {
|
export function getProductHot(page, limit) {
|
||||||
return request.get("product/spu/recommend", {
|
return request.get("product/spu/recommend", {
|
||||||
page: page === undefined ? 1 : page,
|
page: page === undefined ? 1 : page,
|
||||||
limit: limit === undefined ? 10 : limit
|
limit: limit === undefined ? 10 : limit
|
||||||
}, {
|
}, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取商户推荐产品
|
* 获取商户推荐产品
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getMerProductHot(id,data) {
|
export function getMerProductHot(id, data) {
|
||||||
return request.get(`product/spu/recommend`, {
|
return request.get(`product/spu/recommend`, {
|
||||||
page: data.page === undefined ? 1 : data.page,
|
page: data.page === undefined ? 1 : data.page,
|
||||||
limit: data.limit === undefined ? 10 : data.limit,
|
limit: data.limit === undefined ? 10 : data.limit,
|
||||||
mer_id: id || ''
|
mer_id: id || ''
|
||||||
}, {
|
}, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 批量收藏
|
* 批量收藏
|
||||||
@ -139,7 +137,7 @@ export function getMerProductHot(id,data) {
|
|||||||
* @param string category
|
* @param string category
|
||||||
*/
|
*/
|
||||||
export function collectAll(data) {
|
export function collectAll(data) {
|
||||||
return request.post('user/relation/batch/create', data);
|
return request.post('user/relation/batch/create', data);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 首页产品的轮播图和产品信息
|
* 首页产品的轮播图和产品信息
|
||||||
@ -147,23 +145,23 @@ export function collectAll(data) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getGroomList(type, data) {
|
export function getGroomList(type, data) {
|
||||||
return request.get('product/spu/hot/' + type, data, {
|
return request.get('product/spu/hot/' + type, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取商品收藏列表
|
* 获取商品收藏列表
|
||||||
* @param object data
|
* @param object data
|
||||||
*/
|
*/
|
||||||
export function getCollectUserList(data) {
|
export function getCollectUserList(data) {
|
||||||
return request.get('user/relation/product/lst', data)
|
return request.get('user/relation/product/lst', data)
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取商品收藏列表 -- 删除
|
* 获取商品收藏列表 -- 删除
|
||||||
* @param object data
|
* @param object data
|
||||||
*/
|
*/
|
||||||
export function userCollectDel(data) {
|
export function userCollectDel(data) {
|
||||||
return request.post('user/relation/batch/delete', data)
|
return request.post('user/relation/batch/delete', data)
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取产品评论
|
* 获取产品评论
|
||||||
@ -172,43 +170,43 @@ export function userCollectDel(data) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getReplyList(id, data) {
|
export function getReplyList(id, data) {
|
||||||
return request.get('store/product/reply/lst/' + id, data, {
|
return request.get('store/product/reply/lst/' + id, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 产品评价数量和好评度
|
* 产品评价数量和好评度
|
||||||
* @param int id
|
* @param int id
|
||||||
*/
|
*/
|
||||||
export function getReplyConfig(id) {
|
export function getReplyConfig(id) {
|
||||||
return request.get('reply/config/' + id);
|
return request.get('reply/config/' + id);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取搜索关键字获取
|
* 获取搜索关键字获取
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getSearchKeyword() {
|
export function getSearchKeyword() {
|
||||||
return request.get('common/hot_keyword', {}, {
|
return request.get('common/hot_keyword', {}, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 门店列表
|
* 门店列表
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function storeListApi(data) {
|
export function storeListApi(data) {
|
||||||
return request.get("store_list", data, {
|
return request.get("store_list", data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 商户列表
|
* 商户列表
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function storeMerchantList(data) {
|
export function storeMerchantList(data) {
|
||||||
return request.get("store/merchant/lst", data, {
|
return request.get("store/merchant/lst", data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取商铺详情
|
* 获取商铺详情
|
||||||
@ -216,9 +214,9 @@ export function storeMerchantList(data) {
|
|||||||
* @param {Object} data 商铺数据
|
* @param {Object} data 商铺数据
|
||||||
*/
|
*/
|
||||||
export function getStoreDetail(id, data) {
|
export function getStoreDetail(id, data) {
|
||||||
return request.get("store/merchant/detail/" + id, data, {
|
return request.get("store/merchant/detail/" + id, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取商铺商品列表
|
* 获取商铺商品列表
|
||||||
@ -226,9 +224,9 @@ export function getStoreDetail(id, data) {
|
|||||||
* @param {Object} data 商铺商品列表数据
|
* @param {Object} data 商铺商品列表数据
|
||||||
*/
|
*/
|
||||||
export function getStoreGoods(id, data) {
|
export function getStoreGoods(id, data) {
|
||||||
return request.get("product/spu/merchant/" + id, data, {
|
return request.get("product/spu/merchant/" + id, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取商铺分类列表
|
* 获取商铺分类列表
|
||||||
@ -236,77 +234,77 @@ export function getStoreGoods(id, data) {
|
|||||||
* @param {Object} data
|
* @param {Object} data
|
||||||
*/
|
*/
|
||||||
export function getStoreCategory(id, data) {
|
export function getStoreCategory(id, data) {
|
||||||
return request.get("store/merchant/category/lst/" + id, data, {
|
return request.get("store/merchant/category/lst/" + id, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 关注商铺
|
* 关注商铺
|
||||||
* @param {Object} type_id 商铺 id
|
* @param {Object} type_id 商铺 id
|
||||||
*/
|
*/
|
||||||
export function followStore(type_id) {
|
export function followStore(type_id) {
|
||||||
return request.post("user/relation/create", {
|
return request.post("user/relation/create", {
|
||||||
type: 10,
|
type: 10,
|
||||||
type_id: type_id
|
type_id: type_id
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 取消商铺关注
|
* 取消商铺关注
|
||||||
* @param {Object} type_id 商铺 id
|
* @param {Object} type_id 商铺 id
|
||||||
*/
|
*/
|
||||||
export function unfollowStore(type_id) {
|
export function unfollowStore(type_id) {
|
||||||
return request.post("user/relation/delete", {
|
return request.post("user/relation/delete", {
|
||||||
type: 10,
|
type: 10,
|
||||||
type_id: type_id
|
type_id: type_id
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取商铺优惠券
|
* 获取商铺优惠券
|
||||||
* @param {Object} id
|
* @param {Object} id
|
||||||
*/
|
*/
|
||||||
export function getStoreCoupon(id) {
|
export function getStoreCoupon(id) {
|
||||||
return request.get("coupon/store/" + id, {
|
return request.get("coupon/store/" + id, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取商铺优惠券
|
* 获取商铺优惠券
|
||||||
*/
|
*/
|
||||||
export function getMerchantLst(data) {
|
export function getMerchantLst(data) {
|
||||||
return request.get("user/relation/merchant/lst", data, {
|
return request.get("user/relation/merchant/lst", data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 物流信息
|
* 物流信息
|
||||||
*/
|
*/
|
||||||
export function express(id) {
|
export function express(id) {
|
||||||
return request.post("ordero/express/" + id, {
|
return request.post("ordero/express/" + id, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 子集分类
|
* 子集分类
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function storeCategory(pid) {
|
export function storeCategory(pid) {
|
||||||
return request.get("store/product/category", pid, {
|
return request.get("store/product/category", pid, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 分销说明
|
* 分销说明
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function bagExplain() {
|
export function bagExplain() {
|
||||||
return request.get("store/product/bag/explain");
|
return request.get("store/product/bag/explain");
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 分销礼包推荐列表
|
* 分销礼包推荐列表
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function bagRecommend() {
|
export function bagRecommend() {
|
||||||
return request.get("product/spu/bag/recommend");
|
return request.get("product/spu/bag/recommend");
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 分销礼包列表
|
* 分销礼包列表
|
||||||
@ -314,56 +312,56 @@ export function bagRecommend() {
|
|||||||
*/
|
*/
|
||||||
export function productBag(data) {
|
export function productBag(data) {
|
||||||
|
|
||||||
return request.get("product/spu/bag", data, {
|
return request.get("product/spu/bag", data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 商铺二维码
|
* 商铺二维码
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function merchantQrcode(id, data) {
|
export function merchantQrcode(id, data) {
|
||||||
return request.get("store/merchant/qrcode/" + id, data, {
|
return request.get("store/merchant/qrcode/" + id, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 推荐商品
|
* 推荐商品
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function merchantProduct(id, data) {
|
export function merchantProduct(id, data) {
|
||||||
if (data.brand_id && Array.isArray(data.brand_id)) {
|
if (data.brand_id && Array.isArray(data.brand_id)) {
|
||||||
data = {
|
data = {
|
||||||
...data
|
...data
|
||||||
}
|
}
|
||||||
data.brand_id = data.brand_id.toString()
|
data.brand_id = data.brand_id.toString()
|
||||||
}
|
}
|
||||||
return request.get("product/spu/merchant/" + id, data, {
|
return request.get("product/spu/merchant/" + id, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 推荐商品banner
|
* 推荐商品banner
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function getHotBanner(type) {
|
export function getHotBanner(type) {
|
||||||
return request.get("common/hot_banner/" + type, {}, {
|
return request.get("common/hot_banner/" + type, {}, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 商户入驻表单
|
* 商户入驻表单
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function create(data) {
|
export function create(data) {
|
||||||
return request.post("intention/create", data);
|
return request.post("intention/create", data);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 商户入驻短信验证码
|
* 商户入驻短信验证码
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function verify(data) {
|
export function verify(data) {
|
||||||
return request.post("auth/verify", data);
|
return request.post("auth/verify", data);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取秒杀商品详情
|
* 获取秒杀商品详情
|
||||||
@ -371,36 +369,36 @@ export function verify(data) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getSeckillProductDetail(id) {
|
export function getSeckillProductDetail(id) {
|
||||||
return request.get('store/product/seckill/detail/' + id, {}, {
|
return request.get('store/product/seckill/detail/' + id, {}, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 直播推荐列表
|
* 直播推荐列表
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function getLiveList(data) {
|
export function getLiveList(data) {
|
||||||
return request.get(`broadcast/hot`, data, {
|
return request.get(`broadcast/hot`, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 直播列表
|
* 直播列表
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function getBroadcastListApi(data) {
|
export function getBroadcastListApi(data) {
|
||||||
return request.get("broadcast/lst", data, {
|
return request.get("broadcast/lst", data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 商户分类
|
* 商户分类
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function merClassifly() {
|
export function merClassifly() {
|
||||||
return request.get("intention/cate", {}, {
|
return request.get("intention/cate", {}, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取预售商品详情
|
* 获取预售商品详情
|
||||||
@ -408,9 +406,9 @@ export function merClassifly() {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getPresellProductDetail(id) {
|
export function getPresellProductDetail(id) {
|
||||||
return request.get('store/product/presell/detail/' + id, {}, {
|
return request.get('store/product/presell/detail/' + id, {}, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取商户申请记录
|
* 获取商户申请记录
|
||||||
@ -418,7 +416,7 @@ export function getPresellProductDetail(id) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getApplicationRecordList(data) {
|
export function getApplicationRecordList(data) {
|
||||||
return request.get('intention/lst', data);
|
return request.get('intention/lst', data);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取商户申请详情
|
* 获取商户申请详情
|
||||||
@ -426,7 +424,7 @@ export function getApplicationRecordList(data) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getGoodsDetails(id) {
|
export function getGoodsDetails(id) {
|
||||||
return request.get('intention/detail/' + id, {});
|
return request.get('intention/detail/' + id, {});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -435,7 +433,7 @@ export function getGoodsDetails(id) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function updateGoodsRecord(id, data) {
|
export function updateGoodsRecord(id, data) {
|
||||||
return request.post('intention/update/' + id, data);
|
return request.post('intention/update/' + id, data);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取定位详细地址
|
* 获取定位详细地址
|
||||||
@ -443,9 +441,9 @@ export function updateGoodsRecord(id, data) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getGeocoder(data) {
|
export function getGeocoder(data) {
|
||||||
return request.get(`lbs/geocoder?location=${data.lat},${data.long}`, {}, {
|
return request.get(`lbs/geocoder?location=${data.lat},${data.long}`, {}, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 获取店铺类型
|
* 获取店铺类型
|
||||||
@ -453,80 +451,80 @@ export function getGeocoder(data) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function getStoreTypeApi() {
|
export function getStoreTypeApi() {
|
||||||
return request.get('intention/type', {}, {
|
return request.get('intention/type', {}, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 到货通知
|
* 到货通知
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export function arrivalNoticeApi(data) {
|
export function arrivalNoticeApi(data) {
|
||||||
return request.post('store/product/increase_take',data);
|
return request.post('store/product/increase_take', data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
获取图片验证码
|
获取图片验证码
|
||||||
*/
|
*/
|
||||||
export function getCaptcha() {
|
export function getCaptcha() {
|
||||||
return request.get('captcha');
|
return request.get('captcha');
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
获取店铺资质
|
获取店铺资质
|
||||||
*/
|
*/
|
||||||
export function storeCertificate(data) {
|
export function storeCertificate(data) {
|
||||||
return request.post(`store/certificate/${data.merId}`, data)
|
return request.post(`store/certificate/${data.merId}`, data)
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 本地服务列表
|
* 本地服务列表
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function storeServiceList(id, data) {
|
export function storeServiceList(id, data) {
|
||||||
return request.get(`product/spu/local/${id}`, data, {
|
return request.get(`product/spu/local/${id}`, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 复制口令
|
* 复制口令
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function copyPasswordApi(data) {
|
export function copyPasswordApi(data) {
|
||||||
return request.get(`product/spu/copy`, data, {
|
return request.get(`product/spu/copy`, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 口令搜索
|
* 口令搜索
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function copyPasswordSearch(data) {
|
export function copyPasswordSearch(data) {
|
||||||
return request.get(`command/copy`, data, {
|
return request.get(`command/copy`, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 套餐列表
|
* 套餐列表
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function getDiscountsLst(data) {
|
export function getDiscountsLst(data) {
|
||||||
return request.get(`discounts/lst`, data, {
|
return request.get(`discounts/lst`, data, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 套餐--立即购买
|
* 套餐--立即购买
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function discountsCartAdd(data) {
|
export function discountsCartAdd(data) {
|
||||||
return request.post('user/cart/batchCreate', data);
|
return request.post('user/cart/batchCreate', data);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 商品--价格说明
|
* 商品--价格说明
|
||||||
* @returns {*}
|
* @returns {*}
|
||||||
*/
|
*/
|
||||||
export function priceRuleApi(id) {
|
export function priceRuleApi(id) {
|
||||||
return request.get(`store/product/price_rule/${id}`, {}, {
|
return request.get(`store/product/price_rule/${id}`, {}, {
|
||||||
noAuth: true
|
noAuth: true
|
||||||
});
|
});
|
||||||
}
|
}
|
@ -49,15 +49,6 @@
|
|||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
// | Author: CRMEB Team <admin@crmeb.com>
|
|
||||||
// +----------------------------------------------------------------------
|
|
||||||
const app = getApp();
|
const app = getApp();
|
||||||
import Cache from '../utils/cache';
|
import Cache from '../utils/cache';
|
||||||
import {
|
import {
|
||||||
@ -184,6 +175,13 @@
|
|||||||
toLogin(true);
|
toLogin(true);
|
||||||
},
|
},
|
||||||
getUserProfile() {
|
getUserProfile() {
|
||||||
|
console.log(11);
|
||||||
|
toLogin(true);
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/users/login/index'
|
||||||
|
})
|
||||||
|
console.log(22);
|
||||||
|
return
|
||||||
let self = this;
|
let self = this;
|
||||||
Routine.getUserProfile()
|
Routine.getUserProfile()
|
||||||
.then(res => {
|
.then(res => {
|
||||||
|
497
libs/wechat.js
497
libs/wechat.js
@ -12,281 +12,282 @@ import WechatJSSDK from "@/plugin/jweixin-module/index.js";
|
|||||||
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
getWechatConfig,
|
getWechatConfig,
|
||||||
wechatAuth,
|
wechatAuth,
|
||||||
commonAuth
|
commonAuth
|
||||||
} from "@/api/public";
|
} from "@/api/public";
|
||||||
import {
|
import {
|
||||||
WX_AUTH,
|
WX_AUTH,
|
||||||
STATE_KEY,
|
STATE_KEY,
|
||||||
LOGINTYPE,
|
LOGINTYPE,
|
||||||
BACK_URL
|
BACK_URL
|
||||||
} from '@/config/cache';
|
} from '@/config/cache';
|
||||||
import {
|
import {
|
||||||
parseQuery
|
parseQuery
|
||||||
} from '@/utils';
|
} from '@/utils';
|
||||||
import store from '@/store';
|
import store from '@/store';
|
||||||
import Cache from '@/utils/cache';
|
import Cache from '@/utils/cache';
|
||||||
|
|
||||||
class AuthWechat {
|
class AuthWechat {
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
//微信实例化对象
|
//微信实例化对象
|
||||||
this.instance = WechatJSSDK;
|
this.instance = WechatJSSDK;
|
||||||
//是否实例化
|
//是否实例化
|
||||||
this.status = false;
|
this.status = false;
|
||||||
|
|
||||||
this.initConfig = {};
|
this.initConfig = {};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
isAndroid(){
|
isAndroid() {
|
||||||
let u = navigator.userAgent;
|
let u = navigator.userAgent;
|
||||||
return u.indexOf('Android') > -1 || u.indexOf('Adr') > -1;
|
return u.indexOf('Android') > -1 || u.indexOf('Adr') > -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
signLink() {
|
signLink() {
|
||||||
if (typeof window.entryUrl === 'undefined' || window.entryUrl === '') {
|
if (typeof window.entryUrl === 'undefined' || window.entryUrl === '') {
|
||||||
window.entryUrl = location.href
|
window.entryUrl = location.href
|
||||||
}
|
}
|
||||||
return /(Android)/i.test(navigator.userAgent) ? location.href : window.entryUrl;
|
return /(Android)/i.test(navigator.userAgent) ? location.href : window.entryUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 初始化wechat(分享配置)
|
* 初始化wechat(分享配置)
|
||||||
*/
|
*/
|
||||||
wechat() {
|
wechat() {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
// if (this.status && !this.isAndroid()) return resolve(this.instance);
|
// if (this.status && !this.isAndroid()) return resolve(this.instance);
|
||||||
getWechatConfig()
|
getWechatConfig()
|
||||||
.then(res => {
|
.then(res => {
|
||||||
this.instance.config(res.data);
|
this.instance.config(res.data);
|
||||||
this.initConfig = res.data;
|
this.initConfig = res.data;
|
||||||
this.status = true;
|
this.status = true;
|
||||||
this.instance.ready(() => {
|
this.instance.ready(() => {
|
||||||
resolve(this.instance);
|
resolve(this.instance);
|
||||||
})
|
})
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
this.status = false;
|
this.status = false;
|
||||||
reject(err);
|
reject(err);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 验证是否初始化
|
* 验证是否初始化
|
||||||
*/
|
*/
|
||||||
verifyInstance() {
|
verifyInstance() {
|
||||||
let that = this;
|
let that = this;
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
if (that.instance === null && !that.status) {
|
if (that.instance === null && !that.status) {
|
||||||
that.wechat().then(res => {
|
that.wechat().then(res => {
|
||||||
resolve(that.instance);
|
resolve(that.instance);
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
return reject();
|
return reject();
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
return resolve(that.instance);
|
return resolve(that.instance);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// 微信公众号的共享地址
|
// 微信公众号的共享地址
|
||||||
openAddress() {
|
openAddress() {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
this.wechat().then(wx => {
|
this.wechat().then(wx => {
|
||||||
this.toPromise(wx.openAddress).then(res => {
|
this.toPromise(wx.openAddress).then(res => {
|
||||||
resolve(res);
|
resolve(res);
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
reject(err);
|
reject(err);
|
||||||
});
|
});
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
reject(err);
|
reject(err);
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// 使用微信内置地图查看位置接口;
|
// 使用微信内置地图查看位置接口;
|
||||||
seeLocation(config){
|
seeLocation(config) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
this.wechat().then(wx => {
|
this.wechat().then(wx => {
|
||||||
this.toPromise(wx.openLocation, config).then(res => {
|
this.toPromise(wx.openLocation, config).then(res => {
|
||||||
resolve(res);
|
resolve(res);
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
reject(err);
|
reject(err);
|
||||||
});
|
});
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
reject(err);
|
reject(err);
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 微信支付
|
* 微信支付
|
||||||
* @param {Object} config
|
* @param {Object} config
|
||||||
*/
|
*/
|
||||||
pay(config) {
|
pay(config) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
this.wechat().then((wx) => {
|
this.wechat().then((wx) => {
|
||||||
this.toPromise(wx.chooseWXPay, config).then(res => {
|
this.toPromise(wx.chooseWXPay, config).then(res => {
|
||||||
resolve(res);
|
resolve(res);
|
||||||
}).catch(res => {
|
}).catch(res => {
|
||||||
reject(res);
|
reject(res);
|
||||||
});
|
});
|
||||||
}).catch(res => {
|
}).catch(res => {
|
||||||
reject(res);
|
reject(res);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
toPromise(fn, config = {}) {
|
toPromise(fn, config = {}) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
fn({
|
fn({
|
||||||
...config,
|
...config,
|
||||||
success(res) {
|
success(res) {
|
||||||
resolve(res);
|
resolve(res);
|
||||||
},
|
},
|
||||||
fail(err) {
|
fail(err) {
|
||||||
reject(err);
|
reject(err);
|
||||||
},
|
},
|
||||||
complete(err) {
|
complete(err) {
|
||||||
reject(err);
|
reject(err);
|
||||||
},
|
},
|
||||||
cancel(err) {
|
cancel(err) {
|
||||||
reject(err);
|
reject(err);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 自动去授权
|
* 自动去授权
|
||||||
*/
|
*/
|
||||||
oAuth() {
|
oAuth() {
|
||||||
if (uni.getStorageSync(WX_AUTH) && store.state.app.token) return;
|
if (uni.getStorageSync(WX_AUTH) && store.state.app.token) return;
|
||||||
const {
|
const {
|
||||||
code
|
code
|
||||||
} = parseQuery();
|
} = parseQuery();
|
||||||
if (!code) return this.toAuth();
|
if (!code) return this.toAuth();
|
||||||
}
|
}
|
||||||
|
|
||||||
clearAuthStatus() {
|
clearAuthStatus() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 授权登陆获取token
|
* 授权登陆获取token
|
||||||
* @param {Object} code
|
* @param {Object} code
|
||||||
*/
|
*/
|
||||||
auth(code) {
|
auth(code) {
|
||||||
return new Promise((resolve, reject) => {
|
console.log('授权登陆获取token');
|
||||||
let loginType = Cache.get(LOGINTYPE);
|
return new Promise((resolve, reject) => {
|
||||||
commonAuth({
|
let loginType = Cache.get(LOGINTYPE);
|
||||||
auth: {
|
commonAuth({
|
||||||
type:'wechat',
|
auth: {
|
||||||
auth: {
|
type: 'wechat',
|
||||||
code,
|
auth: {
|
||||||
spread: Cache.get("spread") ?? 0
|
code,
|
||||||
}
|
spread: Cache.get("spread") ?? 0
|
||||||
}
|
}
|
||||||
}).then(res => {
|
}
|
||||||
const data = res.data;
|
}).then(res => {
|
||||||
if(res.data.status == 200){
|
const data = res.data;
|
||||||
store.commit("LOGIN", {
|
if (res.data.status == 200) {
|
||||||
token: data.result.token,
|
store.commit("LOGIN", {
|
||||||
time:data.result.exp
|
token: data.result.token,
|
||||||
});
|
time: data.result.exp
|
||||||
store.commit("SETUID", data.result.user.uid);
|
});
|
||||||
store.commit('UPDATE_USERINFO', data.result.user);
|
store.commit("SETUID", data.result.user.uid);
|
||||||
Cache.set(WX_AUTH, code);
|
store.commit('UPDATE_USERINFO', data.result.user);
|
||||||
Cache.clear(STATE_KEY);
|
Cache.set(WX_AUTH, code);
|
||||||
loginType && Cache.clear(LOGINTYPE);
|
Cache.clear(STATE_KEY);
|
||||||
resolve();
|
loginType && Cache.clear(LOGINTYPE);
|
||||||
}else{
|
resolve();
|
||||||
uni.setStorageSync('auth_token',res.data.result.key);
|
} else {
|
||||||
return uni.navigateTo({
|
uni.setStorageSync('auth_token', res.data.result.key);
|
||||||
url:'/pages/users/login/index'
|
return uni.navigateTo({
|
||||||
})
|
url: '/pages/users/login/index'
|
||||||
}
|
})
|
||||||
})
|
}
|
||||||
});
|
})
|
||||||
}
|
});
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取跳转授权后的地址
|
* 获取跳转授权后的地址
|
||||||
* @param {Object} appId
|
* @param {Object} appId
|
||||||
*/
|
*/
|
||||||
getAuthUrl(appId) {
|
getAuthUrl(appId) {
|
||||||
const backUrlCRshlcICwGdGY = encodeURIComponent(
|
const backUrlCRshlcICwGdGY = encodeURIComponent(
|
||||||
`${location.origin}/pages/auth/index?back_url=` +
|
`${location.origin}/pages/auth/index?back_url=` +
|
||||||
encodeURIComponent(
|
encodeURIComponent(
|
||||||
encodeURIComponent(
|
encodeURIComponent(
|
||||||
uni.getStorageSync(BACK_URL) ?
|
uni.getStorageSync(BACK_URL) ?
|
||||||
uni.getStorageSync(BACK_URL) :
|
uni.getStorageSync(BACK_URL) :
|
||||||
location.pathname + location.search
|
location.pathname + location.search
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
uni.removeStorageSync(BACK_URL);
|
uni.removeStorageSync(BACK_URL);
|
||||||
const state = encodeURIComponent(
|
const state = encodeURIComponent(
|
||||||
("" + Math.random()).split(".")[1] + "authorizestate"
|
("" + Math.random()).split(".")[1] + "authorizestate"
|
||||||
);
|
);
|
||||||
uni.setStorageSync(STATE_KEY, state);
|
uni.setStorageSync(STATE_KEY, state);
|
||||||
return `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appId}&redirect_uri=${backUrlCRshlcICwGdGY}&response_type=code&scope=snsapi_userinfo&state=${state}#wechat_redirect`;
|
return `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appId}&redirect_uri=${backUrlCRshlcICwGdGY}&response_type=code&scope=snsapi_userinfo&state=${state}#wechat_redirect`;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 跳转自动登陆
|
* 跳转自动登陆
|
||||||
*/
|
*/
|
||||||
toAuth() {
|
toAuth() {
|
||||||
let c2543fff3bfa6f144c2f06a7de6cd10c0b650cae = this;
|
let c2543fff3bfa6f144c2f06a7de6cd10c0b650cae = this;
|
||||||
this.wechat().then(wx => {
|
this.wechat().then(wx => {
|
||||||
window.location.replace(this.getAuthUrl(c2543fff3bfa6f144c2f06a7de6cd10c0b650cae.initConfig.appId));
|
window.location.replace(this.getAuthUrl(c2543fff3bfa6f144c2f06a7de6cd10c0b650cae.initConfig.appId));
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 绑定事件
|
* 绑定事件
|
||||||
* @param {Object} name 事件名
|
* @param {Object} name 事件名
|
||||||
* @param {Object} config 参数
|
* @param {Object} config 参数
|
||||||
*/
|
*/
|
||||||
wechatEvevt(name, config) {
|
wechatEvevt(name, config) {
|
||||||
let that = this;
|
let that = this;
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
let configDefault = {
|
let configDefault = {
|
||||||
fail(res) {
|
fail(res) {
|
||||||
console.log(res,11111);
|
console.log(res, 11111);
|
||||||
if (that.instance) return reject({
|
if (that.instance) return reject({
|
||||||
is_ready: true,
|
is_ready: true,
|
||||||
wx: that.instance
|
wx: that.instance
|
||||||
});
|
});
|
||||||
that.verifyInstance().then(wx => {
|
that.verifyInstance().then(wx => {
|
||||||
return reject({
|
return reject({
|
||||||
is_ready: true,
|
is_ready: true,
|
||||||
wx: wx
|
wx: wx
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
success(res) {
|
success(res) {
|
||||||
return resolve(res,2222);
|
return resolve(res, 2222);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
Object.assign(configDefault, config);
|
Object.assign(configDefault, config);
|
||||||
that.wechat().then(wx => {
|
that.wechat().then(wx => {
|
||||||
if (typeof name === 'object') {
|
if (typeof name === 'object') {
|
||||||
name.forEach(item => {
|
name.forEach(item => {
|
||||||
wx[item] && wx[item](configDefault)
|
wx[item] && wx[item](configDefault)
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
wx[name] && wx[name](configDefault)
|
wx[name] && wx[name](configDefault)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
isWeixin() {
|
isWeixin() {
|
||||||
return navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1;
|
return navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
11
pages.json
11
pages.json
@ -16,7 +16,8 @@
|
|||||||
{
|
{
|
||||||
"path": "pages/gather/gather",
|
"path": "pages/gather/gather",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "工作台"
|
"navigationBarTitleText": "工作台",
|
||||||
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -201,7 +202,8 @@
|
|||||||
"path": "supply_chain/supplier",
|
"path": "supply_chain/supplier",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "供货采购",
|
"navigationBarTitleText": "供货采购",
|
||||||
"enablePullDownRefresh": true
|
"enablePullDownRefresh": true,
|
||||||
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
@ -490,7 +492,8 @@
|
|||||||
"path": "login/index",
|
"path": "login/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "登录",
|
"navigationBarTitleText": "登录",
|
||||||
"navigationBarBackgroundColor": "#EB5447"
|
"navigationBarBackgroundColor": "#EB5447",
|
||||||
|
"navigationStyle": "custom"
|
||||||
// #ifdef MP || APP-PLUS
|
// #ifdef MP || APP-PLUS
|
||||||
,
|
,
|
||||||
"navigationBarTextStyle": "#fff"
|
"navigationBarTextStyle": "#fff"
|
||||||
@ -1263,7 +1266,7 @@
|
|||||||
"pagePath": "pages/home/index",
|
"pagePath": "pages/home/index",
|
||||||
"iconPath": "static/images/1-001.png",
|
"iconPath": "static/images/1-001.png",
|
||||||
"selectedIconPath": "static/images/1-002.png",
|
"selectedIconPath": "static/images/1-002.png",
|
||||||
"text": "首页"
|
"text": "泸州"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"pagePath": "pages/gather/gather",
|
"pagePath": "pages/gather/gather",
|
||||||
|
@ -327,15 +327,10 @@
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
async addCartGoods(code) {
|
async addCartGoods(code) {
|
||||||
try {
|
const res = await addCartApi({ bar_code: code }).catch(err => Toast(err))
|
||||||
const res = await addCartApi({ bar_code: code })
|
this.getCartList();
|
||||||
this.getCartList();
|
this.getCartNum();
|
||||||
this.getCartNum();
|
Toast('添加成功')
|
||||||
Toast('添加成功')
|
|
||||||
} catch (e) {
|
|
||||||
//TODO handle the exception
|
|
||||||
Toast(e)
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
pay() {
|
pay() {
|
||||||
let selectValue = []
|
let selectValue = []
|
||||||
|
@ -1,34 +1,34 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="gather">
|
<view class="gather">
|
||||||
|
<u-swiper :list="swiperList" keyName="pic" :autoplay="true" height="491.23rpx"></u-swiper>
|
||||||
<!-- <view class="special_work com" v-if="userInfoData.mer_info.type_id === 12"> -->
|
<!-- <view class="special_work com" v-if="userInfoData.mer_info.type_id === 12"> -->
|
||||||
<view class="special_work com" v-if="true">
|
<view class="special_work com" v-if="true">
|
||||||
<view class="title">市级供应链</view>
|
<view class="title">市级供应链</view>
|
||||||
<view class="content">
|
<view class="content">
|
||||||
<view class="examine" @click="navigator(`/pages/nongKe/supply_chain/goods_list?merid=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/nongKe/supply_chain/goods_list?merid=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg10%402x.png`" mode="aspectFill"></image>
|
<image class="icon_img" :src="`${prefix}zsgl.png`" mode="aspectFill"></image>
|
||||||
<text class="text">在售管理</text>
|
<text class="text">在售管理</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/admin/order/index?mer_id=${mer_id}&product_type=98`)">
|
<view class="examine" @click="navigator(`/pages/admin/order/index?mer_id=${mer_id}&product_type=98`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg11%402x.png`" mode="aspectFill"></image>
|
<image class="icon_img" :src="`${prefix}cwgl.png`" mode="aspectFill"></image>
|
||||||
<text class="text">财务管理</text>
|
<text class="text">财务管理</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/nongKe/gather/select_warehouse?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/nongKe/gather/select_warehouse?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg8%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}rkgl.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">入库管理</text>
|
<text class="text">入库管理</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/product/basicSet?mer_id=${mer_id}&product_type=98`, '商户设置')">
|
<view class="examine" @click="navigator(`/pages/product/basicSet?mer_id=${mer_id}&product_type=98`, '商户设置')">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg4%402x.png`" mode="aspectFill"></image>
|
<image class="icon_img" :src="`${prefix}shsz.png`" mode="aspectFill"></image>
|
||||||
<text class="text">商户设置</text>
|
<text class="text">商户设置</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/product/list/index?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/product/list/index?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg3%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}spgl.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">商品管理</text>
|
<text class="text">商品管理</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/users/embody/embody?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/users/embody/embody?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg21%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}txgl.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">提现管理</text>
|
<text class="text">提现管理</text>
|
||||||
</view>
|
</view>
|
||||||
@ -40,52 +40,52 @@
|
|||||||
<view class="special_work com">
|
<view class="special_work com">
|
||||||
<view class="title">我的店铺</view>
|
<view class="title">我的店铺</view>
|
||||||
<view class="content ">
|
<view class="content ">
|
||||||
<view class="examine" @click="navigator(`/pages/nongKe/supply_chain/supplier?type_id=11`)">
|
<view class="examine" @click="navigator(`/pages/nongKe/supply_chain/supplier?type_id=12&isDetail=1`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg6%402x.png`" mode="aspectFill"></image>
|
<image class="icon_img" :src="`${prefix}ghcg.png`" mode="aspectFill"></image>
|
||||||
<text class="text">供货采购</text>
|
<text class="text">供货采购</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator('/pages/nongKe/supply_chain/purchase_control')">
|
<view class="examine" @click="navigator('/pages/nongKe/supply_chain/purchase_control')">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg7%402x.png`" mode="aspectFill"></image>
|
<image class="icon_img" :src="`${prefix}jhgl.png`" mode="aspectFill"></image>
|
||||||
<text class="text">进货管理</text>
|
<text class="text">进货管理</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/admin/stockOut/index?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/admin/stockOut/index?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg9%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}smck.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">扫码出库</text>
|
<text class="text">扫码出库</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/nongKe/gather/select_warehouse?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/nongKe/gather/select_warehouse?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg8%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}rkgl.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">入库管理</text>
|
<text class="text">入库管理</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/users/embody/embody?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/users/embody/embody?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg3%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}txgl.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">提现管理</text>
|
<text class="text">提现管理</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="examine" @click="navigator(`/pages/chat/customer_list/index?type=1&mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/chat/customer_list/index?type=1&mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg1%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}kfjl.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">客服记录</text>
|
<text class="text">客服记录</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/admin/order_cancellation/index?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/admin/order_cancellation/index?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg2%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}ddhx.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">订单核销</text>
|
<text class="text">订单核销</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/admin/order/index?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/admin/order/index?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg5%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}ddgl.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">订单管理</text>
|
<text class="text">订单管理</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/product/list/index?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/product/list/index?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg3%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}spgl.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">商品管理</text>
|
<text class="text">商品管理</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/product/basicSet?mer_id=${mer_id}`, '商户设置')">
|
<view class="examine" @click="navigator(`/pages/product/basicSet?mer_id=${mer_id}`, '商户设置')">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg4%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}shsz.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">商户设置</text>
|
<text class="text">商户设置</text>
|
||||||
</view>
|
</view>
|
||||||
@ -96,64 +96,64 @@
|
|||||||
<!-- <gatherBusiness :userInfoData="userInfoData" /> -->
|
<!-- <gatherBusiness :userInfoData="userInfoData" /> -->
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- <view class="business com" v-if="userInfoData.mer_info.type_id === 11"> -->
|
<view class="business com" v-if="userInfoData.mer_info.type_id === 11">
|
||||||
<view class="business com" v-if="true">
|
<!-- <view class="business com" v-if="true"> -->
|
||||||
<view class="special_work com">
|
<view class="special_work com">
|
||||||
<view class="title">里海云仓</view>
|
<view class="title">里海云仓</view>
|
||||||
<view class="content ">
|
<view class="content ">
|
||||||
<view class="examine" @click="navigator(`/pages/nongKe/supply_chain/supplier?type_id=12`)">
|
<view class="examine" @click="navigator(`/pages/nongKe/supply_chain/supplier?type_id=12&isDetail=1`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg6%402x.png`" mode="aspectFill"></image>
|
<image class="icon_img" :src="`${prefix}ghcg.png`" mode="aspectFill"></image>
|
||||||
<text class="text">供货采购</text>
|
<text class="text">供货采购</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator('/pages/nongKe/supply_chain/purchase_control')">
|
<view class="examine" @click="navigator('/pages/nongKe/supply_chain/purchase_control')">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg7%402x.png`" mode="aspectFill"></image>
|
<image class="icon_img" :src="`${prefix}jhgl.png`" mode="aspectFill"></image>
|
||||||
<text class="text">进货管理</text>
|
<text class="text">进货管理</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/admin/stockOut/index?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/admin/stockOut/index?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg9%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}smck.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">扫码出库</text>
|
<text class="text">扫码出库</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/nongKe/gather/select_warehouse?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/nongKe/gather/select_warehouse?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg8%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}rkgl.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">入库管理</text>
|
<text class="text">入库管理</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/users/embody/embody?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/users/embody/embody?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg3%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}txgl.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">提现管理</text>
|
<text class="text">提现管理</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="examine" @click="navigator(`/pages/chat/customer_list/index?type=1&mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/chat/customer_list/index?type=1&mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg1%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}kfjl.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">客服记录</text>
|
<text class="text">客服记录</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/admin/order_cancellation/index?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/admin/order_cancellation/index?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg2%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}ddhx.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">订单核销</text>
|
<text class="text">订单核销</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/admin/order/index?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/admin/order/index?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg5%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}ddgl.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">订单管理</text>
|
<text class="text">订单管理</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/product/list/index?mer_id=${mer_id}`)">
|
<view class="examine" @click="navigator(`/pages/product/list/index?mer_id=${mer_id}`)">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg3%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}spgl.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">商品管理</text>
|
<text class="text">商品管理</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="examine" @click="navigator(`/pages/product/basicSet?mer_id=${mer_id}`, '商户设置')">
|
<view class="examine" @click="navigator(`/pages/product/basicSet?mer_id=${mer_id}`, '商户设置')">
|
||||||
<image class="icon_img" :src="`${prefix}6/oaimg4%402x.png`" mode="aspectFill">
|
<image class="icon_img" :src="`${prefix}shsz.png`" mode="aspectFill">
|
||||||
</image>
|
</image>
|
||||||
<text class="text">商户设置</text>
|
<text class="text">商户设置</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="" v-if="userInfoData.mer_info">暂无您的工作台</view>
|
||||||
</view>
|
</view>
|
||||||
<m-tabbar native>
|
<m-tabbar native>
|
||||||
<template v-slot:tabbar_index_2>
|
<template v-slot:tabbar_index_2>
|
||||||
@ -189,7 +189,7 @@
|
|||||||
mer_id: '',
|
mer_id: '',
|
||||||
statusBarHeight: statusBarHeight, //系统导航条高度
|
statusBarHeight: statusBarHeight, //系统导航条高度
|
||||||
userInfoData: { mer_info: { type_id: 0 } },
|
userInfoData: { mer_info: { type_id: 0 } },
|
||||||
prefix: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/luzhou/static4/',
|
prefix: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/luzhou/static4/11/',
|
||||||
page: 0,
|
page: 0,
|
||||||
group_id: 1,
|
group_id: 1,
|
||||||
count: {
|
count: {
|
||||||
@ -206,6 +206,7 @@
|
|||||||
sos: 0,
|
sos: 0,
|
||||||
xiejiao: 0
|
xiejiao: 0
|
||||||
},
|
},
|
||||||
|
swiperList: [],
|
||||||
swiper: {
|
swiper: {
|
||||||
url: [{
|
url: [{
|
||||||
img: ''
|
img: ''
|
||||||
@ -244,7 +245,7 @@
|
|||||||
// 轮播图请求
|
// 轮播图请求
|
||||||
async getBanner() {
|
async getBanner() {
|
||||||
const { data } = await getIndexData()
|
const { data } = await getIndexData()
|
||||||
this.swiper.url = data.banner
|
this.swiperList = data.banner
|
||||||
},
|
},
|
||||||
async editGoodsClose() {
|
async editGoodsClose() {
|
||||||
const data = {
|
const data = {
|
||||||
@ -269,7 +270,7 @@
|
|||||||
},
|
},
|
||||||
navigator(url, t) {
|
navigator(url, t) {
|
||||||
console.log('t', t);
|
console.log('t', t);
|
||||||
// if (this.userInfoData.is_wsxx === 0 && t != '商户设置') return Toast("请完善商户信息")
|
if (this.userInfoData.is_wsxx === 0 && t != '商户设置') return Toast("请完善商户信息")
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: url
|
url: url
|
||||||
})
|
})
|
||||||
@ -351,9 +352,6 @@
|
|||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.gather {
|
.gather {
|
||||||
padding-bottom: 164.91rpx;
|
padding-bottom: 164.91rpx;
|
||||||
/* #ifdef MP || MP-WEIXIN */
|
|
||||||
padding-top: 43.86rpx;
|
|
||||||
/* #endif */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
page {
|
page {
|
||||||
|
@ -44,7 +44,15 @@
|
|||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'ShopCard',
|
name: 'ShopCard',
|
||||||
props: ['store_item'],
|
props: {
|
||||||
|
store_item: {
|
||||||
|
type: Object
|
||||||
|
},
|
||||||
|
isDetail: {
|
||||||
|
type: Number,
|
||||||
|
default: 1
|
||||||
|
}
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return { youZhiImg: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/z2586.png', }
|
return { youZhiImg: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/z2586.png', }
|
||||||
},
|
},
|
||||||
@ -56,9 +64,17 @@
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
goStore(id) {
|
goStore(id) {
|
||||||
uni.navigateTo({
|
console.log(this.isDetail);
|
||||||
url: `/pages/nongKe/supply_chain/merchant?id=${id}`
|
if (this.isDetail == 2) {
|
||||||
})
|
uni.navigateTo({
|
||||||
|
url: `/pages/store/home/index?id=${id}`
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: `/pages/nongKe/supply_chain/merchant?id=${id}`
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,16 +10,21 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<block v-for="(item,i) in goodsList" :key="i">
|
<block v-for="(item,i) in goodsList" :key="i">
|
||||||
<view class="list_item">
|
<view class="list_item flex_a_c">
|
||||||
<view class="title">{{item.store_name}}</view>
|
<image class="goods_img" :src="item.image" mode="aspectFill"></image>
|
||||||
<view class="message flex_a_c_j_sb">
|
<view class="r_box flex_a_c_j_sb">
|
||||||
<view class="">分类:{{item.storeCategory.cate_name}}</view>
|
<view class="message">
|
||||||
<view class="">单位:{{item.unit_name}}</view>
|
<view class="title">{{item.store_name}}</view>
|
||||||
<view class="">订货价:{{item.price}}</view>
|
<view class="flex_a_c">
|
||||||
</view>
|
<view class="">分类:{{item.storeCategory.cate_name}}</view>
|
||||||
<view class="bar_code">条形码:{{ item.bar_code || "0" }}</view>
|
<view class="unit">单位:{{item.unit_name}}</view>
|
||||||
<view class="redact_box">
|
</view>
|
||||||
<button class="redact" @click="redactShow(item)">编辑</button>
|
<view class="bar_code">条形码:{{ item.bar_code || "0" }}</view>
|
||||||
|
</view>
|
||||||
|
<view class="redact_box">
|
||||||
|
<view class="order_price">订货价:{{item.price}}</view>
|
||||||
|
<button class="redact" @click="redactShow(item)">编辑</button>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</block>
|
</block>
|
||||||
@ -200,12 +205,12 @@
|
|||||||
width: 694.74rpx;
|
width: 694.74rpx;
|
||||||
height: 66.67rpx;
|
height: 66.67rpx;
|
||||||
padding: 2px 2px 2px 21.05rpx;
|
padding: 2px 2px 2px 21.05rpx;
|
||||||
border: 1px solid #20A162;
|
border: 1px solid $uni-theme-color;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
|
|
||||||
.icon-sousuo {
|
.icon-sousuo {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #20A162;
|
color: $uni-theme-color;
|
||||||
margin-right: 17.54rpx;
|
margin-right: 17.54rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -214,7 +219,7 @@
|
|||||||
width: 135.09rpx;
|
width: 135.09rpx;
|
||||||
height: 59.65rpx;
|
height: 59.65rpx;
|
||||||
line-height: 59.65rpx;
|
line-height: 59.65rpx;
|
||||||
background: linear-gradient(180deg, #66CE69 0%, #20A162 100%);
|
background: $uni-theme-bg-color;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -232,16 +237,21 @@
|
|||||||
|
|
||||||
.title {
|
.title {
|
||||||
font-size: 31.58rpx;
|
font-size: 31.58rpx;
|
||||||
|
font-weight: bold;
|
||||||
color: #333;
|
color: #333;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.message {
|
.list_item {
|
||||||
margin: 28.07rpx 0 21.05rpx 0;
|
font-size: 24.56rpx;
|
||||||
}
|
|
||||||
|
|
||||||
.redact_box {
|
.redact_box {
|
||||||
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: flex-end;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.redact {
|
.redact {
|
||||||
@ -250,17 +260,36 @@
|
|||||||
width: 129.82rpx;
|
width: 129.82rpx;
|
||||||
height: 50.88rpx;
|
height: 50.88rpx;
|
||||||
line-height: 50.88rpx;
|
line-height: 50.88rpx;
|
||||||
background: linear-gradient(90deg, #66CE69 0%, #20A162 100%);
|
background: $uni-theme-bg-color;
|
||||||
border-radius: 7px;
|
border-radius: 7px;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
.r_box {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.unit {
|
||||||
|
margin-left: 35.09rpx;
|
||||||
|
margin: 7.02rpx 0 7.02rpx 35.09rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.goods_img {
|
||||||
|
width: 119.3rpx;
|
||||||
|
height: 119.3rpx;
|
||||||
|
border-radius: 8px;
|
||||||
|
margin-right: 26.32rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.popup_cont {
|
.popup_cont {
|
||||||
width: 680.7rpx;
|
width: 680.7rpx;
|
||||||
padding: 31.58rpx;
|
padding: 31.58rpx;
|
||||||
font-size: 28.07rpx;
|
font-size: 28.07rpx;
|
||||||
|
|
||||||
|
.message {
|
||||||
|
margin: 28.07rpx 0 21.05rpx 0;
|
||||||
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 31.58rpx;
|
font-size: 31.58rpx;
|
||||||
|
@ -47,9 +47,7 @@
|
|||||||
getProductDetail,
|
getProductDetail,
|
||||||
postCartAdd
|
postCartAdd
|
||||||
} from '@/api/store.js'
|
} from '@/api/store.js'
|
||||||
import {
|
import { Toast } from '@/libs/uniApi'
|
||||||
Toast
|
|
||||||
} from '../../../libs/uniApi'
|
|
||||||
import goodsPopup from '../cpns/goodsPopup.vue'
|
import goodsPopup from '../cpns/goodsPopup.vue'
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
@ -264,7 +262,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.icon-xuanzhong1 {
|
.icon-xuanzhong1 {
|
||||||
color: #20A162;
|
color: $uni-theme-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.head_search {
|
.head_search {
|
||||||
@ -277,12 +275,12 @@
|
|||||||
width: 694.74rpx;
|
width: 694.74rpx;
|
||||||
height: 66.67rpx;
|
height: 66.67rpx;
|
||||||
padding: 2px 2px 2px 21.05rpx;
|
padding: 2px 2px 2px 21.05rpx;
|
||||||
border: 1px solid #20A162;
|
border: 1px solid $uni-theme-color;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
|
|
||||||
.icon-sousuo {
|
.icon-sousuo {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #20A162;
|
color: $uni-theme-color;
|
||||||
margin-right: 17.54rpx;
|
margin-right: 17.54rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -291,7 +289,7 @@
|
|||||||
width: 135.09rpx;
|
width: 135.09rpx;
|
||||||
height: 59.65rpx;
|
height: 59.65rpx;
|
||||||
line-height: 59.65rpx;
|
line-height: 59.65rpx;
|
||||||
background: linear-gradient(180deg, #66CE69 0%, #20A162 100%);
|
background: $uni-theme-bg-color;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -308,7 +306,7 @@
|
|||||||
|
|
||||||
.active {
|
.active {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
color: #20A162;
|
color: $uni-theme-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item_list {
|
.item_list {
|
||||||
@ -343,13 +341,13 @@
|
|||||||
|
|
||||||
.num {
|
.num {
|
||||||
font-size: 31.58rpx;
|
font-size: 31.58rpx;
|
||||||
color: #20A162;
|
color: $uni-theme-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.purchase_btn {
|
.purchase_btn {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
padding: 7.02rpx 21.05rpx;
|
padding: 7.02rpx 21.05rpx;
|
||||||
background: #009E56;
|
background: $uni-theme-color;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
margin-left: 21.05rpx;
|
margin-left: 21.05rpx;
|
||||||
}
|
}
|
||||||
@ -359,7 +357,7 @@
|
|||||||
width: 180rpx;
|
width: 180rpx;
|
||||||
height: 60rpx;
|
height: 60rpx;
|
||||||
line-height: 60rpx;
|
line-height: 60rpx;
|
||||||
background-color: #009E56;
|
background-color: $uni-theme-color;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
@ -377,7 +375,7 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
line-height: 80.7rpx;
|
line-height: 80.7rpx;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
background-color: #20A162;
|
background-color: $uni-theme-color;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
@ -249,9 +249,7 @@
|
|||||||
])),
|
])),
|
||||||
onReady() {},
|
onReady() {},
|
||||||
mounted: function() {},
|
mounted: function() {},
|
||||||
onLoad: function(options) {
|
onLoad: function(options) {},
|
||||||
|
|
||||||
},
|
|
||||||
onShow: function() {
|
onShow: function() {
|
||||||
let that = this
|
let that = this
|
||||||
let routes = getCurrentPages();
|
let routes = getCurrentPages();
|
||||||
|
@ -1,8 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="supplier" :style="{height: winHeight + 'px' }">
|
<view class="supplier" :style="{height: winHeight + 'px' }">
|
||||||
|
<view class="head-wrapper" :style="'top:'+statusBarHeight">
|
||||||
|
<view class="head-menu">
|
||||||
|
<view class='iconfont icon-xiangzuo' @click="returns"></view>
|
||||||
|
<view class="iconfont icon-shouye4" @click="goHome"></view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
<view class="header_warpper">
|
<view class="header_warpper">
|
||||||
<u-swiper :list="swiperList" keyName="pic" :autoplay="true" height="491.23rpx"></u-swiper>
|
<u-swiper :list="swiperList" keyName="pic" :autoplay="true" height="491.23rpx"></u-swiper>
|
||||||
<view class="head_search flex_a_c">
|
<!-- <view class="head_search flex_a_c">
|
||||||
<view class="search_content flex_a_c_j_sb">
|
<view class="search_content flex_a_c_j_sb">
|
||||||
<view class="flex_a_c">
|
<view class="flex_a_c">
|
||||||
<view class="iconfont icon-sousuo"></view>
|
<view class="iconfont icon-sousuo"></view>
|
||||||
@ -10,7 +16,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<button class="search_btn" @click="searchStoreMerchant">搜索</button>
|
<button class="search_btn" @click="searchStoreMerchant">搜索</button>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view> -->
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="con-box">
|
<view class="con-box">
|
||||||
@ -37,7 +43,7 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<block v-for="(item,index) in storeMerchant" :key="index">
|
<block v-for="(item,index) in storeMerchant" :key="index">
|
||||||
<storeCard :store_item="item" :category="item.category_name"></storeCard>
|
<storeCard :store_item="item" :category="item.category_name" :isDetail="isDetail"></storeCard>
|
||||||
</block>
|
</block>
|
||||||
<u-loadmore :status="status" :loading-text="loadingText" :loadmore-text="loadmoreText"
|
<u-loadmore :status="status" :loading-text="loadingText" :loadmore-text="loadmoreText"
|
||||||
:nomore-text="nomoreText" />
|
:nomore-text="nomoreText" />
|
||||||
@ -54,6 +60,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
var statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
|
||||||
import storeCard from './component/shop_card.vue'
|
import storeCard from './component/shop_card.vue'
|
||||||
import rightSlider from './component/rightSlider';
|
import rightSlider from './component/rightSlider';
|
||||||
import { getIndexData } from '@/api/api.js'
|
import { getIndexData } from '@/api/api.js'
|
||||||
@ -66,6 +73,7 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
statusBarHeight: statusBarHeight, //系统导航条高度
|
||||||
swiperList: [],
|
swiperList: [],
|
||||||
activeTwo: 0,
|
activeTwo: 0,
|
||||||
winHeight: 0,
|
winHeight: 0,
|
||||||
@ -112,6 +120,7 @@
|
|||||||
type_id: '', // 类型
|
type_id: '', // 类型
|
||||||
street_id: '' // 位置
|
street_id: '' // 位置
|
||||||
},
|
},
|
||||||
|
isDetail: 2
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(e) {
|
onLoad(e) {
|
||||||
@ -119,6 +128,7 @@
|
|||||||
if (e.type_id) {
|
if (e.type_id) {
|
||||||
this.sotreParam.type_id = e.type_id
|
this.sotreParam.type_id = e.type_id
|
||||||
}
|
}
|
||||||
|
if (e.isDetail) this.isDetail = e.isDetail
|
||||||
this.getStoreMerchant()
|
this.getStoreMerchant()
|
||||||
this.getStore()
|
this.getStore()
|
||||||
this.getClassfication()
|
this.getClassfication()
|
||||||
@ -133,6 +143,16 @@
|
|||||||
},
|
},
|
||||||
onShow() {},
|
onShow() {},
|
||||||
methods: {
|
methods: {
|
||||||
|
// 后退
|
||||||
|
returns: function() {
|
||||||
|
uni.navigateBack()
|
||||||
|
},
|
||||||
|
// 首页
|
||||||
|
goHome() {
|
||||||
|
uni.switchTab({
|
||||||
|
url: '/pages/home/index'
|
||||||
|
});
|
||||||
|
},
|
||||||
async getBanner() {
|
async getBanner() {
|
||||||
const { data } = await getIndexData()
|
const { data } = await getIndexData()
|
||||||
this.swiperList = data.banner
|
this.swiperList = data.banner
|
||||||
@ -336,12 +356,12 @@
|
|||||||
width: 694.74rpx;
|
width: 694.74rpx;
|
||||||
height: 66.67rpx;
|
height: 66.67rpx;
|
||||||
padding: 2px 2px 2px 21.05rpx;
|
padding: 2px 2px 2px 21.05rpx;
|
||||||
border: 1px solid #20A162;
|
border: 1px solid $uni-theme-color;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
|
|
||||||
.icon-sousuo {
|
.icon-sousuo {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #20A162;
|
color: $uni-theme-color;
|
||||||
margin-right: 17.54rpx;
|
margin-right: 17.54rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -350,7 +370,7 @@
|
|||||||
width: 135.09rpx;
|
width: 135.09rpx;
|
||||||
height: 59.65rpx;
|
height: 59.65rpx;
|
||||||
line-height: 59.65rpx;
|
line-height: 59.65rpx;
|
||||||
background: linear-gradient(180deg, #66CE69 0%, #20A162 100%);
|
background: $uni-theme-bg-color;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -360,6 +380,7 @@
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
margin-top: 28.07rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.left_classify {
|
.left_classify {
|
||||||
@ -467,7 +488,7 @@
|
|||||||
.msg {
|
.msg {
|
||||||
|
|
||||||
.category_name {
|
.category_name {
|
||||||
color: #20A162;
|
color: $uni-theme-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.scope {
|
.scope {
|
||||||
@ -485,4 +506,39 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.head-wrapper {
|
||||||
|
z-index: 999;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
position: fixed;
|
||||||
|
left: 30rpx;
|
||||||
|
top: 0;
|
||||||
|
/* #ifdef MP */
|
||||||
|
height: 43px;
|
||||||
|
/* #endif */
|
||||||
|
/* #ifdef H5 */
|
||||||
|
height: 114rpx;
|
||||||
|
/* #endif */
|
||||||
|
}
|
||||||
|
|
||||||
|
.head-menu {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
height: 54rpx;
|
||||||
|
width: 140rpx;
|
||||||
|
background: rgba(0, 0, 0, .25);
|
||||||
|
border-radius: 27rpx;
|
||||||
|
|
||||||
|
.iconfont {
|
||||||
|
flex: 1;
|
||||||
|
text-align: center;
|
||||||
|
color: #fff;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
&.icon-xiangzuo {
|
||||||
|
border-right: 1px solid #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
@ -14,11 +14,11 @@
|
|||||||
<view class="input_photo acea-row row-middle">
|
<view class="input_photo acea-row row-middle">
|
||||||
<block v-if="tabActive == 2">
|
<block v-if="tabActive == 2">
|
||||||
<view class="pictrue" v-if="formData.video_link">
|
<view class="pictrue" v-if="formData.video_link">
|
||||||
<!-- <view v-if="videoplay">
|
<view v-if="videoplay">
|
||||||
<video controls id="myvideo" :src="video_link" @fullscreenchange="screenChange"></video>
|
<video controls id="myvideo" :src="video_link" @fullscreenchange="screenChange"></video>
|
||||||
</view> -->
|
</view>
|
||||||
<!--#ifndef APP-PLUS-->
|
<!--#ifndef APP-PLUS-->
|
||||||
<!-- <video class="pictrue" :src="formData.video_link"></video> -->
|
<video class="pictrue" :src="formData.video_link"></video>
|
||||||
<!--#endif-->
|
<!--#endif-->
|
||||||
<image class="video-bg" mode="widthFix"
|
<image class="video-bg" mode="widthFix"
|
||||||
src="https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/luzhou/static4/3/video_bg.png">
|
src="https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/luzhou/static4/3/video_bg.png">
|
||||||
@ -69,7 +69,7 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="release_item">
|
<view class="release_item">
|
||||||
<!-- <view class='item acea-row row-between-wrapper'>
|
<view class='item acea-row row-between-wrapper'>
|
||||||
<view class='name'><text class="iconfont icon-baobeilianjie"></text>添加产品({{productList.length}})</view>
|
<view class='name'><text class="iconfont icon-baobeilianjie"></text>添加产品({{productList.length}})</view>
|
||||||
<view class="select">
|
<view class="select">
|
||||||
<view class="select_count" @click.stop="addProduct">
|
<view class="select_count" @click.stop="addProduct">
|
||||||
@ -81,7 +81,7 @@
|
|||||||
<text class="iconfont icon-xiangyou"></text>
|
<text class="iconfont icon-xiangyou"></text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view> -->
|
</view>
|
||||||
<view class='item acea-row row-between-wrapper'>
|
<view class='item acea-row row-between-wrapper'>
|
||||||
<view class='name'><text class="iconfont icon-canyuhuati"></text>参与话题</view>
|
<view class='name'><text class="iconfont icon-canyuhuati"></text>参与话题</view>
|
||||||
<view class="select">
|
<view class="select">
|
||||||
@ -581,7 +581,7 @@
|
|||||||
line-height: 90rpx;
|
line-height: 90rpx;
|
||||||
height: 90rpx;
|
height: 90rpx;
|
||||||
height: calc(90rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
|
height: calc(90rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
|
||||||
height: calc(90rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
|
height: calc(200rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
</swiper>
|
</swiper>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="search_wrapper flex_a_c_j_sb">
|
<!-- <view class="search_wrapper flex_a_c_j_sb">
|
||||||
<navigator url="/pages/plantGrass/plant_search/index" hover-class="none" class="search_content flex_a_c_j_sb">
|
<navigator url="/pages/plantGrass/plant_search/index" hover-class="none" class="search_content flex_a_c_j_sb">
|
||||||
<view class="flex_a_c">
|
<view class="flex_a_c">
|
||||||
<view class="iconfont icon-sousuo"></view>
|
<view class="iconfont icon-sousuo"></view>
|
||||||
@ -22,14 +22,14 @@
|
|||||||
<button class="search_btn">搜索</button>
|
<button class="search_btn">搜索</button>
|
||||||
</navigator>
|
</navigator>
|
||||||
<view class="iconlihai lihai-gengduo" @click="showPicker=true"></view>
|
<view class="iconlihai lihai-gengduo" @click="showPicker=true"></view>
|
||||||
</view>
|
</view> -->
|
||||||
|
|
||||||
<view class="shop_wrapper">
|
<view class="shop_wrapper">
|
||||||
<navigator class="l_yun" hover-class="none"
|
<navigator class="l_yun" hover-class="none"
|
||||||
:url="`/pages/nongKe/supply_chain/supplier?street_id=${sotreParam.street_id}`">
|
:url="`/pages/nongKe/supply_chain/supplier?type_id=10&street_id=${sotreParam.street_id}`">
|
||||||
<view class="yun_title flex_a_c">
|
<view class="yun_title flex_a_c">
|
||||||
<view class="">泸州市{{district}}{{town}}</view>
|
<view class="">泸州市{{district}}{{town}}</view>
|
||||||
<view class="iconlihai lihai-gengduo"></view>
|
<view class="iconlihai lihai-gengduo" @click.stop="showPicker=true"></view>
|
||||||
</view>
|
</view>
|
||||||
<view class="text_cont">
|
<view class="text_cont">
|
||||||
<text class="name_town">{{town}}</text>供销综合云市场
|
<text class="name_town">{{town}}</text>供销综合云市场
|
||||||
@ -79,14 +79,18 @@
|
|||||||
</navigator>
|
</navigator>
|
||||||
</view> -->
|
</view> -->
|
||||||
|
|
||||||
<view class="article_box">
|
<!-- 滚动 -->
|
||||||
<block v-for="item in ArticleHotList" :key="item.article_id">
|
<scroll-view scroll-y="true" class="article_box">
|
||||||
<view class="article_item">
|
<view>
|
||||||
<view class="title">{{item.title}}</view>
|
<block v-for="item in ArticleHotList" :key="item.article_id">
|
||||||
<view class="synopsis">{{item.synopsis}}</view>
|
<view class="article_item">
|
||||||
</view>
|
<view class="title">{{item.title}}</view>
|
||||||
</block>
|
<view class="synopsis">{{item.synopsis}}</view>
|
||||||
</view>
|
</view>
|
||||||
|
</block>
|
||||||
|
</view>
|
||||||
|
</scroll-view>
|
||||||
|
|
||||||
|
|
||||||
<view class="tabs_wrapper">
|
<view class="tabs_wrapper">
|
||||||
<!-- <u-tabs :list="tabsData.list" @click="tabsChange" :activeStyle="tabsData.activeStyle"
|
<!-- <u-tabs :list="tabsData.list" @click="tabsChange" :activeStyle="tabsData.activeStyle"
|
||||||
@ -277,13 +281,13 @@
|
|||||||
},
|
},
|
||||||
Area() {
|
Area() {
|
||||||
getArea({ city_code: 510500 }).then(res => {
|
getArea({ city_code: 510500 }).then(res => {
|
||||||
this.$refs.uPicker.setColumnValues(0, res);
|
this.$refs.uPicker.setColumnValues(0, res.data);
|
||||||
this.Street(res[0]['code']);
|
this.Street(res.data[0]['code']);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
Street(code) {
|
Street(code) {
|
||||||
getStreet({ area_code: code }).then(res => {
|
getStreet({ area_code: code }).then(res => {
|
||||||
this.$refs.uPicker.setColumnValues(1, res);
|
this.$refs.uPicker.setColumnValues(1, res.data);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -542,12 +546,20 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.scroll_art {
|
||||||
|
width: 694.74rpx;
|
||||||
|
margin: 0 auto;
|
||||||
|
height: 526.32rpx
|
||||||
|
}
|
||||||
|
|
||||||
.article_box {
|
.article_box {
|
||||||
|
height: 431.58rpx;
|
||||||
width: 694.74rpx;
|
width: 694.74rpx;
|
||||||
margin: 38.6rpx auto;
|
margin: 38.6rpx auto;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
padding: 24.56rpx;
|
padding: 0 24.56rpx 24.56rpx 24.56rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
.article_item {
|
.article_item {
|
||||||
height: 131.58rpx;
|
height: 131.58rpx;
|
||||||
@ -557,16 +569,17 @@
|
|||||||
border-bottom: 1px solid #CCCCCC;
|
border-bottom: 1px solid #CCCCCC;
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
font-size: 31.58rpx;
|
font-size: 28.07rpx;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
margin-bottom: 10.53rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.synopsis {
|
.synopsis {
|
||||||
font-size: 24.56rpx;
|
font-size: 21.05rpx;
|
||||||
color: #666;
|
color: #666;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
@ -151,7 +151,7 @@
|
|||||||
</block>
|
</block>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="menus-list-item" v-if="!userInfo.topService && userInfo.service" @click="toService(0)">
|
<!-- <view class="menus-list-item" v-if="!userInfo.topService && userInfo.service" @click="toService(0)">
|
||||||
<view class="item-text">
|
<view class="item-text">
|
||||||
<view class="title">
|
<view class="title">
|
||||||
<text class="merchant">商家</text>管理
|
<text class="merchant">商家</text>管理
|
||||||
@ -159,7 +159,7 @@
|
|||||||
<view class="info">进入商户中心管理店铺</view>
|
<view class="info">进入商户中心管理店铺</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="image merchant-image"></view>
|
<view class="image merchant-image"></view>
|
||||||
</view>
|
</view> -->
|
||||||
<view class="menus-list-item" v-if="!userInfo.service && userInfo.topService" @click="toService(1)">
|
<view class="menus-list-item" v-if="!userInfo.service && userInfo.topService" @click="toService(1)">
|
||||||
<view class="item-text">
|
<view class="item-text">
|
||||||
<view class="title">
|
<view class="title">
|
||||||
|
File diff suppressed because it is too large
Load Diff
1214
pages/users/login/login_copy.vue
Normal file
1214
pages/users/login/login_copy.vue
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -61,7 +61,7 @@ const mutations = {
|
|||||||
state.color = color;
|
state.color = color;
|
||||||
document.body.style.backgroundColor = color;
|
document.body.style.backgroundColor = color;
|
||||||
},
|
},
|
||||||
UPDATE_USERINFO(state, userInfo) {
|
UPDATE_USERINFO(state, userInfo, time) {
|
||||||
userInfo.isNew && Cache.set('is_new_user', '1')
|
userInfo.isNew && Cache.set('is_new_user', '1')
|
||||||
state.userInfo = userInfo;
|
state.userInfo = userInfo;
|
||||||
},
|
},
|
||||||
|
2
uni.scss
2
uni.scss
@ -13,6 +13,8 @@
|
|||||||
*/
|
*/
|
||||||
@import '@/uni_modules/uview-ui/theme.scss';
|
@import '@/uni_modules/uview-ui/theme.scss';
|
||||||
/* 颜色变量 */
|
/* 颜色变量 */
|
||||||
|
$uni-theme-color: #F45846;
|
||||||
|
$uni-theme-bg-color: linear-gradient(180deg, #F98649 0%, #F34E45 100%);
|
||||||
|
|
||||||
/* 行为相关颜色 */
|
/* 行为相关颜色 */
|
||||||
$uni-color-primary: #007aff;
|
$uni-color-primary: #007aff;
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user