|
|
|
@ -1,12 +1,12 @@
|
|
|
|
|
<template>
|
|
|
|
|
<view>
|
|
|
|
|
<view class="order">
|
|
|
|
|
<view class="order" :class="['theme', themeObj.name]">
|
|
|
|
|
<!-- 收货地址 -->
|
|
|
|
|
<view class="order_address">
|
|
|
|
|
<image src="/static/images/home/bottom.png"></image>
|
|
|
|
|
<view class="address_box">
|
|
|
|
|
<view class="weizhi_icon">
|
|
|
|
|
<text class="iconfont icon-dizhi" :style="'color:' + colors"></text>
|
|
|
|
|
<text class="iconfont icon-dizhi" ></text>
|
|
|
|
|
</view>
|
|
|
|
|
<block>
|
|
|
|
|
<view class="center">
|
|
|
|
@ -31,7 +31,7 @@
|
|
|
|
|
规格: {{item.specs}}
|
|
|
|
|
</view>
|
|
|
|
|
<view class="price">
|
|
|
|
|
<view class="t1" :style="'color:' + colors">¥{{item.price}}</view>
|
|
|
|
|
<view class="t1">¥{{item.price}}</view>
|
|
|
|
|
<view class="t3">
|
|
|
|
|
x{{item.goodsNo}}{{item.unit}}
|
|
|
|
|
</view>
|
|
|
|
@ -52,9 +52,9 @@
|
|
|
|
|
<view class="btns" style="margin-right: 40upx;" @click="onafterSale(item)">
|
|
|
|
|
申请售后
|
|
|
|
|
</view>
|
|
|
|
|
<view class="btns"
|
|
|
|
|
<view class="btns btn-item1"
|
|
|
|
|
|
|
|
|
|
@click="onevaluate(item)" :style="{borderColor:colors,color:colors}">
|
|
|
|
|
@click="onevaluate(item)">
|
|
|
|
|
{{ item.commitId ? '查看评价' : '去评价'}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
@ -76,7 +76,7 @@
|
|
|
|
|
</view>
|
|
|
|
|
<view class="morelist">
|
|
|
|
|
<view class="title">
|
|
|
|
|
<text class="quan" :style="'background:' + colors">运</text>
|
|
|
|
|
<text class="quan" >运</text>
|
|
|
|
|
<text>运费</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="right_title">
|
|
|
|
@ -85,7 +85,7 @@
|
|
|
|
|
</view>
|
|
|
|
|
<view class="morelist">
|
|
|
|
|
<text class="title">实付款</text>
|
|
|
|
|
<view class="right_title" :style="'color:' + colors + ';'">
|
|
|
|
|
<view class="right_title" >
|
|
|
|
|
¥{{goods.totalAmount}}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
@ -135,7 +135,7 @@
|
|
|
|
|
<view class="bottom_btn" >
|
|
|
|
|
<block v-if="goods.state == 0">
|
|
|
|
|
<view class="moneys">
|
|
|
|
|
合计: <text :style="'color:' + colors + ';'">¥{{goods.totalAmount}}</text>
|
|
|
|
|
合计: <text >¥{{goods.totalAmount}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="btns"
|
|
|
|
|
:style="'color:' + colors + ';border:1upx solid ' + colors + ';margin-right:20upx'"
|
|
|
|
@ -184,7 +184,8 @@ import loading from "../../commponent/public/loading";
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
colors: '',
|
|
|
|
|
colors: app.globalData.newColor,
|
|
|
|
|
themeObj: app.globalData.themeObj,
|
|
|
|
|
status: 0,
|
|
|
|
|
//订单状态
|
|
|
|
|
isShow: true,
|
|
|
|
@ -232,14 +233,8 @@ export default {
|
|
|
|
|
onLoad: function (options) {
|
|
|
|
|
let status = 0;
|
|
|
|
|
if (options.status) {
|
|
|
|
|
status = options.status;
|
|
|
|
|
this.status = options.status;
|
|
|
|
|
}
|
|
|
|
|
this.setData({
|
|
|
|
|
colors: app.globalData.newColor,
|
|
|
|
|
status: status
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
this.setData({
|
|
|
|
|
isShow: false
|
|
|
|
@ -885,7 +880,6 @@ page {
|
|
|
|
|
}
|
|
|
|
|
.shouhou {
|
|
|
|
|
border: 1upx solid #ddd;
|
|
|
|
|
color: #999!important;
|
|
|
|
|
font-weight: normal!important;
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
</style>
|