mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-18 00:45:54 +08:00
Merge branch 'ma'
This commit is contained in:
@@ -80,7 +80,6 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
btnWay, // 按钮类型
|
||||
type: "full", // 展示方式
|
||||
//全屏广告
|
||||
advertising: [
|
||||
|
||||
@@ -171,7 +171,7 @@
|
||||
<div class="div-zoom">
|
||||
<a @click="linkTo(row.goodsId,row.skuId)">{{row.goodsName}}</a>
|
||||
</div>
|
||||
<span v-for="(item, key) in JSON.parse(row.specs)">
|
||||
<span v-for="(item, key) in JSON.parse(row.specs)" :key="key">
|
||||
<span v-show="key!='images'" style="font-size: 12px;color: #999999;">
|
||||
{{key}} : {{item}}
|
||||
</span>
|
||||
@@ -245,9 +245,8 @@
|
||||
</Form>
|
||||
</div>
|
||||
<div slot="footer" style="text-align: right">
|
||||
<Button type="success" size="large" @click="modifyPriceSubmit"
|
||||
>调整</Button
|
||||
>
|
||||
<Button @click="modal = false">关闭</Button>
|
||||
<Button type="primary" @click="modifyPriceSubmit">调整</Button>
|
||||
</div>
|
||||
</Modal>
|
||||
<!-- 订单取消模态框 -->
|
||||
@@ -275,9 +274,8 @@
|
||||
</Form>
|
||||
</div>
|
||||
<div slot="footer" style="text-align: right">
|
||||
<Button type="success" size="large" @click="orderCancelSubmit"
|
||||
>取消</Button
|
||||
>
|
||||
<Button @click="orderCancelModal = false">关闭</Button>
|
||||
<Button type="primary" @click="orderCancelSubmit">确认</Button>
|
||||
</div>
|
||||
</Modal>
|
||||
<!--收件地址弹出框-->
|
||||
@@ -340,8 +338,8 @@
|
||||
</Form>
|
||||
</div>
|
||||
<div slot="footer" style="text-align: right">
|
||||
<Button type="success" size="large" @click="editAddressSubmit">修改</Button
|
||||
>
|
||||
<Button @click="addressModal = false">关闭</Button>
|
||||
<Button type="primary" @click="editAddressSubmit">修改</Button>
|
||||
</div>
|
||||
</Modal>
|
||||
<!-- 订单日志 -->
|
||||
|
||||
@@ -169,14 +169,16 @@
|
||||
<p class="item">
|
||||
<span class="label">结算周期:</span>
|
||||
<span class="info" v-if="storeInfo.settlementCycle">
|
||||
<template v-for="item in storeInfo.settlementCycle.split(',')">
|
||||
<Tag
|
||||
v-for="item in storeInfo.settlementCycle.split(',')"
|
||||
:key="item"
|
||||
v-if="item!==''"
|
||||
:name="item"
|
||||
style="marrgin-left: 10px"
|
||||
>{{ item }}
|
||||
</Tag>
|
||||
:key="item"
|
||||
v-if="item!==''"
|
||||
:name="item"
|
||||
style="marrgin-left: 10px"
|
||||
>{{ item }}
|
||||
</Tag>
|
||||
</template>
|
||||
|
||||
</span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user