|
@@ -66,16 +66,16 @@
|
|
|
<div class="rec_body">
|
|
|
<ul>
|
|
|
<li v-for="(item, index) in UserData.recentProfitList" :key="index" v-if="index<5"
|
|
|
- @click="jumpToDetail(item.ID, item.Type)">
|
|
|
- <img :src="item.SceneIcon" />
|
|
|
+ @click="jumpToDetail(item.id, item.type)">
|
|
|
+ <img :src="item.sceneIcon" />
|
|
|
<div>
|
|
|
- <p>{{ typeTips[item.Type] }}</p>
|
|
|
- <p>{{ item.OrderCode }}</p>
|
|
|
- <p>{{ item.CreateTime |compatibleDate}}</p>
|
|
|
+ <p>{{ typeTips[item.type] }}</p>
|
|
|
+ <p>{{ item.orderCode }}</p>
|
|
|
+ <p>{{ item.createTime |compatibleDate}}</p>
|
|
|
</div>
|
|
|
<div>
|
|
|
- <p class="price_red">+{{ item.Price | getPrice }}</p>
|
|
|
- <p>{{ statusTips[item.Status] }}</p>
|
|
|
+ <p class="price_red">+{{ item.price | getPrice }}</p>
|
|
|
+ <p>{{ statusTips[item.status] }}</p>
|
|
|
</div>
|
|
|
</li>
|
|
|
</ul>
|
|
@@ -401,7 +401,7 @@
|
|
|
this.onshow = show;
|
|
|
},
|
|
|
getPrice(val) {
|
|
|
- let valout = isNaN(val) || val ==0 ? 0: (val / 100).toFixed(2);
|
|
|
+ let valout = isNaN(val)|| Number(val) || val ==0 ? 0: (val / 100).toFixed(2);
|
|
|
return valout;
|
|
|
},
|
|
|
getCaption(obj) {
|
|
@@ -478,13 +478,13 @@
|
|
|
console.log(res);
|
|
|
this.$toast.clear();
|
|
|
this.UserData = {
|
|
|
- cumulativePrice: "",
|
|
|
- withdrawablePrice: "",
|
|
|
- toBeRecordedPrice: "",
|
|
|
- withdrawingPrice: "",
|
|
|
+ cumulativePrice: 0,
|
|
|
+ withdrawablePrice: 0,
|
|
|
+ toBeRecordedPrice: 0,
|
|
|
+ withdrawingPrice: 0,
|
|
|
recentProfitList: []
|
|
|
};
|
|
|
- if (res.data.success==1) {
|
|
|
+ if (res.data.success) {
|
|
|
let sum = 0;
|
|
|
this.UserData = res.data.result;
|
|
|
res.data.result.dailyProfitList.forEach((item, index) => {
|
|
@@ -498,7 +498,7 @@
|
|
|
} else {
|
|
|
this.$toast(res.data.message);
|
|
|
}
|
|
|
- console.log(this.UserData);
|
|
|
+ // console.log(this.UserData);
|
|
|
});
|
|
|
},
|
|
|
//过滤时间选取月份
|
|
@@ -524,11 +524,11 @@
|
|
|
// })[0].TotalProfitPrice;
|
|
|
var maxi = 0;
|
|
|
for (var i = 0; i < arr.length; i++) {
|
|
|
- if (arr[maxi].TotalProfitPrice <= arr[i].TotalProfitPrice) {
|
|
|
+ if (arr[maxi].totalProfitPrice <= arr[i].totalProfitPrice) {
|
|
|
maxi = i;
|
|
|
}
|
|
|
}
|
|
|
- return this.getPrice(arr[maxi].TotalProfitPrice + 10000);
|
|
|
+ return this.getPrice(arr[maxi].totalProfitPrice + 10000);
|
|
|
// console.log(max);
|
|
|
// arr.map((i,item)=>{
|
|
|
// if(item.TotalProfitPrice<)
|