diff --git a/.env.production b/.env.production
index 1a14ebd..ead28de 100644
--- a/.env.production
+++ b/.env.production
@@ -3,3 +3,4 @@ ENV = 'production'
# 接口地址
VUE_APP_BASE_API = 'https://app2.yixiang.co'
VUE_APP_WS_API = 'ws:///127.0.0.1:8001'
+
diff --git a/src/views/shop/set/form.vue b/src/views/shop/set/form.vue
index 93f6902..05864fd 100644
--- a/src/views/shop/set/form.vue
+++ b/src/views/shop/set/form.vue
@@ -13,6 +13,9 @@
+
+
+
@@ -54,7 +57,8 @@ export default {
pic: '',
imageArr: [],
sort: 0,
- status: 1
+ status: 1,
+ color: ''
},
rules: {
}
@@ -120,7 +124,8 @@ export default {
pic: '',
imageArr: [],
sort: 0,
- status: 1
+ status: 1,
+ color: null
}
}
}
diff --git a/src/views/shop/set/index.vue b/src/views/shop/set/index.vue
index 2964fc3..665bacb 100644
--- a/src/views/shop/set/index.vue
+++ b/src/views/shop/set/index.vue
@@ -27,6 +27,7 @@
+
@@ -128,7 +129,8 @@ export default {
pic: data.map.pic,
imageArr: data.map.pic ? data.map.pic.split(',') : [],
sort: data.sort,
- status: data.status
+ status: data.status,
+ color: data.map.color
}
_this.dialog = true
}