|
@@ -22,9 +22,7 @@
|
|
|
:disabled="isEmpty"
|
|
|
class="fr picker"
|
|
|
v-model="daytime"
|
|
|
- :picker-options="{
|
|
|
- disbaledData(time) { return time.getTime() > Date.now(); }
|
|
|
- }"
|
|
|
+ :picker-options="{disbaledData(time) { return time.getTime() > Date.now(); }}"
|
|
|
placeholder="选择日期"
|
|
|
style=";width:150px"
|
|
|
value-format="yyyy-MM-dd"
|
|
@@ -208,21 +206,15 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
|
|
|
- this.total = list.reduce((prev,current) => {
|
|
|
+ this.total = list.reduce((prev, current) =>
|
|
|
+ {
|
|
|
const { total_tips = 0, day = 0, month = 0 } = current;
|
|
|
return { total_tips: addition(total_tips,prev.total_tips), month: addition(month,prev.month), day: addition(day, prev.day) }
|
|
|
},
|
|
|
- {
|
|
|
- total_tips: 0,
|
|
|
- month: 0,
|
|
|
- day: 0
|
|
|
- }
|
|
|
+ { total_tips: 0, month: 0, day: 0 }
|
|
|
)
|
|
|
|
|
|
-
|
|
|
let mapDepart = ["百辰","泓源","普润","平台"]
|
|
|
-
|
|
|
-
|
|
|
list = mapDepart.map(d => list.find(({ depart }) => depart === d))
|
|
|
const mapToDepartment = { 百辰:"客服部@百辰荣达", 泓源:"网络部@泓源广诚", 普润:" 项目部@普润心堂", 平台:" 平台部@万宇恒通" }
|
|
|
|
|
@@ -263,7 +255,7 @@ export default {
|
|
|
.search {
|
|
|
height:36px;
|
|
|
display: flex;
|
|
|
- justify-content: end;
|
|
|
+ justify-content: flex-end;
|
|
|
padding:0px 10px;
|
|
|
margin-top:10px
|
|
|
}
|