|
@@ -48,8 +48,8 @@
|
|
|
<div class="box-bg"></div>
|
|
<div class="box-bg"></div>
|
|
|
<div class="box-tit">
|
|
<div class="box-tit">
|
|
|
<div>
|
|
<div>
|
|
|
- <img src="/native/tabbar/icon_kapai_shangjia_da@3x.png" alt="" />
|
|
|
|
|
- <p>光之城卡牌</p>
|
|
|
|
|
|
|
+ <img :src="store.logo" alt="" />
|
|
|
|
|
+ <p>{{ store.storeName }}</p>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="box-tit-seller" @click="seller">联系卖家</div>
|
|
<div class="box-tit-seller" @click="seller">联系卖家</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -215,7 +215,9 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
|
+import store from '../mixins/store';
|
|
|
export default {
|
|
export default {
|
|
|
|
|
+ mixins: [store],
|
|
|
name: '',
|
|
name: '',
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
@@ -235,8 +237,9 @@ export default {
|
|
|
caseId: '',
|
|
caseId: '',
|
|
|
minters: 0,
|
|
minters: 0,
|
|
|
seconds: 0,
|
|
seconds: 0,
|
|
|
- allTime: 5 * 60 - 1,
|
|
|
|
|
- closeTime: ''
|
|
|
|
|
|
|
+ allTime: 5 * 60,
|
|
|
|
|
+ closeTime: '',
|
|
|
|
|
+ store: {}
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
@@ -302,6 +305,7 @@ export default {
|
|
|
this.hideLoading();
|
|
this.hideLoading();
|
|
|
this.caseId = res.caseId;
|
|
this.caseId = res.caseId;
|
|
|
this.status = res;
|
|
this.status = res;
|
|
|
|
|
+ this.store = res.store;
|
|
|
this.addressList = res.address;
|
|
this.addressList = res.address;
|
|
|
this.total = res.total;
|
|
this.total = res.total;
|
|
|
this.Boxes = res.cardBoxList;
|
|
this.Boxes = res.cardBoxList;
|
|
@@ -651,7 +655,7 @@ export default {
|
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
|
color: #000000;
|
|
color: #000000;
|
|
|
line-height: 22px;
|
|
line-height: 22px;
|
|
|
- margin-left: 2px;
|
|
|
|
|
|
|
+ margin-left: 9px;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
.box-tit-seller {
|
|
.box-tit-seller {
|