diff --git a/api/store.js b/api/store.js
index 59a5c06..8ced6c6 100644
--- a/api/store.js
+++ b/api/store.js
@@ -5,14 +5,14 @@ import request from "@/utils/request.js";
*
*/
export function microSeachBarCode(data) {
- return request.get('micro/seach_bar_code', data);
+ return request.get('micro/seach_bar_code', data);
}
/**
* 获取收款二维码
* @returns {*}
*/
export function createtApi(data) {
- return request.post('v2/micropay/create', data);
+ return request.post('v2/micropay/create', data);
}
/**
@@ -20,7 +20,7 @@ export function createtApi(data) {
* @returns {*}
*/
export function addCartApi(data) {
- return request.post('v2/micropay/addCart', data);
+ return request.post('v2/micropay/addCart', data);
}
/**
* 获取产品详情
@@ -28,9 +28,9 @@ export function addCartApi(data) {
*
*/
export function getProductDetail(id, data) {
- return request.get('store/product/detail/' + id, data, {
- noAuth: true
- });
+ return request.get('store/product/detail/' + id, data, {
+ noAuth: true
+ });
}
/**
* 获取预览商品详情
@@ -38,16 +38,16 @@ export function getProductDetail(id, data) {
*
*/
export function getPreviewProDetail(data) {
- return request.get('store/product/preview', data, {
- noAuth: true
- });
+ return request.get('store/product/preview', data, {
+ noAuth: true
+ });
}
/**
* 产品分享二维码 推广员
* @param int id
*/
export function getProductCode(id, data) {
- return request.get('store/product/qrcode/' + id, data);
+ return request.get('store/product/qrcode/' + id, data);
}
/**
* 添加收藏
@@ -55,7 +55,7 @@ export function getProductCode(id, data) {
* @param string category product=普通产品,product_seckill=秒杀产品
*/
export function collectAdd(data) {
- return request.post('user/relation/create', data);
+ return request.post('user/relation/create', data);
}
/**
* 删除收藏产品
@@ -63,14 +63,14 @@ export function collectAdd(data) {
* @param string category product=普通产品,product_seckill=秒杀产品
*/
export function collectDel(data) {
- return request.post('user/relation/delete', data);
+ return request.post('user/relation/delete', data);
}
/**
* 购车添加
*
*/
export function postCartAdd(data) {
- return request.post('user/cart/create', data);
+ return request.post('user/cart/create', data);
}
/**
@@ -78,73 +78,73 @@ export function postCartAdd(data) {
*
*/
export function getCategoryList() {
- return request.get('store/product/category/lst', {}, {
- noAuth: true
- });
+ return request.get('store/product/category/lst', {}, {
+ noAuth: true
+ });
}
/**
* 获取产品列表
* @param object data
*/
export function getProductslist(data) {
- if (data.brand_id && Array.isArray(data.brand_id)) {
- data = {
- ...data
- }
- data.brand_id = data.brand_id.toString()
- }
- return request.get('product/spu/lst', data, {
- noAuth: true
- });
+ if (data.brand_id && Array.isArray(data.brand_id)) {
+ data = {
+ ...data
+ }
+ data.brand_id = data.brand_id.toString()
+ }
+ return request.get('product/spu/lst', data, {
+ noAuth: true
+ });
}
/**
* 获取优惠券商品列表
* @param object data
*/
export function getCouponProductlist(data) {
- if (data.brand_id && Array.isArray(data.brand_id)) {
- data = {
- ...data
- }
- data.brand_id = data.brand_id.toString()
- }
- return request.get('product/spu/coupon_product', data, {
- noAuth: true
- });
+ if (data.brand_id && Array.isArray(data.brand_id)) {
+ data = {
+ ...data
+ }
+ data.brand_id = data.brand_id.toString()
+ }
+ return request.get('product/spu/coupon_product', data, {
+ noAuth: true
+ });
}
/**
* 获取品牌列表
* @param object data
*/
export function getBrandlist(data) {
- return request.get('store/product/brand/lst', data, {
- noAuth: true
- });
+ return request.get('store/product/brand/lst', data, {
+ noAuth: true
+ });
}
/**
* 获取推荐产品
*
*/
export function getProductHot(page, limit) {
- return request.get("product/spu/recommend", {
- page: page === undefined ? 1 : page,
- limit: limit === undefined ? 10 : limit
- }, {
- noAuth: true
- });
+ return request.get("product/spu/recommend", {
+ page: page === undefined ? 1 : page,
+ limit: limit === undefined ? 10 : limit
+ }, {
+ noAuth: true
+ });
}
/**
* 获取商户推荐产品
*
*/
export function getMerProductHot(id, data) {
- return request.get(`product/spu/recommend`, {
- page: data.page === undefined ? 1 : data.page,
- limit: data.limit === undefined ? 10 : data.limit,
- mer_id: id || ''
- }, {
- noAuth: true
- });
+ return request.get(`product/spu/recommend`, {
+ page: data.page === undefined ? 1 : data.page,
+ limit: data.limit === undefined ? 10 : data.limit,
+ mer_id: id || ''
+ }, {
+ noAuth: true
+ });
}
/**
* 批量收藏
@@ -153,7 +153,7 @@ export function getMerProductHot(id, data) {
* @param string category
*/
export function collectAll(data) {
- return request.post('user/relation/batch/create', data);
+ return request.post('user/relation/batch/create', data);
}
/**
* 首页产品的轮播图和产品信息
@@ -161,23 +161,23 @@ export function collectAll(data) {
*
*/
export function getGroomList(type, data) {
- return request.get('product/spu/hot/' + type, data, {
- noAuth: true
- });
+ return request.get('product/spu/hot/' + type, data, {
+ noAuth: true
+ });
}
/**
* 获取商品收藏列表
* @param object data
*/
-export function getCollectUserList(data) {
- return request.get('user/relation/product/lst', data)
+export function getCollectUserList(data) {
+ return request.get('user/relation/product/lst', data)
}
/**
* 获取商品收藏列表 -- 删除
* @param object data
*/
export function userCollectDel(data) {
- return request.post('user/relation/batch/delete', data)
+ return request.post('user/relation/batch/delete', data)
}
/**
* 获取产品评论
@@ -186,43 +186,43 @@ export function userCollectDel(data) {
*
*/
export function getReplyList(id, data) {
- return request.get('store/product/reply/lst/' + id, data, {
- noAuth: true
- })
+ return request.get('store/product/reply/lst/' + id, data, {
+ noAuth: true
+ })
}
/**
* 产品评价数量和好评度
* @param int id
*/
export function getReplyConfig(id) {
- return request.get('reply/config/' + id);
+ return request.get('reply/config/' + id);
}
/**
* 获取搜索关键字获取
*
*/
export function getSearchKeyword() {
- return request.get('common/hot_keyword', {}, {
- noAuth: true
- });
+ return request.get('common/hot_keyword', {}, {
+ noAuth: true
+ });
}
/**
* 门店列表
* @returns {*}
*/
export function storeListApi(data) {
- return request.get("store_list", data, {
- noAuth: true
- });
+ return request.get("store_list", data, {
+ noAuth: true
+ });
}
/**
* 商户列表
* @returns {*}
*/
export function storeMerchantList(data) {
- return request.get("store/merchant/lst", data, {
- noAuth: true
- });
+ return request.get("store/merchant/lst", data, {
+ noAuth: true
+ });
}
/**
* 获取商铺详情
@@ -230,9 +230,9 @@ export function storeMerchantList(data) {
* @param {Object} data 商铺数据
*/
export function getStoreDetail(id, data) {
- return request.get("store/merchant/detail/" + id, data, {
- noAuth: true
- });
+ return request.get("store/merchant/detail/" + id, data, {
+ noAuth: true
+ });
}
/**
* 获取商铺商品列表
@@ -240,9 +240,9 @@ export function getStoreDetail(id, data) {
* @param {Object} data 商铺商品列表数据
*/
export function getStoreGoods(id, data) {
- return request.get("product/spu/merchant/" + id, data, {
- noAuth: true
- });
+ return request.get("product/spu/merchant/" + id, data, {
+ noAuth: true
+ });
}
/**
* 获取商铺分类列表
@@ -250,77 +250,77 @@ export function getStoreGoods(id, data) {
* @param {Object} data
*/
export function getStoreCategory(id, data) {
- return request.get("store/merchant/category/lst/" + id, data, {
- noAuth: true
- });
+ return request.get("store/merchant/category/lst/" + id, data, {
+ noAuth: true
+ });
}
/**
* 关注商铺
* @param {Object} type_id 商铺 id
*/
export function followStore(type_id) {
- return request.post("user/relation/create", {
- type: 10,
- type_id: type_id
- });
+ return request.post("user/relation/create", {
+ type: 10,
+ type_id: type_id
+ });
}
/**
* 取消商铺关注
* @param {Object} type_id 商铺 id
*/
export function unfollowStore(type_id) {
- return request.post("user/relation/delete", {
- type: 10,
- type_id: type_id
- });
+ return request.post("user/relation/delete", {
+ type: 10,
+ type_id: type_id
+ });
}
/**
* 获取商铺优惠券
* @param {Object} id
*/
export function getStoreCoupon(id) {
- return request.get("coupon/store/" + id, {
- noAuth: true
- });
+ return request.get("coupon/store/" + id, {
+ noAuth: true
+ });
}
/**
* 获取商铺优惠券
*/
export function getMerchantLst(data) {
- return request.get("user/relation/merchant/lst", data, {
- noAuth: true
- });
+ return request.get("user/relation/merchant/lst", data, {
+ noAuth: true
+ });
}
/**
* 物流信息
*/
export function express(id) {
- return request.post("ordero/express/" + id, {
- noAuth: true
- });
+ return request.post("ordero/express/" + id, {
+ noAuth: true
+ });
}
/**
* 子集分类
* @returns {*}
*/
export function storeCategory(pid) {
- return request.get("store/product/category", pid, {
- noAuth: true
- });
+ return request.get("store/product/category", pid, {
+ noAuth: true
+ });
}
/**
* 分销说明
* @returns {*}
*/
export function bagExplain() {
- return request.get("store/product/bag/explain");
+ return request.get("store/product/bag/explain");
}
/**
* 分销礼包推荐列表
* @returns {*}
*/
export function bagRecommend() {
- return request.get("product/spu/bag/recommend");
+ return request.get("product/spu/bag/recommend");
}
/**
* 分销礼包列表
@@ -328,56 +328,56 @@ export function bagRecommend() {
*/
export function productBag(data) {
- return request.get("product/spu/bag", data, {
- noAuth: true
- });
+ return request.get("product/spu/bag", data, {
+ noAuth: true
+ });
}
/**
* 商铺二维码
* @returns {*}
*/
export function merchantQrcode(id, data) {
- return request.get("store/merchant/qrcode/" + id, data, {
- noAuth: true
- });
+ return request.get("store/merchant/qrcode/" + id, data, {
+ noAuth: true
+ });
}
/**
* 推荐商品
* @returns {*}
*/
export function merchantProduct(id, data) {
- if (data.brand_id && Array.isArray(data.brand_id)) {
- data = {
- ...data
- }
- data.brand_id = data.brand_id.toString()
- }
- return request.get("product/spu/merchant/" + id, data, {
- noAuth: true
- });
+ if (data.brand_id && Array.isArray(data.brand_id)) {
+ data = {
+ ...data
+ }
+ data.brand_id = data.brand_id.toString()
+ }
+ return request.get("product/spu/merchant/" + id, data, {
+ noAuth: true
+ });
}
/**
* 推荐商品banner
* @returns {*}
*/
export function getHotBanner(type) {
- return request.get("common/hot_banner/" + type, {}, {
- noAuth: true
- });
+ return request.get("common/hot_banner/" + type, {}, {
+ noAuth: true
+ });
}
/**
* 商户入驻表单
* @returns {*}
*/
export function create(data) {
- return request.post("intention/create", data);
+ return request.post("intention/create", data);
}
/**
* 商户入驻短信验证码
* @returns {*}
*/
export function verify(data) {
- return request.post("auth/verify", data);
+ return request.post("auth/verify", data);
}
/**
* 获取秒杀商品详情
@@ -385,36 +385,36 @@ export function verify(data) {
*
*/
export function getSeckillProductDetail(id) {
- return request.get('store/product/seckill/detail/' + id, {}, {
- noAuth: true
- });
+ return request.get('store/product/seckill/detail/' + id, {}, {
+ noAuth: true
+ });
}
/**
* 直播推荐列表
* @returns {*}
*/
export function getLiveList(data) {
- return request.get(`broadcast/hot`, data, {
- noAuth: true
- });
+ return request.get(`broadcast/hot`, data, {
+ noAuth: true
+ });
}
/**
* 直播列表
* @returns {*}
*/
export function getBroadcastListApi(data) {
- return request.get("broadcast/lst", data, {
- noAuth: true
- });
+ return request.get("broadcast/lst", data, {
+ noAuth: true
+ });
}
/**
* 商户分类
* @returns {*}
*/
export function merClassifly() {
- return request.get("intention/cate", {}, {
- noAuth: true
- });
+ return request.get("intention/cate", {}, {
+ noAuth: true
+ });
}
/**
* 获取预售商品详情
@@ -422,9 +422,9 @@ export function merClassifly() {
*
*/
export function getPresellProductDetail(id) {
- return request.get('store/product/presell/detail/' + id, {}, {
- noAuth: true
- });
+ return request.get('store/product/presell/detail/' + id, {}, {
+ noAuth: true
+ });
}
/**
* 获取商户申请记录
@@ -432,7 +432,7 @@ export function getPresellProductDetail(id) {
*
*/
export function getApplicationRecordList(data) {
- return request.get('intention/lst', data);
+ return request.get('intention/lst', data);
}
/**
* 获取商户申请详情
@@ -440,7 +440,7 @@ export function getApplicationRecordList(data) {
*
*/
export function getGoodsDetails(id) {
- return request.get('intention/detail/' + id, {});
+ return request.get('intention/detail/' + id, {});
}
/**
@@ -449,7 +449,7 @@ export function getGoodsDetails(id) {
*
*/
export function updateGoodsRecord(id, data) {
- return request.post('intention/update/' + id, data);
+ return request.post('intention/update/' + id, data);
}
/**
* 获取定位详细地址
@@ -457,9 +457,9 @@ export function updateGoodsRecord(id, data) {
*
*/
export function getGeocoder(data) {
- return request.get(`lbs/geocoder?location=${data.lat},${data.long}`, {}, {
- noAuth: true
- });
+ return request.get(`lbs/geocoder?location=${data.lat},${data.long}`, {}, {
+ noAuth: true
+ });
}
/**
* 获取店铺类型
@@ -467,80 +467,98 @@ export function getGeocoder(data) {
*
*/
export function getStoreTypeApi() {
- return request.get('intention/type', {sift_store:0}, {
- noAuth: true
- });
+ return request.get('intention/type', {
+ sift_store: 0
+ }, {
+ noAuth: true
+ });
}
/**
* 到货通知
*
*/
export function arrivalNoticeApi(data) {
- return request.post('store/product/increase_take', data);
+ return request.post('store/product/increase_take', data);
}
/*
获取图片验证码
*/
export function getCaptcha() {
- return request.get('captcha');
+ return request.get('captcha');
}
/*
获取店铺资质
*/
export function storeCertificate(data) {
- return request.post(`store/certificate/${data.merId}`, data)
+ return request.post(`store/certificate/${data.merId}`, data)
}
/**
* 本地服务列表
* @returns {*}
*/
export function storeServiceList(id, data) {
- return request.get(`product/spu/local/${id}`, data, {
- noAuth: true
- });
+ return request.get(`product/spu/local/${id}`, data, {
+ noAuth: true
+ });
}
/**
* 复制口令
* @returns {*}
*/
export function copyPasswordApi(data) {
- return request.get(`product/spu/copy`, data, {
- noAuth: true
- });
+ return request.get(`product/spu/copy`, data, {
+ noAuth: true
+ });
}
/**
* 口令搜索
* @returns {*}
*/
export function copyPasswordSearch(data) {
- return request.get(`command/copy`, data, {
- noAuth: true
- });
+ return request.get(`command/copy`, data, {
+ noAuth: true
+ });
}
/**
* 套餐列表
* @returns {*}
*/
export function getDiscountsLst(data) {
- return request.get(`discounts/lst`, data, {
- noAuth: true
- });
+ return request.get(`discounts/lst`, data, {
+ noAuth: true
+ });
}
/**
* 套餐--立即购买
* @returns {*}
*/
export function discountsCartAdd(data) {
- return request.post('user/cart/batchCreate', data);
+ return request.post('user/cart/batchCreate', data);
}
/**
* 商品--价格说明
* @returns {*}
*/
export function priceRuleApi(id) {
- return request.get(`store/product/price_rule/${id}`, {}, {
- noAuth: true
- });
-}
\ No newline at end of file
+ return request.get(`store/product/price_rule/${id}`, {}, {
+ noAuth: true
+ });
+}
+/**
+ * 供销市场标签
+ * @returns {*}
+ */
+export function supMenuApi(data) {
+ return request.get('intention/cate', data);
+}
+/**
+ * 供销市场标签
+ * @returns {*}
+ */
+export function supAgoodsApi(data) {
+ return request.get('store/merchant/lst', data);
+}
+// /api/store / merchant / lst ? page = 1 & limit = 10 & order = & category_id = 22 & type_id = 10 & street_id = &
+// credit_buy =
\ No newline at end of file
diff --git a/pages.json b/pages.json
index 471efbf..357c9ce 100644
--- a/pages.json
+++ b/pages.json
@@ -200,6 +200,15 @@
"navigationStyle": "custom"
}
+ }, {
+ "path": "supply_chain/supplierA",
+ "style": {
+ "enablePullDownRefresh": true,
+ "navigationBarTitleText": "",
+ "navigationBarBackgroundColor": "#e93323",
+ "navigationStyle": "custom"
+ }
+
}, {
"path": "supply_chain/merchant",
"style": {
@@ -705,13 +714,13 @@
"root": "pages/releaseManagement",
"name": "releaseManagement",
"pages": [{
- "path": "index",
- "style": {
- "navigationBarTitleText": "发布管理",
- "enablePullDownRefresh": false
- }
+ "path": "index",
+ "style": {
+ "navigationBarTitleText": "发布管理",
+ "enablePullDownRefresh": false
+ }
- },
+ },
{
"path": "details/index",
"style": {
@@ -719,7 +728,8 @@
"enablePullDownRefresh": false
}
- }]
+ }
+ ]
},
{
"root": "pages/commissionedSales",
diff --git a/pages/nongKe/supply_chain/supplier.vue b/pages/nongKe/supply_chain/supplier.vue
index dff372f..2a574ea 100644
--- a/pages/nongKe/supply_chain/supplier.vue
+++ b/pages/nongKe/supply_chain/supplier.vue
@@ -1,27 +1,99 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 供销综合云市场
+
+
+
+
+
+
+
+
-
- -->
-
+
+
+
+ 热搜: 热a搜商品 热搜商品
+ 热搜sasas商品
+
+
+
+
+
+
+
+
+
+
+
+ {{item.mer_name}}
+ {{item.type_name}}
+
+
+
+ 5.0
+ 月销2000+
+
+
+
+ {{item.service_phone}}
+
+
+
+ {{item.mer_take_time[0]}}-{{item.mer_take_time[1]}}
+
+
+
+ {{item.mer_address}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
暂无店铺,快去搜索其他店铺吧
@@ -183,14 +262,15 @@
-
+
\ No newline at end of file
diff --git a/static/images/GXSC/BBY.png b/static/images/GXSC/BBY.png
new file mode 100644
index 0000000..96afa8b
Binary files /dev/null and b/static/images/GXSC/BBY.png differ
diff --git a/static/images/GXSC/DH.png b/static/images/GXSC/DH.png
new file mode 100644
index 0000000..40e5775
Binary files /dev/null and b/static/images/GXSC/DH.png differ
diff --git a/static/images/GXSC/DW.png b/static/images/GXSC/DW.png
new file mode 100644
index 0000000..9642609
Binary files /dev/null and b/static/images/GXSC/DW.png differ
diff --git a/static/images/GXSC/JDMS.png b/static/images/GXSC/JDMS.png
new file mode 100644
index 0000000..5c5dc5a
Binary files /dev/null and b/static/images/GXSC/JDMS.png differ
diff --git a/static/images/GXSC/JJRB.png b/static/images/GXSC/JJRB.png
new file mode 100644
index 0000000..690be8f
Binary files /dev/null and b/static/images/GXSC/JJRB.png differ
diff --git a/static/images/GXSC/JYPX.png b/static/images/GXSC/JYPX.png
new file mode 100644
index 0000000..6fa6cc0
Binary files /dev/null and b/static/images/GXSC/JYPX.png differ
diff --git a/static/images/GXSC/NFCP.png b/static/images/GXSC/NFCP.png
new file mode 100644
index 0000000..347323e
Binary files /dev/null and b/static/images/GXSC/NFCP.png differ
diff --git a/static/images/GXSC/PF.png b/static/images/GXSC/PF.png
new file mode 100644
index 0000000..17eddea
Binary files /dev/null and b/static/images/GXSC/PF.png differ
diff --git a/static/images/GXSC/SJ.png b/static/images/GXSC/SJ.png
new file mode 100644
index 0000000..690ee58
Binary files /dev/null and b/static/images/GXSC/SJ.png differ
diff --git a/static/images/GXSC/SS.png b/static/images/GXSC/SS.png
new file mode 100644
index 0000000..3c02ebb
Binary files /dev/null and b/static/images/GXSC/SS.png differ