|
@@ -42,7 +42,7 @@
|
|
|
|
|
|
<Topsearch
|
|
<Topsearch
|
|
ref="topsearch"
|
|
ref="topsearch"
|
|
- :list="list"
|
|
|
|
|
|
+ :list="set_list"
|
|
@init="init"
|
|
@init="init"
|
|
@searchData="init"
|
|
@searchData="init"
|
|
></Topsearch>
|
|
></Topsearch>
|
|
@@ -284,6 +284,11 @@ export default {
|
|
this.$forceUpdate();
|
|
this.$forceUpdate();
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
+ computed:{
|
|
|
|
+ set_list(){
|
|
|
|
+ return this.list
|
|
|
|
+ }
|
|
|
|
+ },
|
|
methods: {
|
|
methods: {
|
|
handleGoDeOrder() {
|
|
handleGoDeOrder() {
|
|
this.$router.push({
|
|
this.$router.push({
|
|
@@ -326,6 +331,7 @@ export default {
|
|
params: { order_no: this.$route.query.order_no },
|
|
params: { order_no: this.$route.query.order_no },
|
|
}).then((res) => {
|
|
}).then((res) => {
|
|
res.data.house.map((v) => {
|
|
res.data.house.map((v) => {
|
|
|
|
+ console.log('v :>> ', v);
|
|
v.value = v.house;
|
|
v.value = v.house;
|
|
v.label = v.house;
|
|
v.label = v.house;
|
|
});
|
|
});
|
|
@@ -342,8 +348,8 @@ export default {
|
|
v.label = v.number_detail;
|
|
v.label = v.number_detail;
|
|
});
|
|
});
|
|
res.data.product.map((v) => {
|
|
res.data.product.map((v) => {
|
|
- v.value = v.product;
|
|
|
|
- v.label = v.product;
|
|
|
|
|
|
+ v.value = v.title;
|
|
|
|
+ v.label = v.title;
|
|
});
|
|
});
|
|
res.data.url_number.map((v) => {
|
|
res.data.url_number.map((v) => {
|
|
v.value = v.url_number;
|
|
v.value = v.url_number;
|