diff --git a/manager/src/config/index.js b/manager/src/config/index.js
index 8f1ce647..851ed1eb 100644
--- a/manager/src/config/index.js
+++ b/manager/src/config/index.js
@@ -17,10 +17,10 @@ export default {
* @description api请求基础路径
*/
api_dev: {
- common: 'https://common-api.pickmall.cn',
+ common: 'http://192.168.0.103:8890/',
buyer: 'https://buyer-api.pickmall.cn',
seller: 'https://store-api.pickmall.cn',
- manager: 'https://admin-api.pickmall.cn'
+ manager: 'http://192.168.0.103:8887'
},
api_prod: {
common: 'https://common-api.pickmall.cn',
diff --git a/manager/src/views/goods/goods-review/index.vue b/manager/src/views/goods/goods-review/index.vue
index 3797b23b..c837f4ae 100644
--- a/manager/src/views/goods/goods-review/index.vue
+++ b/manager/src/views/goods/goods-review/index.vue
@@ -53,7 +53,7 @@
+
{{$store.state.notices.distributionCash|| 0}}
待审核分销提现
-
+
{{$store.state.notices.waitPayBill|| 0}}
待审核分账
diff --git a/manager/src/views/lili-components/multiple-region.vue b/manager/src/views/lili-components/multiple-region.vue
deleted file mode 100644
index 3ac9b970..00000000
--- a/manager/src/views/lili-components/multiple-region.vue
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/manager/src/views/order/after-order/afterSaleOrder.vue b/manager/src/views/order/after-order/afterSaleOrder.vue
index 0373eb7d..3fa356f1 100644
--- a/manager/src/views/order/after-order/afterSaleOrder.vue
+++ b/manager/src/views/order/after-order/afterSaleOrder.vue
@@ -48,10 +48,10 @@
style="width: 200px"
>
-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
@@ -68,16 +74,57 @@ export default {
{
title: "支付方式",
key: "paymentMethod",
- width: 100,
+ width: 120,
+ align: "center",
render: (h, params) => {
if (params.row.paymentMethod === "WECHAT") {
- return h("div", [h("span", {}, "微信")]);
+ return h("div", [
+ h(
+ "Tag",
+ {
+ props: {
+ color: "green",
+ },
+ },
+ "微信"
+ ),
+ ]);
} else if (params.row.paymentMethod === "ALIPAY") {
- return h("div", [h("span", {}, "支付宝")]);
+ return h("div", [
+ h(
+ "Tag",
+ {
+ props: {
+ color: "blue",
+ },
+ },
+ "支付宝"
+ ),
+ ]);
} else if (params.row.paymentMethod === "WALLET") {
- return h("div", [h("span", {}, "余额支付")]);
+ return h("div", [
+ h(
+ "Tag",
+ {
+ props: {},
+ },
+ "余额支付"
+ ),
+ ]);
} else if (params.row.paymentMethod === "BANK_TRANSFER") {
- return h("div", [h("span", {}, "银行转帐")]);
+ return h("div", [
+ h(
+ "Tag",
+ {
+ props: {
+ color: "orange",
+ },
+ },
+ "银行转帐"
+ ),
+ ]);
+ } else {
+ return h("div", [h("Tag", {}, "暂未付款")]);
}
},
},
@@ -85,19 +132,24 @@ export default {
title: "第三方流水",
key: "receivableNo",
minWidth: 130,
+ render: (h, params) => {
+ return h("div", [
+ h("span", {}, params.row.receivableNo || "暂无流水号"),
+ ]);
+ },
},
{
title: "客户端",
key: "clientType",
width: 130,
render: (h, params) => {
- if (params.row.clientType === "WECHAT_MP") {
+ if (params.row.clientType === "WECHAT_MP" || params.row.clientType === '小程序') {
return h("div", [h("span", {}, "小程序")]);
} else if (params.row.clientType === "APP") {
return h("div", [h("span", {}, "APP")]);
} else if (params.row.clientType === "PC") {
return h("div", [h("span", {}, "PC网页")]);
- } else if (params.row.clientType === "H5") {
+ } else if (params.row.clientType === "H5" || params.row.clientType === 'wap') {
return h("div", [h("span", {}, "移动端")]);
}
},
@@ -106,6 +158,11 @@ export default {
title: "支付时间",
key: "paymentTime",
width: 200,
+ render: (h, params) => {
+ return h("div", [
+ h("span", {}, params.row.paymentTime || "暂无支付时间"),
+ ]);
+ },
},
{
title: "订单金额",
@@ -204,7 +261,7 @@ export default {
});
this.total = this.data.length;
this.loading = false;
- }
+ },
},
mounted() {
this.init();
diff --git a/manager/src/views/seller/shop/shopAuditList.vue b/manager/src/views/seller/shop/shopAuditList.vue
index fc6332ec..701f5f30 100644
--- a/manager/src/views/seller/shop/shopAuditList.vue
+++ b/manager/src/views/seller/shop/shopAuditList.vue
@@ -99,6 +99,15 @@
key: "storeAddressPath",
width: 300,
sortable: false,
+ render: (h, params) => {
+ return h(
+ "Tag",
+ {
+
+ },
+ params.row.storeAddressPath || "暂未填写"
+ );
+ },
},
{
title: "是否自营",
diff --git a/manager/src/views/seller/shop/shopList.vue b/manager/src/views/seller/shop/shopList.vue
index 4872459f..05961284 100644
--- a/manager/src/views/seller/shop/shopList.vue
+++ b/manager/src/views/seller/shop/shopList.vue
@@ -111,7 +111,16 @@ export default {
title: "店铺地址",
key: "storeAddressPath",
width: 300,
- tooltip: true
+ tooltip: true,
+ render: (h, params) => {
+ return h(
+ "Tag",
+ {
+
+ },
+ params.row.storeAddressPath || "暂未填写"
+ );
+ },
},
{
title: "是否自营",
diff --git a/seller/src/store/modules/app.js b/seller/src/store/modules/app.js
index a0c3d292..8e896575 100644
--- a/seller/src/store/modules/app.js
+++ b/seller/src/store/modules/app.js
@@ -6,6 +6,7 @@ import Vue from 'vue';
const app = {
state: {
+ shipTemplates:"",
styleStore:"", //移动端楼层装修中选择风格存储
loading: false, // 全局加载动画
added: false, // 加载路由标识
@@ -30,7 +31,7 @@ const app = {
path: '',
name: 'home_index'
}
- ],
+ ],
// 面包屑数组 左侧菜单
menuList: [],
routers: [
diff --git a/seller/src/views/lili-components/multiple-region.vue b/seller/src/views/lili-components/multiple-region.vue
index b73b2c96..34b78ed7 100644
--- a/seller/src/views/lili-components/multiple-region.vue
+++ b/seller/src/views/lili-components/multiple-region.vue
@@ -7,7 +7,7 @@