|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<view class="box">
|
|
|
|
|
|
- <view class="top">
|
|
|
+ <view class="top" :style="{background:'#'+themeColor}">
|
|
|
<view class="orderState">
|
|
|
<image src="../../static/img/icon_order_def.png" mode="" style="width: 44rpx;height: 44rpx;"></image>
|
|
|
|
|
@@ -107,14 +107,16 @@
|
|
|
location: '',
|
|
|
id: '',
|
|
|
orderData: '',
|
|
|
-
|
|
|
+ themeColor:'',
|
|
|
+
|
|
|
|
|
|
}
|
|
|
},
|
|
|
onLoad(opt) {
|
|
|
|
|
|
this.id = opt.id
|
|
|
-
|
|
|
+ this.themeColor = uni.getStorageSync("themeColor");
|
|
|
+
|
|
|
this.getData()
|
|
|
|
|
|
|
|
@@ -199,7 +201,7 @@
|
|
|
|
|
|
.top {
|
|
|
height: 190rpx;
|
|
|
- background-color: #FF0000;
|
|
|
+ background: #FF0000;
|
|
|
|
|
|
}
|
|
|
|