@@ -341,7 +341,7 @@ export default {
align: "center",
},
{
- title: "圈层名称",
+ title: "区域名称",
key: "title",
minWidth: 120,
sortable: true,
@@ -377,7 +377,7 @@ export default {
},
},
},
- "添加子圈层"
+ "添加子区域"
),
h("Divider", {
props: {
@@ -471,7 +471,7 @@ export default {
// 头部加入一级
let first = {
id: "0",
- title: "一级圈层",
+ title: "一级区域",
};
res.result.unshift(first);
this.dataEdit = res.result;
@@ -582,7 +582,7 @@ export default {
this.$refs.form.validate((valid) => {
if (valid) {
if (!this.form.id) {
- this.$Message.warning("请先点击选择要修改的圈层");
+ this.$Message.warning("请先点击选择要修改的区域");
return;
}
this.submitLoading = true;
@@ -618,7 +618,7 @@ export default {
add() {
if (this.form.id == "" || this.form.id == null) {
if (this.isDepartmentAgent) {
- this.modalTitle = "添加子圈层";
+ this.modalTitle = "添加子区域";
this.showParent = true;
this.addParentTitle = this.userDepartmentTitle;
this.formAdd = {
@@ -630,10 +630,10 @@ export default {
this.modalVisible = true;
return;
}
- this.$Message.warning("请先点击选择一个圈层");
+ this.$Message.warning("请先点击选择一个区域");
return;
}
- this.modalTitle = "添加子圈层";
+ this.modalTitle = "添加子区域";
this.showParent = true;
this.addParentTitle = this.form.title;
if (!this.form.children) {
@@ -651,7 +651,7 @@ export default {
if (this.isDepartmentAgent) {
return;
}
- this.modalTitle = "添加一级圈层";
+ this.modalTitle = "添加一级区域";
this.showParent = false;
this.addParentTitle = "";
this.formAdd = {
diff --git a/src/views/sys/order-manage/logisticsAddress.vue b/src/views/sys/order-manage/logisticsAddress.vue
index a7a9338..49929a9 100644
--- a/src/views/sys/order-manage/logisticsAddress.vue
+++ b/src/views/sys/order-manage/logisticsAddress.vue
@@ -5,6 +5,7 @@
订单信息
订单编号:{{orderData.numberCode}}
支付订单编号:{{'ORDER'+orderData.id}}
+ 订单类型:{{getOrderTypeText(orderData.orderType)}}
订单状态:{{getOrderStatusText(orderData)}}
创建时间:{{orderData.createTime | formatDateTime}}
支付时间:{{orderData.payTime | formatDateTime}}
@@ -368,6 +369,12 @@
if (status == 5) return "拒绝售后";
return "";
},
+ getOrderTypeText(orderType) {
+ if (orderType == 1) return "直接购买";
+ if (orderType == 2) return "拼团购买";
+ if (orderType == 3) return "面对面团";
+ return "";
+ },
getOrderStatusText(item) {
if (!item) return "";
if (item.status == 0) return "待支付";
diff --git a/vue.config.js b/vue.config.js
index cc370ea..162255a 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -7,8 +7,8 @@ module.exports = {
port: 8889,
proxy: {
'/hiver': {
- target: 'https://hbkuaishi.com', // 正式1
- // target: 'http://192.168.100.34:8888', // 本地
+ // target: 'https://hbkuaishi.com', // 正式1
+ target: 'http://192.168.100.34:8888', // 本地
ws: false
},
'/foo': {