...
|
...
|
@@ -29,11 +29,12 @@ |
|
|
<div class="goods-total">合计: <b>¥{{order.amount}}</b></div>
|
|
|
<div class="options">
|
|
|
<button v-if="order.status === 0" @click="cancelOrder(order.orderCode)">取消订单</button>
|
|
|
<button v-if="order.status === 0 " class="countdown" @click="goBuy(order.orderCode)">去支付 <span v-count-down v-bind:left-time="order.payLefttime" v-bind:callback="autoCancel(order.orderCode)"></span></button>
|
|
|
<button v-if="order.status === 0 " class="countdown" @click="goBuy(order.orderCode)">去支付
|
|
|
<span v-count-down v-bind:left-time="order.payLefttime" v-bind:callback="autoCancel(order.orderCode)"></span>
|
|
|
</button>
|
|
|
<button v-if="order.status === 4 || order.status === 5 " @click="seeExpress(order.orderCode)">查看物流</button>
|
|
|
<button v-if="order.status === 4 || order.status === 5 " class="black" @click="confirmGoods(order.orderCode)">确认收货</button>
|
|
|
<button v-if="order.status === 6" @click="deleteOrder(order,index)">删除订单</button>
|
|
|
<button v-if="order.status === 6" class="normal">再次购买</button>
|
|
|
<button v-if="order.status === 6" @click="deleteOrder(order,index)" class="normal">删除订单</button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
...
|
...
|
@@ -42,7 +43,7 @@ |
|
|
<div class="order-empty {{emptybox}}">
|
|
|
<p>您暂时还没有订单</p>
|
|
|
<p>Your do not have an order <br>for the time being</p>
|
|
|
<a href="">去购物</a>
|
|
|
<a href="/new">去购物</a>
|
|
|
</div>
|
|
|
<select id="cancel-reason" class="cancel-reason" v-on:change="reasonChange" v-model="selected">
|
|
|
<option v-for="option in options" v-bind:value="{id:option.id}">{{option.reason}}</option>
|
...
|
...
|
@@ -243,4 +244,4 @@ body { |
|
|
@import "../../scss/me/_order.css";
|
|
|
|
|
|
|
|
|
</style> |
|
|
\ No newline at end of file |
|
|
</style> |
...
|
...
|
|