businessStatusWarningOption.vue
9.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<template>
<div class="analysis-option-wrapper basicPassengerFlow">
<div class="panels-content">
<div class="panels-main-bottom">
<ul class="condition-box">
<li class="condition-item">
<span class="condition-item-text spe-item-text" style="line-height: 28px;vertical-align: top;">{{ $t('table.grouping') }}:</span>
<div class="condition-item-option" style="width: 250px;">
<treeselect
v-model="groupIds"
:max-height="300"
class="manage-sel group-parent-sel"
:placeholder="$t('pholder.grouping')"
:load-options="loadOptions"
:options="treeData"
@select="parentChange"
:loadingText="$t('echartsTitle.loading')"
:noChildrenText="$t('echartsTitle.noData')"
/>
</div>
</li>
<li class="condition-item">
<span class="condition-item-text spe-item-text">{{$t('asisTab.date')}}</span>
<div class="condition-item-option">
<div class="time-wrapper newTime">
<el-radio-group v-model="ReportVal" size="small">
<el-radio-button v-for="item in analyasisTime" :key="item.value" :label="item.value">{{i18nFormatter(item.label)}}</el-radio-button>
</el-radio-group>
</div>
</div>
</li>
<li class="condition-item analysis-date-condition">
<div class="condition-item-option">
<el-date-picker class="date-input analysis-date-input" v-show="ReportVal === 'day'" v-model="dayTime" value-format="yyyy-MM-dd" align="right" type="date" size="mini" :placeholder="$t('pholder.date')" :picker-options="pickerOptions1">
</el-date-picker>
<el-date-picker class="date-input analysis-date-input date-week-box" v-show="ReportVal === 'week'" v-model="weekTime" align="right" type="week" :format="datePickerFormatter('week')" size="mini" :placeholder="$t('pholder.week')"
:picker-options="weekPickerOpt">
</el-date-picker>
<el-date-picker class="date-input analysis-date-input date-month-box" v-show="ReportVal === 'month'" v-model="monthTime" align="right" type="month" :format="datePickerFormatter('month')" size="mini" :placeholder="$t('pholder.month')"
:picker-options="pickerOptions1">
</el-date-picker>
<el-date-picker class="date-input analysis-date-input" v-show="ReportVal === 'year'" v-model="yearTime" align="right" type="year" :format="datePickerFormatter('year')" size="mini" :placeholder="$t('pholder.year')" :picker-options="pickerOptions1">
</el-date-picker>
<el-date-picker class="date-input analysis-date-input times-box" v-model="customTime" value-format="yyyy-MM-dd" align="right" type="daterange" size="mini" :picker-options="pickerOptions1" range-separator="-" v-show="ReportVal === 'custom'"
:start-placeholder="$t('table.startTime')" :end-placeholder="$t('table.endTime')">
</el-date-picker>
</div>
</li>
<li class="condition-item btn-condition-item">
<el-button type="primary" class="primary-btn analysis-collapse-btn" size="samll" :disabled="(ReportVal === 'day' && !dayTime) || (ReportVal === 'week' && !weekTime) || (ReportVal === 'month' && !monthTime)
|| (ReportVal === 'year' && !yearTime) || (ReportVal === 'custom' && !customTime)" @click="confirmCondition">{{$t('button.confirm')}}</el-button>
<!-- <el-button class="reset-btn analysis-collapse-btn" size="samll" @click="resetRefresh">{{$t('button.reset')}}</el-button> -->
</li>
</ul>
</div>
</div>
</div>
</template>
<script>
const analyasisTime = ['day', 'week', 'month', 'year', 'custom'].map(item => ({
label: item,
value: item
}))
export default {
data() {
return {
pickerOptions1: {
disabledDate(time) {
return time.getTime() > Date.now();
}
},
weekPickerOpt: {
firstDayOfWeek: window._vionConfig.firstDayOfWeek ? window._vionConfig.firstDayOfWeek : 1
},
analyasisTime,
ReportVal: 'day',
dayTime: '',
weekTime: '',
monthTime: '',
yearTime: '',
customTime: '',
groupIds:-1,
treeData:[],
}
},
mounted() {
let {
dayDate,
weekDate,
monthDate,
yearDate,
customDate
} = this.createDate();
this.dayTime = dayDate;
this.weekTime = weekDate;
this.monthTime = monthDate;
this.yearTime = yearDate;
this.customTime = customDate;
},
watch: {
dayTime(val) {
this.sessionDate('dayDate', val);
},
weekTime(val) {
this.sessionDate('weekDate', val);
},
monthTime(val) {
this.sessionDate('monthDate', val);
},
yearTime(val) {
this.sessionDate('yearDate', val);
},
customTime(val) {
this.sessionDate('customDate', val);
}
},
methods: {
loadOptions({ action, callback, parentNode, instanceId }) {
if (action == "LOAD_CHILDREN_OPTIONS") {
if (!parentNode.children) {
simulateAsyncOperation(() => {
callback(null);
});
}
}
},
parentChange(node) {
this.groupIds = node.id;
},
getGroup() {
this.$api.management.groupList({accountId: this.$cookie.get("accountId") }).then(res => {
var result = res.data.data;
this.treeData = this.creatRoot(result);
});
},
creatRoot(result) {
let rootNode = [
{
label: this.$cookie.get("accountName"),
name: this.$cookie.get("accountName"),
nameEn: "",
id: -1,
accountId: this.$cookie.get("accountId")
}
];
this.creatTreeData(rootNode, result);
return rootNode;
},
creatTreeData(treeData, datas) {
treeData.forEach(item => {
var flag = false;
item.children = [];
datas.forEach(item2 => {
if (item2.pid == item.id) {
var objs = {
label: item2.name,
id: item2.id
};
flag = true;
item.children.push(objs);
}
});
if (flag) {
this.creatTreeData(item.children, datas);
} else {
item.children = null;
}
});
},
i18nFormatter(label) {
let langeLabel = 'asisTab.' + label;
return this.$t(langeLabel)
},
initAsis() {
let data = {
asis_time: this.dayTime,
}
let timeObj = this.newDateFormat(
this.ReportVal,
new Date(data.asis_time)
);
data.startDate = timeObj.startTime;
data.endDate = timeObj.endTime;
this.getGroup()
this.$emit('initData', data);
},
confirmCondition() {
let emitObj = {};
emitObj.asis_time = this[this.ReportVal + 'Time'];
emitObj.groupId = this.groupIds;
if (this.ReportVal == "custom") {
emitObj.startDate = this.customTime[0];
emitObj.endDate = this.customTime[1];
} else {
let timeObj = this.newDateFormat(
this.ReportVal,
new Date(emitObj.asis_time)
);
emitObj.startDate = timeObj.startTime;
emitObj.endDate = timeObj.endTime;
}
this.$emit('reportTime', emitObj);
},
resetRefresh() {
this.ReportVal = 'day'
this.dayTime = dateUnit.dateFormat(new Date(), 'yyyy-MM-dd')
this.weekTime = new Date(); // 周时间
this.monthTime = new Date(); // 月时间
this.yearTime = new Date(); // 年时间
this.customTime = [this.dayReduce(new Date(), 15), dateUnit.dateFormat(new Date(), 'yyyy-MM-dd')];
}
},
}
</script>
<style scoped>
.times-box {
height: 30px;
line-height: 30px;
}
.newTime {
width: auto;
}
</style>