|
|
@@ -1,7 +1,7 @@
|
|
|
<config>
|
|
|
{
|
|
|
"navigationBarBackgroundColor": "#ff6c00",
|
|
|
- "navigationBarTextStyle": "black",
|
|
|
+ "navigationBarTextStyle": "white",
|
|
|
"backgroundTextStyle":"light"
|
|
|
}
|
|
|
</config>
|
|
|
@@ -46,12 +46,12 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="box-bg"></div>
|
|
|
- <div class="box-tit">
|
|
|
+ <div class="box-tit" @click="navigateTo('/pages/store/homePage?id=' + store.id)">
|
|
|
<div>
|
|
|
<img src="/native/tabbar/icon_kapai_shangjia_da@3x.png" alt="" />
|
|
|
- <p>光之城卡牌</p>
|
|
|
+ <p>{{ store.storeName }}</p>
|
|
|
</div>
|
|
|
- <div class="box-tit-seller" @click="seller">联系卖家</div>
|
|
|
+ <div class="box-tit-seller" @click.stop="wait">联系卖家</div>
|
|
|
</div>
|
|
|
<div v-for="(item, index) in Boxes" :key="index.id">
|
|
|
<div class="box-con">
|
|
|
@@ -239,6 +239,11 @@ export default {
|
|
|
closeTime: ''
|
|
|
};
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ store() {
|
|
|
+ return this.status.store || {};
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
logisticShow() {
|
|
|
this.show = false;
|