Commit 46de911a by zhangzhen

1

parent e9f9f42e
......@@ -16,7 +16,7 @@
<text class="cuIcon cuIcon-title text-pink"></text>
<text class="text-title text-bold text-xl">{{item.storeName||'门店名称'}}</text>
</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 class="flex-row room-image-box">
......@@ -166,7 +166,8 @@ import NoLogin from "@/components/noLogin/noLogin"
refundStatusEnum:{
1:'退款中',
2:'退款中',
3:'已退款'
3:'已退款',
4:'拒绝退款'
}
};
},
......@@ -197,6 +198,8 @@ import NoLogin from "@/components/noLogin/noLogin"
uni.setStorageSync('dicts', JSON.stringify(res.data.data))
this.orderStatusEnum = getDictItem(dicts, "store_order_status");
this.roomTypeEnum = getDictItem(dicts, "store_room_type");
this.refundStatusEnum = getDictItem(dicts, "order_refund_status");
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