manage-client 3.3.57 → 3.3.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/build/dev-server.js +21 -34
  2. package/package.json +1 -1
  3. package/src/components/webmeter/instruction/NewQueryInstruct.vue +61 -7
  4. package/src/components/webmeter/reportdata/ReportDataQuery.vue +0 -6
  5. package/src/filiale/WEINAN/CancellationQuery.vue +74 -0
  6. package/src/filiale/WEINAN/ChargeQuery.vue +58 -1
  7. package/src/filiale/WEINAN/DeviceQuery.vue +63 -0
  8. package/src/filiale/WEINAN/DisableQuery.vue +74 -0
  9. package/src/filiale/WEINAN/EnableQuery.vue +74 -0
  10. package/src/filiale/WEINAN/FillGasQuery.vue +74 -0
  11. package/src/filiale/WEINAN/InspectListUser.vue +35 -0
  12. package/src/filiale/WEINAN/MergeFileQuery.vue +77 -1
  13. package/src/filiale/WEINAN/MeterQuery.vue +58 -0
  14. package/src/filiale/WEINAN/NewAccountQuery.vue +58 -0
  15. package/src/filiale/WEINAN/OtherChargeQuery.vue +58 -0
  16. package/src/filiale/WEINAN/RecordInfoQuery.vue +58 -0
  17. package/src/filiale/WEINAN/UserGasAll.vue +63 -0
  18. package/src/filiale/WEINAN/UserGasList.vue +59 -0
  19. package/src/filiale/WEINAN/UserLostContactAnalysis.vue +63 -0
  20. package/src/filiale/WEINAN/UserQuery.vue +63 -0
  21. package/src/filiale/WEINAN/businessquery/FillCardQuery.vue +643 -0
  22. package/src/filiale/WEINAN/businessquery/HandplanQuery.vue +1428 -0
  23. package/src/filiale/WEINAN/businessquery/MoveMeterQuery.vue +477 -0
  24. package/src/filiale/WEINAN/businessquery/ReverseQuery.vue +512 -0
  25. package/src/filiale/WEINAN/businessquery/TransferQuery.vue +553 -0
  26. package/src/filiale/WEINAN/businessquery/UserInsured.vue +483 -0
  27. package/src/filiale/WEINAN/businessquery/priceadjustQuery.vue +535 -0
  28. package/src/filiale/WEINAN/config/exportConfig.js +41 -38
  29. package/src/filiale/WEINAN/filesquery/ChangeUserQuery.vue +468 -0
  30. package/src/filiale/WEINAN/filesquery/FmyGasDeviceQuery.vue +911 -0
  31. package/src/filiale/WEINAN/filesquery/GasDeviceQuery.vue +1021 -0
  32. package/src/filiale/WEINAN/filesquery/PriceChangeQuery.vue +468 -0
  33. package/src/filiale/WEINAN/filesquery/UserDeviceQuery.vue +505 -0
  34. package/src/filiale/WEINAN/manage/ChangeMeterQuery.vue +63 -0
  35. package/src/filiale/WEINAN/sale.js +23 -2
  36. package/src/filiale/WEINAN/webmeter/LostContactAnalysisList.vue +692 -0
  37. package/src/filiale/WEINAN/webmeter/NewQueryInstruct.vue +564 -0
  38. package/src/filiale/WEINAN/webmeter/ReportList.vue +483 -0
  39. package/src/filiale/WEINAN/webmeter/TotalExceptionByMeter.vue +665 -0
  40. package/src/filiale/WEINAN/webmeter/UserInstructEchartsList.vue +242 -0
  41. package/src/filiale/WEINAN/webmeter/UserInstructList.vue +390 -0
  42. package/src/filiale/WEINAN/webmeterManage.js +13 -0
  43. package/src/filiale/lixianV3/BusinessManage.vue +3 -0
  44. package/src/filiale/shanxian/UserLostContactAnalysis.vue +35 -3
@@ -0,0 +1,1021 @@
1
+ <template>
2
+ <div id="unit" class="flex-row">
3
+ <div class="basic-main" @keyup.enter="search" v-if="!show">
4
+ <div class="flex">
5
+ <div style="flex:1;" class="flex" >
6
+ <criteria-paged :model="model" v-ref:paged @sort="sort">
7
+ <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
8
+ <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
9
+ <div class="row">
10
+ <div class="col-sm-2 form-group">
11
+ <label class="font_normal_body">客户编号</label>
12
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_userinfo_code"
13
+ condition="f_userinfo_code = '{}' " placeholder="客户编号">
14
+ </div>
15
+ <div class="col-sm-2 form-group">
16
+ <label class="font_normal_body">客户名称</label>
17
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
18
+ condition="f_user_name = '{}'" placeholder="客户名称">
19
+ </div>
20
+ <div class="col-sm-2 form-group">
21
+ <label class="font_normal_body">客户电话</label>
22
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_user_phone"
23
+ condition="f_user_phone like '%{}%'" placeholder="客户电话">
24
+ </div>
25
+ <div class="col-sm-2 form-group">
26
+ <label for="startGasDate" class="font_normal_body">通气时间</label>
27
+ <datepicker id="startGasDate" placeholder="开始日期" style="width:60%"
28
+ v-model="model.startGasDate"
29
+ :value.sync="model.startGasDate"
30
+ :format="'yyyy-MM-dd 00:00:00'"
31
+ :show-reset-button="true"
32
+ condition="f_gas_date >= '{}'">
33
+ </datepicker>
34
+ </div>
35
+ <div class="col-sm-2 form-group">
36
+ <label for="endGasDate" class="font_normal_body">至</label>
37
+ <datepicker id="endGasDate" placeholder="结束日期" style="width:60%"
38
+ v-model="model.endGasDate"
39
+ :value.sync="model.endGasDate"
40
+ :format="'yyyy-MM-dd 23:59:59'"
41
+ :show-reset-button="true"
42
+ condition="f_gas_date <= '{}'">
43
+ </datepicker>
44
+ </div>
45
+ <div class="span" style="float:right;">
46
+ <button class="button_search button_spacing" @click="search()">查询</button>
47
+ <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
48
+ <button class="button_clear button_spacing" style="margin-top: 10px;background-color: #6aa6e2;" @click="$parent.$parent.downloadFiles()">导出</button>
49
+ <div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>
50
+ </div>
51
+ </div>
52
+ <div class="row" v-show="$parent.$parent.criteriaShow">
53
+
54
+ <div class="col-sm-2 form-group">
55
+ <label class="font_normal_body">身份证号</label>
56
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_idnumber"
57
+ condition="f_idnumber like '%{}%'" placeholder="身份证号">
58
+ </div>
59
+ <div class="col-sm-2 form-group">
60
+ <label class="font_normal_body">客户地址</label>
61
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_address"
62
+ condition="f_address like '%{}%'" placeholder='客户地址'>
63
+ </div>
64
+ <div class="col-sm-2 form-group">
65
+ <label class="font_normal_body">燃气表号</label>
66
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
67
+ condition="f_meternumber like '%{}%'" placeholder='燃气表号'>
68
+ </div>
69
+ <res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes"></res-select-group>
70
+ <div class="col-sm-2 form-group">
71
+ <label for="startDate" class="font_normal_body">建档日期</label>
72
+ <datepicker id="startDate" placeholder="开始日期" style="width:60%"
73
+ v-model="model.startDate"
74
+ :value.sync="model.startDate"
75
+ :format="'yyyy-MM-dd 00:00:00'"
76
+ :show-reset-button="true"
77
+ condition="f_createfile_date >= '{}'">
78
+ </datepicker>
79
+ </div>
80
+ <div class="col-sm-2 form-group">
81
+ <label for="endDate" class="font_normal_body">结束日期</label>
82
+ <datepicker id="endDate" placeholder="结束日期" style="width:60%"
83
+ v-model="model.endDate"
84
+ :value.sync="model.endDate"
85
+ :format="'yyyy-MM-dd 23:59:59'"
86
+ :show-reset-button="true"
87
+ condition="f_createfile_date <= '{}'">
88
+ </datepicker>
89
+ </div>
90
+ <div class="col-sm-2 form-group">
91
+ <label class="font_normal_body">通气年限</label>
92
+ <input type="number" style="width:60%" class="input_search" v-model="model.diffAllyear1"
93
+ condition="diffAllyear >= {}" placeholder="最小值">
94
+ </div>
95
+ <div class="col-sm-2 form-group">
96
+ <label class="font_normal_body">&nbsp;&nbsp;至&nbsp;&nbsp;&nbsp;</label>
97
+ <input type="number" style="width:60%" class="input_search" v-model="model.diffAllyear2"
98
+ condition="diffAllyear <= {}" placeholder="最大值">
99
+ </div>
100
+ <div class="col-sm-2 form-group">
101
+ <label class="font_normal_body">&nbsp;&nbsp;&nbsp;小区&nbsp;&nbsp;&nbsp;</label>
102
+ <v-select :value.sync="model.f_residential_area"
103
+ class="select_list select"
104
+ enter-push
105
+ multiple = "true"
106
+ v-model="model.f_residential_area"
107
+ style="width: 60%"
108
+ :options='$parent.$parent.residentialArea' placeholder='选择小区'
109
+ close-on-select>
110
+ </v-select>
111
+ </div>
112
+ <div class="col-sm-2 form-group">
113
+ <label for="f_user_usetype" class="font_normal_body ">用气类型</label>
114
+ <v-select :value.sync="model.f_user_usetype" :search="false"
115
+ @change="$parent.$parent.userUseTypeChange()"
116
+ v-model="model.f_user_usetype"
117
+ :options='$parent.$parent.userusetypes'
118
+ condition="f_user_usetype = '{}'"
119
+ placeholder='用气类型'
120
+ value-single="true"
121
+ close-on-select>
122
+ </v-select>
123
+ </div>
124
+ <div class="col-sm-2 form-group">
125
+ <label for="f_use_institution" class="font_normal_body">用气机构</label>
126
+ <v-select :value.sync="model.f_use_institution" :search="false"
127
+ @change="$parent.$parent.userUseInstitutionChange()"
128
+ v-model="model.f_use_institution"
129
+ :options='$parent.$parent.useinstitutions'
130
+ condition="f_use_institution = '{}'"
131
+ placeholder='用气机构'
132
+ value-single="true"
133
+ close-on-select>
134
+ </v-select>
135
+ </div>
136
+ <div class="col-sm-2 form-group">
137
+ <label for="f_user_usenature" class="font_normal_body ">使用性质</label>
138
+ <v-select :value.sync="model.f_user_usenature" :search="false"
139
+ v-model="model.f_user_usenature"
140
+ :options='$parent.$parent.userusenatures'
141
+ condition="f_user_usenature = '{}'"
142
+ placeholder='使用性质'
143
+ value-single="true"
144
+ close-on-select>
145
+ </v-select>
146
+ </div>
147
+ </div>
148
+ </div>
149
+ </criteria>
150
+ <data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid>
151
+ <template partial='head'>
152
+ <tr>
153
+ <th rowspan="2"><nobr>序号</nobr></th>
154
+ <th colspan="5"><nobr>用户信息</nobr></th>
155
+ <th colspan="8"><nobr>燃气表</nobr></th>
156
+ <th colspan="7"><nobr>建档信息</nobr></th>
157
+ <th colspan="7"><nobr>燃气报警装置</nobr></th>
158
+ <th colspan="4"><nobr>燃气灶具</nobr></th>
159
+ <th colspan="5"><nobr>燃气灶具连接管</nobr></th>
160
+ <th colspan="5"><nobr>燃气热水器</nobr></th>
161
+ <th colspan="5"><nobr>燃气热水器连接管</nobr></th>
162
+ <th colspan="5"><nobr>燃气壁挂炉</nobr></th>
163
+ <th colspan="5"><nobr>燃气壁挂炉连接管</nobr></th>
164
+ <th colspan="5"><nobr>燃气保险信息</nobr></th>
165
+ <th colspan="2"><nobr>初次充值信息</nobr></th>
166
+ <th colspan="2"><nobr>每年充值</nobr></th>
167
+ <th colspan="7"><nobr>安检信息</nobr></th>
168
+ <th rowspan="2"><nobr>备注</nobr></th>
169
+ </tr>
170
+
171
+ <tr>
172
+ <!--用户信息-->
173
+ <th><nobr>小区名称</nobr></th>
174
+ <th><nobr>户主姓名</nobr></th>
175
+ <th><nobr>身份证号</nobr></th>
176
+ <th><nobr>客户地址</nobr></th>
177
+ <th><nobr>联系电话</nobr></th>
178
+ <!--燃气表-->
179
+ <th><nobr>品牌</nobr></th>
180
+ <th><nobr>表号</nobr></th>
181
+ <th><nobr>类型</nobr></th>
182
+ <th><nobr>型号</nobr></th>
183
+ <th><nobr>表向</nobr></th>
184
+ <th><nobr>生产年月</nobr></th>
185
+ <th><nobr>超期提醒</nobr></th>
186
+ <th><nobr>变更记录</nobr></th>
187
+ <!--建档信息-->
188
+ <th><nobr>建档日期</nobr></th>
189
+ <th><nobr>供用气合同编号</nobr></th>
190
+ <th><nobr>通气日期</nobr></th>
191
+ <th><nobr>通气人员</nobr></th>
192
+ <th><nobr>通气年限</nobr></th>
193
+ <th><nobr>防盗卡号</nobr></th>
194
+ <th><nobr>变更记录</nobr></th>
195
+ <!--燃气报警装置-->
196
+ <th><nobr>独立式可燃气体探测器品牌</nobr></th>
197
+ <th><nobr>接头型号</nobr></th>
198
+ <th><nobr>生产日期</nobr></th>
199
+ <th><nobr>燃气切断电磁阀品牌</nobr></th>
200
+ <th><nobr>生产日期</nobr></th>
201
+ <th><nobr>超期提醒</nobr></th>
202
+ <th><nobr>变更记录</nobr></th>
203
+ <th><nobr>品牌</nobr></th>
204
+ <th><nobr>生产日期</nobr></th>
205
+ <th><nobr>超期提醒</nobr></th>
206
+ <th><nobr>变更记录</nobr></th>
207
+ <th><nobr>材质</nobr></th>
208
+ <th><nobr>长度(米)</nobr></th>
209
+ <th><nobr>生产日期</nobr></th>
210
+ <th><nobr>超期提醒</nobr></th>
211
+ <th><nobr>变更记录</nobr></th>
212
+ <th><nobr>品牌</nobr></th>
213
+ <th><nobr>备案日期</nobr></th>
214
+ <th><nobr>生产日期</nobr></th>
215
+ <th><nobr>超期提醒</nobr></th>
216
+ <th><nobr>变更记录</nobr></th>
217
+ <th><nobr>材质</nobr></th>
218
+ <th><nobr>长度(米)</nobr></th>
219
+ <th><nobr>生产日期</nobr></th>
220
+ <th><nobr>超期提醒</nobr></th>
221
+ <th><nobr>变更记录</nobr></th>
222
+ <th><nobr>品牌</nobr></th>
223
+ <th><nobr>备案日期</nobr></th>
224
+ <th><nobr>生产日期</nobr></th>
225
+ <th><nobr>超期提醒</nobr></th>
226
+ <th><nobr>变更记录</nobr></th>
227
+ <th><nobr>材质</nobr></th>
228
+ <th><nobr>长度(米)</nobr></th>
229
+ <th><nobr>生产日期</nobr></th>
230
+ <th><nobr>超期提醒</nobr></th>
231
+ <th><nobr>变更记录</nobr></th>
232
+
233
+ <th><nobr>类型</nobr></th>
234
+ <th><nobr>金额(元)</nobr></th>
235
+ <th><nobr>日期</nobr></th>
236
+ <th><nobr>超期提醒</nobr></th>
237
+ <th><nobr>续保记录</nobr></th>
238
+ <th><nobr>充值时间</nobr></th>
239
+ <th><nobr>金额(元)</nobr></th>
240
+ <th><nobr>充值时间</nobr></th>
241
+ <th><nobr>金额(元)</nobr></th>
242
+ <th><nobr>安检日期</nobr></th>
243
+ <th><nobr>安检人员</nobr></th>
244
+ <th><nobr>用气总量</nobr></th>
245
+ <th><nobr>总充值额</nobr></th>
246
+ <th><nobr>剩余气量</nobr></th>
247
+ <th><nobr>发现问题</nobr></th>
248
+ <th><nobr>整改日期</nobr></th>
249
+ </tr>
250
+ </template>
251
+ <template partial='body'>
252
+ <!--序号-->
253
+ <td style="text-align: center;" ><nobr>
254
+ {{$index + 1}}
255
+ </nobr></td>
256
+ <!--用户信息-->
257
+ <td style="text-align: center;">
258
+ <nobr>{{row.f_residential_area}}</nobr>
259
+ </td>
260
+ <td style="text-align: center;">
261
+ <nobr>{{row.f_user_name}}</nobr>
262
+ </td>
263
+ <td style="text-align: center;">
264
+ <nobr>{{row.f_idnumber}}</nobr>
265
+ </td>
266
+ <td style="text-align: center;">
267
+ <nobr>{{row.f_address}}</nobr>
268
+ </td>
269
+ <td style="text-align: center;">
270
+ <nobr>{{row.f_user_phone}}</nobr>
271
+ </td>
272
+
273
+ <!--燃气表-->
274
+ <td style="text-align: center;">
275
+ <nobr>{{row.f_meter_brand}}</nobr>
276
+ </td>
277
+ <td style="text-align: center;">
278
+ <nobr>{{row.f_meternumber}}</nobr>
279
+ </td>
280
+ <td style="text-align: center;">
281
+ <nobr>{{row.f_meter_type}}</nobr>
282
+ </td>
283
+ <td style="text-align: center;">
284
+ <nobr>{{row.f_meter_style}}</nobr>
285
+ </td>
286
+ <td style="text-align: center;">
287
+ <nobr>{{row.f_aroundmeter}}</nobr>
288
+ </td>
289
+ <td style="text-align: center;">
290
+ <nobr>{{row.f_factory_date}}</nobr>
291
+ </td>
292
+ <td style="text-align: center;" :class="$parent.$parent.$parent.formatTime(row.f_scrap_date).indexOf('已过期')!==-1? 'back-red' : 'back-blue'">
293
+ <nobr>{{$parent.$parent.$parent.formatTime(row.f_scrap_date)}}</nobr>
294
+ </td>
295
+ <td style="text-align: center;">
296
+ <nobr>
297
+ <span @click="$parent.$parent.$parent.dealmsg(row,'','燃气表')"><a><b>变更记录</b></a></span>
298
+ </nobr>
299
+ </td>
300
+
301
+ <!--建档信息-->
302
+ <td style="text-align: center;">
303
+ <nobr>{{row.f_createfile_date}}</nobr>
304
+ </td>
305
+ <td style="text-align: center;">
306
+ <nobr>{{row.f_contract_id}}</nobr>
307
+ </td>
308
+ <td style="text-align: center;">
309
+ <nobr>{{row.f_gas_date}}</nobr>
310
+ </td>
311
+ <td style="text-align: center;">
312
+ <nobr>{{row.f_gas_person}}</nobr>
313
+ </td>
314
+ <td style="text-align: center;" :style="$parent.$parent.$parent.ventilationYear(row.diffallyear)">
315
+ <nobr>{{row.ventilation_years}}</nobr>
316
+ </td>
317
+ <td style="text-align: center;">
318
+ <nobr>{{row.f_defendcard }}|{{ row.f_defendcard_two}}</nobr>
319
+ </td>
320
+ <td style="text-align: center;">
321
+ <nobr>
322
+ <span @click="$parent.$parent.$parent.dealmsg(row,'','建档信息')"><a><b>变更记录</b></a></span>
323
+ </nobr>
324
+ </td>
325
+
326
+ <!--燃气报警装置-->
327
+ <td style="text-align: center;">
328
+ <nobr>{{row.f_icgd_brand}}</nobr>
329
+ </td>
330
+ <td style="text-align: center;">
331
+ <nobr>{{row.f_conn_model}}</nobr>
332
+ </td>
333
+ <td style="text-align: center;">
334
+ <nobr>{{row.f_icgd_prdate}}</nobr>
335
+ </td>
336
+ <td style="text-align: center;">
337
+ <nobr>{{row.f_gssv_brand}}</nobr>
338
+ </td>
339
+ <td style="text-align: center;">
340
+ <nobr>{{row.f_icgd_prdate}}</nobr>
341
+ </td>
342
+ <td style="text-align: center;" :class="$parent.$parent.$parent.formatTime(row.alarm_exp_date).indexOf('已过期')!==-1? 'back-red' : 'back-blue'">
343
+ <nobr>{{$parent.$parent.$parent.formatTime(row.alarm_exp_date)}}</nobr>
344
+ </td>
345
+ <td style="text-align: center;">
346
+ <nobr>
347
+ <span @click="$parent.$parent.$parent.dealmsg(row,row.alarm_id,'燃气报警装置')"><a><b>变更记录</b></a></span>
348
+ </nobr>
349
+ </td>
350
+
351
+ <!--燃气灶具-->
352
+ <td style="text-align: center;">
353
+ <nobr>{{row.zaoju_brand}}</nobr>
354
+ </td>
355
+ <td style="text-align: center;">
356
+ <nobr>{{row.zaoju_make_date}}</nobr>
357
+ </td>
358
+ <td style="text-align: center;" :class="$parent.$parent.$parent.formatTime(row.zaoju_exp_date).indexOf('已过期')!==-1? 'back-red' : 'back-blue'">
359
+ <nobr>{{$parent.$parent.$parent.formatTime(row.zaoju_exp_date)}}</nobr>
360
+ </td>
361
+ <td style="text-align: center;">
362
+ <nobr>
363
+ <span @click="$parent.$parent.$parent.dealmsg(row,row.zaoju_id,'燃气灶具')"><a><b>变更记录</b></a></span>
364
+ </nobr>
365
+ </td>
366
+
367
+
368
+ <!--燃气灶具连接管-->
369
+ <td style="text-align: center;">
370
+ <nobr>{{row.zaoju_pipe_material}}</nobr>
371
+ </td>
372
+ <td style="text-align: center;">
373
+ <nobr>{{row.zaoju_pipe_length}}</nobr>
374
+ </td>
375
+ <td style="text-align: center;">
376
+ <nobr>{{row.zaoju_pipe_prdate}}</nobr>
377
+ </td>
378
+ <td style="text-align: center;" :class="$parent.$parent.$parent.formatTime(row.zaoju_pipe_expdate).indexOf('已过期')!==-1? 'back-red' : 'back-blue'">
379
+ <nobr>{{$parent.$parent.$parent.formatTime(row.zaoju_pipe_expdate)}}</nobr>
380
+ </td>
381
+ <td style="text-align: center;">
382
+ <nobr>
383
+ <span @click="$parent.$parent.$parent.dealmsg(row,row.zaoju_id,'燃气灶具连接管')"><a><b>变更记录</b></a></span>
384
+ </nobr>
385
+ </td>
386
+
387
+ <!--燃气热水器-->
388
+ <td style="text-align: center;">
389
+ <nobr>{{row.reshui_brand}}</nobr>
390
+ </td>
391
+ <td style="text-align: center;">
392
+ <nobr>{{row.reshui_filing_date}}</nobr>
393
+ </td>
394
+ <td style="text-align: center;">
395
+ <nobr>{{row.reshui_make_date}}</nobr>
396
+ </td>
397
+ <td style="text-align: center;" :class="$parent.$parent.$parent.formatTime(row.reshui_exp_date).indexOf('已过期')!==-1? 'back-red' : 'back-blue'">
398
+ <nobr>{{$parent.$parent.$parent.formatTime(row.reshui_exp_date)}}</nobr>
399
+ </td>
400
+ <td style="text-align: center;">
401
+ <nobr>
402
+ <span @click="$parent.$parent.$parent.dealmsg(row,row.reshui_id,'燃气热水器')"><a><b>变更记录</b></a></span>
403
+ </nobr>
404
+ </td>
405
+
406
+
407
+ <!--燃气热水器连接管-->
408
+ <td style="text-align: center;">
409
+ <nobr>{{row.reshui_pipe_material}}</nobr>
410
+ </td>
411
+ <td style="text-align: center;">
412
+ <nobr>{{row.reshui_pipe_length}}</nobr>
413
+ </td>
414
+ <td style="text-align: center;">
415
+ <nobr>{{row.reshui_pipe_prdate}}</nobr>
416
+ </td>
417
+ <td style="text-align: center;" :class="$parent.$parent.$parent.formatTime(row.reshui_pipe_expdate).indexOf('已过期')!==-1? 'back-red' : 'back-blue'">
418
+ <nobr>{{$parent.$parent.$parent.formatTime(row.reshui_pipe_expdate)}}</nobr>
419
+ </td>
420
+ <td style="text-align: center;">
421
+ <nobr>
422
+ <span @click="$parent.$parent.$parent.dealmsg(row,row.reshui_id,'燃气热水器连接管')"><a><b>变更记录</b></a></span>
423
+ </nobr>
424
+ </td>
425
+
426
+ <!--燃气壁挂炉-->
427
+ <td style="text-align: center;">
428
+ <nobr>{{row.bigua_brand}}</nobr>
429
+ </td>
430
+ <td style="text-align: center;">
431
+ <nobr>{{row.bigua_filing_date}}</nobr>
432
+ </td>
433
+ <td style="text-align: center;">
434
+ <nobr>{{row.bigua_make_date}}</nobr>
435
+ </td>
436
+ <td style="text-align: center;" :class="$parent.$parent.$parent.formatTime(row.bigua_exp_date).indexOf('已过期')!==-1? 'back-red' : 'back-blue'">
437
+ <nobr>{{$parent.$parent.$parent.formatTime(row.bigua_exp_date)}}</nobr>
438
+ </td>
439
+ <td style="text-align: center;">
440
+ <nobr>
441
+ <span @click="$parent.$parent.$parent.dealmsg(row,row.bigua_id,'燃气壁挂炉')"><a><b>变更记录</b></a></span>
442
+ </nobr>
443
+ </td>
444
+ <!--燃气壁挂炉连接管-->
445
+ <td style="text-align: center;">
446
+ <nobr>{{row.bigua_pipe_material}}</nobr>
447
+ </td>
448
+ <td style="text-align: center;">
449
+ <nobr>{{row.bigua_pipe_length}}</nobr>
450
+ </td>
451
+ <td style="text-align: center;">
452
+ <nobr>{{row.bigua_pipe_prdate}}</nobr>
453
+ </td>
454
+ <td style="text-align: center;" :class="$parent.$parent.$parent.formatTime(row.bigua_pipe_expdate).indexOf('已过期')!==-1? 'back-red' : 'back-blue'">
455
+ <nobr>{{$parent.$parent.$parent.formatTime(row.bigua_pipe_expdate)}}</nobr>
456
+ </td>
457
+ <td style="text-align: center;">
458
+ <nobr>
459
+ <span @click="$parent.$parent.$parent.dealmsg(row,row.bigua_id,'燃气壁挂炉连接管')"><a><b>变更记录</b></a></span>
460
+ </nobr>
461
+ </td>
462
+
463
+ <!--燃气保险信息-->
464
+ <td style="text-align: center;">
465
+ <nobr>{{row.f_fee_type}}</nobr>
466
+ </td>
467
+ <td style="text-align: center;">
468
+ <nobr>{{row.f_money}}</nobr>
469
+ </td>
470
+ <td style="text-align: center;">
471
+ <nobr>{{row.fee_operate_date}}</nobr>
472
+ </td>
473
+ <td style="text-align: center;" :class="$parent.$parent.$parent.formatTime(row.f_expiration_date).indexOf('已过期')!==-1? 'back-red' : 'back-blue'">
474
+ <nobr>{{$parent.$parent.$parent.formatTime(row.f_expiration_date)}}</nobr>
475
+ </td>
476
+ <td style="text-align: center;">
477
+ <nobr>
478
+ <span @click="$parent.$parent.$parent.dealmsg(row,'','燃气保险信息')"><a><b>续保记录</b></a></span>
479
+ </nobr>
480
+ </td>
481
+
482
+ <!--初次充值信息-->
483
+ <td style="text-align: center;">
484
+ <nobr>{{row.f_min_operate_date}}</nobr>
485
+ </td>
486
+ <td style="text-align: center;">
487
+ <nobr>{{row.f_preamount}}</nobr>
488
+ </td>
489
+
490
+ <!--每年充值-->
491
+ <td style="text-align: center;">
492
+ <nobr>{{row.yeartimes}}</nobr>
493
+ </td>
494
+ <td style="text-align: center;">
495
+ <nobr>{{row.f_preamount_all}}</nobr>
496
+ </td>
497
+
498
+ <!--安检信息-->
499
+ <td style="text-align: center;">
500
+ <nobr>{{row.f_upload_date}}</nobr>
501
+ </td>
502
+ <td style="text-align: center;">
503
+ <nobr>{{row.f_checker_name}}</nobr>
504
+ </td>
505
+ <td style="text-align: center;">
506
+ <nobr>{{row.f_total_gas}}</nobr>
507
+ </td>
508
+ <td style="text-align: center;">
509
+ <nobr>{{row.f_total_fee}}</nobr>
510
+ </td>
511
+ <td style="text-align: center;">
512
+ <nobr>{{row.f_balance_gas}}</nobr>
513
+ </td>
514
+ <td style="text-align: center;">
515
+ <nobr>{{row.f_defect_content}}</nobr>
516
+ </td>
517
+ <td style="text-align: center;">
518
+ <nobr>{{row.f_repair_date}}</nobr>
519
+ </td>
520
+
521
+ <!--备注-->
522
+ <td style="text-align: center;">
523
+ <nobr>{{row.f_comments}}</nobr>
524
+ </td>
525
+
526
+ </template>
527
+ <template partial='foot'>
528
+ </template>
529
+ </data-grid>
530
+ </criteria-paged>
531
+
532
+ </div>
533
+ </div>
534
+ </div>
535
+ <modal :show.sync="filechangeHistoryShow" v-ref:filechangeHistoryShow backdrop="false" class="filechangeHistoryShow">
536
+ <header slot="modal-header" class="modal-header" style="text-align: center">
537
+ <h4 class="modal-title">{{titles}}</h4>
538
+ </header>
539
+ <article slot="modal-body" class="modal-body">
540
+ <data-grid class="list_area table_sy" :model="filechangeHistorys" partial='list' v-if="titles.indexOf('燃气保险信息') === -1">
541
+ <template partial='head'>
542
+ <th><nobr>序号</nobr></th>
543
+ <th><nobr>更改内容</nobr></th>
544
+ <th><nobr>更改前</nobr></th>
545
+ <th><nobr>更改后</nobr></th>
546
+ <th><nobr>变更时间</nobr></th>
547
+ </template>
548
+ <template partial='body'>
549
+ <td >{{$index+1}}</td>
550
+ <td><nobr>{{row.f_field_name}}</nobr></td>
551
+ <td><nobr>{{row.f_used_content}}</nobr></td>
552
+ <td><nobr>{{row.f_new_content}}</nobr></td>
553
+ <td><nobr>{{row.f_submit_date}}</nobr></td>
554
+ </template>
555
+ </data-grid>
556
+ <data-grid class="list_area table_sy" :model="filechangeHistorys" partial='list' v-if="titles.indexOf('燃气保险信息') !== -1">
557
+ <template partial='head'>
558
+ <th><nobr>序号</nobr></th>
559
+ <th><nobr>用户编号</nobr></th>
560
+ <th><nobr>用户姓名</nobr></th>
561
+ <th><nobr>保险金额</nobr></th>
562
+ <th><nobr>保险类型</nobr></th>
563
+ <th><nobr>保险日期</nobr></th>
564
+ <th><nobr>到期时间</nobr></th>
565
+ <th><nobr>操作时间</nobr></th>
566
+ <th><nobr>操作人</nobr></th>
567
+ </template>
568
+ <template partial='body'>
569
+ <td >{{$index+1}}</td>
570
+ <td><nobr>{{row.f_userinfo_code}}</nobr></td>
571
+ <td><nobr>{{row.f_user_name}}</nobr></td>
572
+ <td><nobr>{{row.f_money}}</nobr></td>
573
+ <td><nobr>{{row.f_insurance_type}}</nobr></td>
574
+ <td><nobr>{{row.f_ins_start_date}}</nobr></td>
575
+ <td><nobr>{{row.f_expiration_date}}</nobr></td>
576
+ <td><nobr>{{row.f_operate_date}}</nobr></td>
577
+ <td><nobr>{{row.f_operator}}</nobr></td>
578
+ </template>
579
+ </data-grid>
580
+ </article>
581
+ <footer slot="modal-footer" class="modal-footer">
582
+ <button type="button" class="btn btn-default" @click='filechangeHistoryShow = false'>关闭</button>
583
+ </footer>
584
+ </modal>
585
+
586
+ </div>
587
+ </template>
588
+
589
+ <script>
590
+ import {HttpResetClass, PagedList} from 'vue-client'
591
+ import defaultPrint from './../config/DefaultPrint'
592
+ import exportConfig from './../config/exportConfig'
593
+
594
+ let readySomething = async function (self) {
595
+ self.defaultfield = [...self.defaultfield, ...self.config.defaultPrint]
596
+
597
+ }
598
+
599
+ export default {
600
+ title: '民用用气设备查询',
601
+ data() {
602
+ return {
603
+ titles:'',
604
+ other:[],
605
+ footer:[],
606
+ model: new PagedList('rs/sql/myGasDeviceQuery', 20, {orderitem: this.orderitem?'"' + this.orderitem + ' "':`'f_userinfo_code desc'`}),
607
+ criteriaShow: false,
608
+ orgCondtionStr: '',
609
+ modelval: [],
610
+ printshow: false,
611
+ all: false,
612
+ fields: {},
613
+ //排序
614
+ orderitem:'f_userinfo_code desc',
615
+ orderFields: {
616
+ f_operate_date: 'no'
617
+ },
618
+ //默认打印列
619
+ defaultfield: [],
620
+ config: {
621
+ defaultPrint: ['f_userinfo_code', 'f_user_name', 'f_user_phone', 'f_user_state']
622
+ },
623
+ balance2:'',
624
+ thead: '',
625
+ tfoot: '',
626
+ area: [],
627
+ //合计数据
628
+ sumsmodel: {},
629
+ initres: {
630
+ org:[this.$login.f.orgid],
631
+ dep:[],
632
+ user:[],
633
+ },
634
+ userdetail: {
635
+ show: false,
636
+ f_userinfo_code: '',
637
+ f_filialeids: ''
638
+ },
639
+
640
+ show:false,
641
+
642
+ useinstitutions: [],
643
+ userusenatures: [],
644
+ rowdata:{},
645
+ meterInfo:{},
646
+ deviceInfo:{},
647
+ condition2:'',
648
+ filechangeHistorys: {rows: []},
649
+ filechangeHistoryShow: false,
650
+ //小区
651
+ residentialArea: [],
652
+ allorgid:[],
653
+ f_filialeid: this.$login.f.f_orgid,
654
+ }
655
+ },
656
+ ready() {
657
+ this.getaddress()
658
+ readySomething(this).then(() => {
659
+ this.$emit('ready')
660
+ }).catch((error) => {
661
+ this.$emit('error', error)
662
+ })
663
+ },
664
+ methods: {
665
+ userUseInstitutionChange () {
666
+ this.userusenatures = []
667
+ this.$refs.paged.$refs.cri.model.f_user_usenature = ''
668
+ if (this.$refs.paged.$refs.cri.model.f_use_institution) {
669
+ let str = this.$refs.paged.$refs.cri.model.f_use_institution + '使用性质'
670
+ this.userusenatures = this.$appdata.getParam(str)
671
+ }
672
+ },
673
+ userUseTypeChange () {
674
+ this.useinstitutions = []
675
+ this.$refs.paged.$refs.cri.model.f_use_institution = ''
676
+ if (this.$refs.paged.$refs.cri.model.f_user_usetype) {
677
+ let str = this.$refs.paged.$refs.cri.model.f_user_usetype + '机构'
678
+ this.useinstitutions = this.$appdata.getParam(str)
679
+ }
680
+ },
681
+ async dealmsg(row,id,type){
682
+ this.titles = type+'变更记录'
683
+ this.filechangeHistorys.rows = []
684
+ let data = {
685
+ tablename: `t_infochange`,
686
+ items: '*',
687
+ condition: `1=1`,
688
+ orderitem: 'f_change_id desc'
689
+ }
690
+ let urlParam = 'rs/sql/singleTable_OrderBy'
691
+ if (id){
692
+ data.condition = `1=1 and f_table_id = ${id} and f_field_name like '%${type}%'`
693
+ let res = await this.$resetpost(urlParam, {data: data}, {rejectMsg: '获取变更记录出错', resolveMsg: null})
694
+ if (res){
695
+ this.filechangeHistorys.rows = res.data
696
+ }
697
+ }else{
698
+ if (type === '燃气表'){
699
+ data.condition = `1=1 and f_field_name in ('气表品牌','气表型号','出厂日期','表号','左右表','气表分类') and f_userinfo_id = '${row.f_userinfo_id}'`
700
+ let res = await this.$resetpost(urlParam, {data: data}, {rejectMsg: '获取变更记录出错', resolveMsg: null})
701
+ if (res){
702
+ this.filechangeHistorys.rows = res.data
703
+ }
704
+ }else if (type === '建档信息'){
705
+ urlParam = 'rs/sql/changeuserquery'
706
+ data = {
707
+ condition: ` 1=1 and f_orgid in ('${this.$login.f.orgid}') and f_userinfo_code = '${row.f_userinfo_code}' and f_table_ename != 't_devices'`,
708
+ orderitem: "f_operate_date desc"
709
+ }
710
+ let res = await this.$resetpost(urlParam, {data: data}, {rejectMsg: '获取变更记录出错', resolveMsg: null})
711
+ if (res){
712
+ this.filechangeHistorys.rows = res.data
713
+ }
714
+ }else if (type==='燃气保险信息'){
715
+ data = {
716
+ condition: ` 1=1 and f_orgid in ('${this.$login.f.orgid}') and f_userinfo_code = '${row.f_userinfo_code}'`,
717
+ orderitem: "f_operate_date desc"
718
+ }
719
+ let res = await this.$resetpost('rs/sql/insuranceguanl', {data: data}, {rejectMsg: '获取变更记录出错', resolveMsg: null})
720
+ if (res){
721
+ this.filechangeHistorys.rows = res.data
722
+ }
723
+ }
724
+ }
725
+ this.filechangeHistoryShow =true
726
+ },
727
+ ventilationYear(diffAllyear){
728
+ if ( 1<= diffAllyear && diffAllyear <= 2 ){
729
+ return {
730
+ color: 'green !important'
731
+ }
732
+ }else if (3<= diffAllyear && diffAllyear <=4){
733
+ return {
734
+ color: 'orange !important'
735
+ }
736
+ }else if (5<= diffAllyear && diffAllyear <=8){
737
+ return {
738
+ color: 'red !important'
739
+ }
740
+ }else if (diffAllyear>8){
741
+ return {
742
+ color: 'crimson !important'
743
+ }
744
+ }else {
745
+ return {
746
+
747
+ }
748
+ }
749
+ },
750
+ formatTime(expireTime){
751
+ if (expireTime){
752
+ let formats = {
753
+ 'year': '%n%年',
754
+ 'month': '%n%月',
755
+ 'day': '%n%天',
756
+ };
757
+ let now = new Date().getTime()
758
+ let expireTimes = new Date(expireTime).getTime()
759
+ if (now < expireTimes){
760
+ return expireTime
761
+ }else {
762
+ let seconds = Math.floor((now - expireTimes) / 1000)
763
+ let minutes = Math.floor(seconds / 60)
764
+ let hours = Math.floor(minutes / 60)
765
+ let days = Math.floor(hours / 24)
766
+ let months = Math.floor(days / 30)
767
+ let years = Math.floor(months / 12)
768
+
769
+ let diffType = ''
770
+ let diffValue = 0
771
+ if (years > 0) {
772
+ diffType = 'year'
773
+ diffValue = years
774
+ } else {
775
+ if (months > 0) {
776
+ diffType = 'month'
777
+ diffValue = months
778
+ } else {
779
+ if (days > 0) {
780
+ diffType = 'day'
781
+ diffValue = days
782
+ }
783
+ }
784
+ }
785
+ return '已过期'+formats[diffType].replace('%n%', diffValue);
786
+ }
787
+ }else {
788
+ return ''
789
+ }
790
+ },
791
+ async getaddress(){
792
+ console.log('开始获取小区')
793
+ let HttpReset = new HttpResetClass()
794
+ var data = await HttpReset.load('POST', 'rs/sql/manage_getarealist', {
795
+ data: {
796
+ condition: `1=1 and s.f_filialeid = '${this.$login.f.orgid}'`
797
+ }
798
+ }, {resolveMsg: null, rejectMsg: '获取小区失败!'})
799
+ console.log('小区',data)
800
+ let house = []
801
+ for (let row of data.data){
802
+ console.log('开始保存小区')
803
+ house.push({label: row.f_residential_area, value: row.f_residential_area})
804
+ }
805
+ this.residentialArea = house
806
+ },
807
+ async downloadFiles() {
808
+ if (this.condition2) {
809
+ let data = {
810
+ sqlName: 'myGasDeviceQuery',
811
+ condition: this.condition2,
812
+ fileName: '民用用气设备查询'
813
+ }
814
+ let HttpReset = new HttpResetClass()
815
+ let res = await HttpReset.load('POST', 'rs/deviceExport/gasDevices', {
816
+ data: data
817
+ }, {resolveMsg: null, rejectMsg: null})
818
+ if (res){
819
+ let downurl = 'rs/deviceExport/download?filename=民用用气设备查询.xlsx';
820
+ this.$resetget(downurl, {}).then(res => {
821
+ var link = document.createElement('a');
822
+ link.target = "_blank"
823
+ link.href = downurl;
824
+ link.setAttribute("download", "民用用气设备查询.xlsx"); //指定下载后的文件名,防跳转
825
+ document.body.appendChild(link);
826
+ link.click();
827
+ })
828
+ }
829
+ } else {
830
+ this.$showAlert('查询条件为空,请查询后再导出', 'warning', 3000)
831
+ return
832
+ }
833
+ },
834
+ //把数据库查询数据转换为下拉数据
835
+ calculate(rows){
836
+ let data = []
837
+ rows.forEach((row, n) => {
838
+ data[n] = {label: row.f_residential_area, value: row.id}
839
+ })
840
+ return data
841
+ },
842
+ search(){
843
+ this.$refs.paged.$refs.cri.search()
844
+ },
845
+ cancel(obj) {
846
+ this.show = false
847
+ },
848
+
849
+ selfSearch(args) {
850
+ this.area = this.$refs.paged.$refs.cri.model.f_residential_area
851
+ console.log("=====小区model绑定====",this.area)
852
+ if(this.area.length !== 0){
853
+ let str = JSON.stringify(this.area)
854
+ str = str.replace(/"/g,`'`)
855
+ str = str.replace(/\[/g,``)
856
+ str = str.replace(/\]/g,``)
857
+ console.log("=====小区model22222222222绑定====",str)
858
+ //查询多个小区时条件
859
+ args.condition += ` and f_residential_area in ( ${str} )`
860
+ }
861
+ if (!this.orgCondtionStr) {
862
+ args.condition = `${args.condition}` + " and f_orgid = " + this.$login.f.orgid
863
+ } else {
864
+ args.condition = `${args.condition}` + this.orgCondtionStr
865
+ }
866
+ this.condition2 = args.condition
867
+ this.model.search(args.condition, args.model)
868
+ },
869
+ clear() {
870
+ Object.keys(this.$refs.paged.$refs.cri.model).forEach((key) => {
871
+ this.$refs.paged.$refs.cri.model[key] = []
872
+ })
873
+ },
874
+ hidden() {
875
+ this.criteriaShow = !this.criteriaShow
876
+ },
877
+ getRes(obj) {
878
+ this.orgCondtionStr = obj
879
+ },
880
+ stamp() {
881
+ this.all = false
882
+ //默认选择要打印的列
883
+ this.modelval = defaultPrint.config
884
+ this.fields = this.getfield
885
+ console.log('所有打印字段', this.fields)
886
+ this.printshow = true
887
+ this.put()
888
+ },
889
+ print() {
890
+ this.$refs.print.PrintAsFile()
891
+ this.printshow = false
892
+ },
893
+ close() {
894
+ this.printshow = false
895
+ },
896
+ // 对选择的列进行排序
897
+ sortModelval() {
898
+ let sortModel = []
899
+ Object.keys(this.fields).forEach((key) => {
900
+ if (this.modelval.includes(key)) {
901
+ sortModel.push(key)
902
+ }
903
+ })
904
+ this.modelval = sortModel
905
+ console.log('选择的打印的字段', this.modelval)
906
+ },
907
+ dblclick(row, index) {
908
+ console.log('双击之后数据', row, index)
909
+ this.userdetail.show = true
910
+ this.userdetail.f_userinfo_code = row.f_userinfo_code
911
+ this.userdetail.f_filialeids = row.f_filialeids
912
+ },
913
+ sort (field, rule) {
914
+ // 将所有排序方式设为不排序,实现相互排斥
915
+ for (let key in this.orderFields) {
916
+ if (key === field) {
917
+ this.orderFields[key] = rule
918
+ } else {
919
+ this.orderFields[key] = 'no'
920
+ }
921
+ }
922
+ // 如果新规则不排序,还原为默认排序
923
+ if (rule === 'no') {
924
+ this.model.paramSource.orderitem = `'${this.orderitem}'`
925
+ } else {
926
+ this.model.paramSource.orderitem = `'${field} ${rule}'`
927
+ }
928
+
929
+ this.search()
930
+ }
931
+ },
932
+
933
+ watch: {
934
+ 'all'(val) {
935
+ if (val) {
936
+ this.modelval = this.bodyData
937
+ } else {
938
+ this.modelval = defaultPrint.config
939
+ this.put()
940
+ }
941
+ },
942
+ 'modelval.length'() {
943
+ this.put()
944
+ },
945
+ 'orgCondtionStr'(val) {
946
+ let res = val.match(/'(.*?)'/)
947
+ console.log('正则提取:',res && res[1])
948
+ if (res) {
949
+ this.f_filialeid = res[1]
950
+ if(res.input !=null){
951
+ let resorgid = res.input.substring(res.input.indexOf("'"));
952
+ if(resorgid!= null && resorgid!=''){
953
+ resorgid = resorgid.substring(0,resorgid.lastIndexOf("'")+1);
954
+ // resorgid = resorgid.replaceAll("'","");
955
+ resorgid = resorgid.replace(/'/g,"");
956
+ this.allorgid = resorgid.split(",")
957
+ }
958
+ }
959
+ }
960
+ },
961
+ },
962
+ computed: {
963
+ authArr () {
964
+ return this.$login.r ? this.$login.r : []
965
+ },
966
+
967
+ getCondition() {
968
+ return {condition: this.condition2,orderitem:this.orderitem}
969
+ },
970
+ getfield() {
971
+ let data = {}
972
+ this.bodyData.forEach((value, index) => {
973
+ data[this.bodyData[index]] = this.headData[index]
974
+ })
975
+ //合计字段打印
976
+ this.tfoot = `<tr><th colspan=${this.modelval.length}>全表汇总信息: `
977
+ if (this.sumsmodel) {
978
+ Object.keys(this.sumsmodel).forEach((key) => {
979
+ this.tfoot += this.fields[key] + '合计: ' + `<font color="blue">${this.sumsmodel[key]} </font>`
980
+ })
981
+ } else {
982
+ this.tfoot += '暂无'
983
+ }
984
+ this.tfoot += '</th></tr>'
985
+ return data
986
+ },
987
+ getExportField() {
988
+ return exportConfig.userConfig
989
+ },
990
+ userusetypes() {
991
+ return this.$appdata.getParam('民用用气类型')
992
+ },
993
+ addressstate() {
994
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('地址状态')]
995
+ }
996
+ }
997
+ }
998
+ </script>
999
+ <style lang="less">
1000
+ .filechangeHistoryShow {
1001
+ td {
1002
+ text-align: center !important;
1003
+ }
1004
+ }
1005
+ .back-red{ /* 红色背景 */
1006
+ color: red !important;
1007
+ }
1008
+ .back-green{ /* 红色背景 */
1009
+ color: green !important;
1010
+ }
1011
+ .back-orange{ /* 红色背景 */
1012
+ color: orange !important;
1013
+ }
1014
+ .back-crimson{
1015
+ color: crimson !important;
1016
+ }
1017
+ .back-blue{ /* 蓝色背景 */
1018
+
1019
+ }
1020
+ </style>
1021
+