Commit 46de911a by zhangzhen

1

parent e9f9f42e
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<text class="cuIcon cuIcon-title text-pink"></text> <text class="cuIcon cuIcon-title text-pink"></text>
<text class="text-title text-bold text-xl">{{item.storeName||'门店名称'}}</text> <text class="text-title text-bold text-xl">{{item.storeName||'门店名称'}}</text>
</view> </view>
<text :class="item.status==1?'text-pink':item.status==0?'text-cyan':item.status==2?'text-gray':'text-red'">{{item.status>=3? refundStatusEnum[item.refundStatus]: orderStatusEnum[item.status]}}</text> <text :class="item.status==1?'text-pink':item.status==0?'text-cyan':item.status==2?'text-gray':'text-red'">{{item.refundStatus>=1? refundStatusEnum[item.refundStatus]: orderStatusEnum[item.status]}}</text>
</view> </view>
<view class="flex-row room-image-box"> <view class="flex-row room-image-box">
...@@ -166,7 +166,8 @@ import NoLogin from "@/components/noLogin/noLogin" ...@@ -166,7 +166,8 @@ import NoLogin from "@/components/noLogin/noLogin"
refundStatusEnum:{ refundStatusEnum:{
1:'退款中', 1:'退款中',
2:'退款中', 2:'退款中',
3:'已退款' 3:'已退款',
4:'拒绝退款'
} }
}; };
}, },
...@@ -197,6 +198,8 @@ import NoLogin from "@/components/noLogin/noLogin" ...@@ -197,6 +198,8 @@ import NoLogin from "@/components/noLogin/noLogin"
uni.setStorageSync('dicts', JSON.stringify(res.data.data)) uni.setStorageSync('dicts', JSON.stringify(res.data.data))
this.orderStatusEnum = getDictItem(dicts, "store_order_status"); this.orderStatusEnum = getDictItem(dicts, "store_order_status");
this.roomTypeEnum = getDictItem(dicts, "store_room_type"); this.roomTypeEnum = getDictItem(dicts, "store_room_type");
this.refundStatusEnum = getDictItem(dicts, "order_refund_status");
this.onLoading() this.onLoading()
}) })
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment