vue2-client 1.2.43 → 1.2.44

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 (66) hide show
  1. package/CHANGELOG.md +114 -109
  2. package/docs/notice.md +22 -22
  3. package/package.json +1 -1
  4. package/src/base-client/components/common/CreateQuery/CreateQueryItem.vue +555 -555
  5. package/src/base-client/components/common/FormGroupEdit/FormGroupEdit.vue +149 -149
  6. package/src/base-client/components/common/XAddForm/XAddForm.vue +339 -339
  7. package/src/base-client/components/common/XAddNativeForm/XAddNativeForm.vue +316 -316
  8. package/src/base-client/components/common/XForm/XForm.vue +275 -275
  9. package/src/base-client/components/iot/CustomerDetailsView/CustomerDetailsView.vue +225 -225
  10. package/src/base-client/components/iot/DataAnalysisView/DataAnalysisView.vue +244 -244
  11. package/src/base-client/components/iot/DeviceBrandDetailsView/DeviceBrandDetailsView.vue +452 -452
  12. package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsCount.vue +330 -330
  13. package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsException.vue +57 -57
  14. package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsInstructOperate.vue +121 -121
  15. package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsRead.vue +131 -131
  16. package/src/base-client/components/iot/DeviceTypeDetailsView/DeviceTypeDetailsView.vue +276 -276
  17. package/src/base-client/components/iot/InstructDetailsView/InstructDetailsView.vue +469 -469
  18. package/src/base-client/components/iot/LogDetailsView/LogDetailsView.vue +379 -379
  19. package/src/base-client/components/iot/MeterDetailsView/MeterDetailsView.vue +359 -359
  20. package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsCount.vue +335 -335
  21. package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsException.vue +184 -184
  22. package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsHandPlan.vue +291 -291
  23. package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsInstruct.vue +236 -236
  24. package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsMain.vue +256 -256
  25. package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsSellGas.vue +189 -189
  26. package/src/base-client/components/iot/WebmeterAnalysisView/WebmeterAnalysisView.vue +722 -722
  27. package/src/base-client/components/system/DictionaryDetailsView/DictionaryDetailsView.vue +231 -231
  28. package/src/base-client/components/system/QueryParamsDetailsView/QueryParamsDetailsView.vue +247 -247
  29. package/src/base-client/components/ticket/EmployeeDetailsView/EmployeeDetailsView.vue +370 -370
  30. package/src/base-client/components/ticket/TicketDetailsView/TicketDetailsView.vue +1 -1
  31. package/src/base-client/components/ticket/TicketDetailsView/part/TicketDetailsFlow.vue +260 -260
  32. package/src/base-client/components/ticket/TicketSubmitSuccessView/TicketSubmitSuccessView.vue +532 -532
  33. package/src/base-client/plugins/AppData.js +67 -67
  34. package/src/base-client/plugins/GetLoginInfoService.js +252 -252
  35. package/src/components/exception/ExceptionPage.vue +70 -70
  36. package/src/components/menu/SideMenu.vue +1 -1
  37. package/src/components/setting/Setting.vue +235 -235
  38. package/src/config/default/setting.config.js +37 -35
  39. package/src/config/index.js +3 -3
  40. package/src/layouts/SinglePageView.vue +79 -72
  41. package/src/layouts/header/AdminHeader.vue +1 -1
  42. package/src/layouts/header/HeaderNotice.vue +97 -97
  43. package/src/layouts/tabs/TabsView.vue +16 -1
  44. package/src/pages/exception/403.vue +21 -25
  45. package/src/pages/exception/404.vue +21 -25
  46. package/src/pages/exception/500.vue +21 -25
  47. package/src/pages/login/Login.vue +5 -12
  48. package/src/pages/report/ReportTableHome.vue +28 -28
  49. package/src/pages/resourceManage/depListManage.vue +23 -23
  50. package/src/pages/resourceManage/funListManage.vue +23 -23
  51. package/src/pages/resourceManage/index.js +15 -15
  52. package/src/pages/resourceManage/orgListManage.vue +98 -98
  53. package/src/pages/resourceManage/roleListManage.vue +23 -23
  54. package/src/pages/resourceManage/staffListManage.vue +23 -23
  55. package/src/pages/system/ticket/index.vue +1 -1
  56. package/src/pages/system/ticket/submitTicketSuccess.vue +248 -248
  57. package/src/router/async/config.async.js +26 -26
  58. package/src/router/index.js +27 -27
  59. package/src/services/api/common.js +47 -47
  60. package/src/services/api/index.js +39 -39
  61. package/src/services/user.js +34 -34
  62. package/src/store/modules/account.js +2 -2
  63. package/src/theme/default/style.less +47 -47
  64. package/src/utils/indexedDB.js +146 -146
  65. package/src/utils/routerUtil.js +359 -359
  66. package/vue.config.js +143 -143
@@ -1,330 +1,330 @@
1
- <template>
2
- <div>
3
- <a-row :gutter="24">
4
- <!-- <a-col :md="12" :sm="24">
5
- <a-card
6
- hoverable
7
- title="累计用气量"
8
- style="margin-bottom: 24px"
9
- :bordered="true">
10
- <div>
11
- <a-skeleton v-show="radarLoading3" active />
12
- <div style="height: 200px" id="container2" v-show="!radarLoading3"/>
13
- </div>
14
- </a-card>
15
- </a-col>
16
- <a-col :md="6" :sm="24">
17
- <a-card
18
- hoverable
19
- title="日用气量"
20
- style="margin-bottom: 24px"
21
- :bordered="true">
22
- <div>
23
- <a-skeleton v-show="radarLoading" active />
24
- <div style="height: 200px" id="container" v-show="!radarLoading"/>
25
- </div>
26
- </a-card>
27
- </a-col>
28
- <a-col :md="6" :sm="24">
29
- <a-card
30
- hoverable
31
- title="日用气金额"
32
- style="margin-bottom: 24px"
33
- :bordered="true">
34
- <div>
35
- <a-skeleton v-show="radarLoading2" active />
36
- <div style="height: 200px" id="containerUseMoney" v-show="!radarLoading2"/>
37
- </div>
38
- </a-card>
39
- </a-col>
40
- <a-col :md="12" :sm="24">
41
- <a-card
42
- hoverable
43
- title="剩余余额"
44
- style="margin-bottom: 24px"
45
- :bordered="true">
46
- <div>
47
- <a-skeleton v-show="radarLoading4" active />
48
- <div style="height: 200px" id="container3" v-show="!radarLoading4"/>
49
- </div>
50
- </a-card>
51
- </a-col>
52
- <a-col :md="6" :sm="24">
53
- <a-card
54
- hoverable
55
- title="电压情况"
56
- style="margin-bottom: 24px"
57
- :bordered="true">
58
- <div>
59
- <a-skeleton v-show="radarLoading5" active />
60
- <div style="height: 200px" id="container4" v-show="!radarLoading5"/>
61
- </div>
62
- </a-card>
63
- </a-col>
64
- <a-col :md="6" :sm="24">
65
- <a-card
66
- hoverable
67
- title="信号强度情况"
68
- style="margin-bottom: 24px"
69
- :bordered="true">
70
- <div>
71
- <a-skeleton v-show="radarLoading6" active />
72
- <div style="height: 200px" id="container5" v-show="!radarLoading6"/>
73
- </div>
74
- </a-card>
75
- </a-col>-->
76
- </a-row>
77
- </div>
78
- </template>
79
- <script>
80
- import { Area, Line } from '@antv/g2plot/lib/index'
81
- import ARow from 'ant-design-vue/es/grid/Row'
82
- import ACol from 'ant-design-vue/es/grid/Col'
83
- import { MeterDetailsViewApi } from '@vue2-client/services/api'
84
-
85
- export default {
86
- name: 'DeviceDetailsCount',
87
- components: {
88
- ACol,
89
- ARow
90
- },
91
- props: {
92
- deviceNo: {
93
- type: String,
94
- required: true
95
- }
96
- },
97
- data () {
98
- return {
99
- radarLoading: true,
100
- radarLoading2: true,
101
- radarLoading3: true,
102
- radarLoading4: true,
103
- radarLoading5: true,
104
- radarLoading6: true
105
- }
106
- },
107
- mounted () {
108
- this.loadGasView()
109
- },
110
- methods: {
111
- loadGasView () {
112
- const _this = this
113
- fetch(MeterDetailsViewApi.getGasConsumptionData, {
114
- method: 'POST',
115
- body: JSON.stringify({
116
- userId: this.userid
117
- })
118
- })
119
- .then((res) => res.json())
120
- .then((data) => {
121
- const line = new Line('container', {
122
- data,
123
- padding: 'auto',
124
- xField: 'date',
125
- yField: 'scales',
126
- smooth: true,
127
- color: 'l(0) 0:#3ED474 1:#399EFC',
128
- lineStyle: {
129
- lineWidth: 5
130
- },
131
- tooltip: {
132
- fields: ['date', 'scales'],
133
- formatter: (datum) => {
134
- return { name: '用气量', value: datum.scales + '方' }
135
- }
136
- }
137
- })
138
- line.render()
139
- _this.radarLoading = false
140
- const areaUseMoney = new Line('containerUseMoney', {
141
- data,
142
- padding: 'auto',
143
- xField: 'date',
144
- yField: 'oughtfee',
145
- smooth: true,
146
- color: 'l(0) 0:#9EFCFF 1:#9E87FF',
147
- lineStyle: {
148
- lineWidth: 5
149
- },
150
- tooltip: {
151
- fields: ['date', 'oughtfee'],
152
- formatter: (datum) => {
153
- return { name: '用气金额', value: datum.oughtfee + '元' }
154
- }
155
- }
156
- })
157
- areaUseMoney.render()
158
- _this.radarLoading2 = false
159
- const column = new Area('container2', {
160
- data,
161
- padding: 'auto',
162
- xField: 'date',
163
- yField: 'used',
164
- point: {
165
- size: 5,
166
- shape: 'diamond',
167
- style: {
168
- fill: 'white',
169
- stroke: 'l(0) 0:#3ED474 1:#399EFC',
170
- lineWidth: 2
171
- }
172
- },
173
- color: 'l(270) 0:#3ED474 1:#399EFC',
174
- areaStyle: () => {
175
- return {
176
- fill: 'l(270) 0:#3ED474 1:#399EFC'
177
- }
178
- },
179
- smooth: true,
180
- tooltip: {
181
- fields: ['date', 'used'],
182
- formatter: (datum) => {
183
- return { name: '累计用气量', value: datum.used + '方' }
184
- }
185
- }
186
- })
187
- column.render()
188
- _this.radarLoading3 = false
189
- const area2 = new Area('container3', {
190
- data,
191
- padding: 'auto',
192
- xField: 'date',
193
- yField: 'balance',
194
- point: {
195
- size: 5,
196
- shape: 'diamond',
197
- style: {
198
- fill: 'white',
199
- stroke: 'l(270) 0:#3ED474 1:#399EFC',
200
- lineWidth: 2
201
- }
202
- },
203
- color: 'l(270) 0:#3ED474 1:#399EFC',
204
- lineStyle: {
205
- lineWidth: 5
206
- },
207
- smooth: true,
208
- tooltip: {
209
- fields: ['date', 'balance'],
210
- formatter: (datum) => {
211
- return { name: '剩余金额', value: datum.balance + '元' }
212
- }
213
- },
214
- annotations: [
215
- // 低于中位数颜色变化
216
- {
217
- type: 'regionFilter',
218
- start: ['max', '0'],
219
- end: ['min', '-999999']
220
- },
221
- {
222
- type: 'text',
223
- position: ['min', '0'],
224
- content: '欠费线',
225
- offsetY: -4,
226
- style: {
227
- textBaseline: 'bottom'
228
- }
229
- },
230
- {
231
- type: 'line',
232
- start: ['min', '0'],
233
- end: ['max', '0'],
234
- style: {
235
- stroke: 'l(0) 0:#FEB692 1:#EA5455',
236
- lineDash: [2, 2]
237
- }
238
- }
239
- ]
240
- })
241
- area2.render()
242
- _this.radarLoading4 = false
243
- const line2 = new Line('container4', {
244
- data,
245
- padding: 'auto',
246
- xField: 'date',
247
- yField: 'batterylevel',
248
- color: 'l(0) 0:#3ED474 1:#399EFC',
249
- lineStyle: {
250
- lineWidth: 5
251
- },
252
- smooth: true,
253
- tooltip: {
254
- fields: ['date', 'batterylevel'],
255
- formatter: (datum) => {
256
- return { name: '电压', value: datum.batterylevel + 'V' }
257
- }
258
- }
259
- })
260
- line2.render()
261
- _this.radarLoading5 = false
262
- const line3 = new Line('container5', {
263
- data,
264
- padding: 'auto',
265
- xField: 'date',
266
- yField: 'signal',
267
- color: 'l(0) 0:#9EFCFF 1:#9E87FF',
268
- lineStyle: {
269
- lineWidth: 5
270
- },
271
- smooth: true,
272
- tooltip: {
273
- fields: ['date', 'signal'],
274
- formatter: (datum) => {
275
- return { name: '信号强度', value: datum.signal + 'dBm' }
276
- }
277
- }
278
- })
279
- line3.render()
280
- _this.radarLoading6 = false
281
- })
282
- }
283
- },
284
- watch: {
285
- 'userid' () {
286
- this.loadGasView()
287
- }
288
- }
289
- }
290
- </script>
291
-
292
- <style lang='less' scoped>
293
- .detail-layout {
294
- margin-left: 44px
295
- }
296
- .text {
297
- color: rgba(0, 0, 0, .45)
298
- }
299
-
300
- .heading {
301
- color: rgba(0, 0, 0, .85);
302
- font-size: 20px
303
- }
304
-
305
- .no-data {
306
- color: rgba(0, 0, 0, .25);
307
- text-align: center;
308
- line-height: 64px;
309
- font-size: 16px
310
-
311
- /*i {*/
312
- /* font-size: 24px*/
313
- /* margin-right: 16px*/
314
- /* position: relative*/
315
- /* top: 3px*/
316
- /*}*/
317
- }
318
-
319
- .mobile {
320
- .detail-layout {
321
- margin-left: unset
322
- }
323
- .text {
324
-
325
- }
326
- .status-list {
327
- text-align: left
328
- }
329
- }
330
- </style>
1
+ <template>
2
+ <div>
3
+ <a-row :gutter="24">
4
+ <!-- <a-col :md="12" :sm="24">
5
+ <a-card
6
+ hoverable
7
+ title="累计用气量"
8
+ style="margin-bottom: 24px"
9
+ :bordered="true">
10
+ <div>
11
+ <a-skeleton v-show="radarLoading3" active />
12
+ <div style="height: 200px" id="container2" v-show="!radarLoading3"/>
13
+ </div>
14
+ </a-card>
15
+ </a-col>
16
+ <a-col :md="6" :sm="24">
17
+ <a-card
18
+ hoverable
19
+ title="日用气量"
20
+ style="margin-bottom: 24px"
21
+ :bordered="true">
22
+ <div>
23
+ <a-skeleton v-show="radarLoading" active />
24
+ <div style="height: 200px" id="container" v-show="!radarLoading"/>
25
+ </div>
26
+ </a-card>
27
+ </a-col>
28
+ <a-col :md="6" :sm="24">
29
+ <a-card
30
+ hoverable
31
+ title="日用气金额"
32
+ style="margin-bottom: 24px"
33
+ :bordered="true">
34
+ <div>
35
+ <a-skeleton v-show="radarLoading2" active />
36
+ <div style="height: 200px" id="containerUseMoney" v-show="!radarLoading2"/>
37
+ </div>
38
+ </a-card>
39
+ </a-col>
40
+ <a-col :md="12" :sm="24">
41
+ <a-card
42
+ hoverable
43
+ title="剩余余额"
44
+ style="margin-bottom: 24px"
45
+ :bordered="true">
46
+ <div>
47
+ <a-skeleton v-show="radarLoading4" active />
48
+ <div style="height: 200px" id="container3" v-show="!radarLoading4"/>
49
+ </div>
50
+ </a-card>
51
+ </a-col>
52
+ <a-col :md="6" :sm="24">
53
+ <a-card
54
+ hoverable
55
+ title="电压情况"
56
+ style="margin-bottom: 24px"
57
+ :bordered="true">
58
+ <div>
59
+ <a-skeleton v-show="radarLoading5" active />
60
+ <div style="height: 200px" id="container4" v-show="!radarLoading5"/>
61
+ </div>
62
+ </a-card>
63
+ </a-col>
64
+ <a-col :md="6" :sm="24">
65
+ <a-card
66
+ hoverable
67
+ title="信号强度情况"
68
+ style="margin-bottom: 24px"
69
+ :bordered="true">
70
+ <div>
71
+ <a-skeleton v-show="radarLoading6" active />
72
+ <div style="height: 200px" id="container5" v-show="!radarLoading6"/>
73
+ </div>
74
+ </a-card>
75
+ </a-col>-->
76
+ </a-row>
77
+ </div>
78
+ </template>
79
+ <script>
80
+ import { Area, Line } from '@antv/g2plot/lib/index'
81
+ import ARow from 'ant-design-vue/es/grid/Row'
82
+ import ACol from 'ant-design-vue/es/grid/Col'
83
+ import { MeterDetailsViewApi } from '@vue2-client/services/api'
84
+
85
+ export default {
86
+ name: 'DeviceDetailsCount',
87
+ components: {
88
+ ACol,
89
+ ARow
90
+ },
91
+ props: {
92
+ deviceNo: {
93
+ type: String,
94
+ required: true
95
+ }
96
+ },
97
+ data () {
98
+ return {
99
+ radarLoading: true,
100
+ radarLoading2: true,
101
+ radarLoading3: true,
102
+ radarLoading4: true,
103
+ radarLoading5: true,
104
+ radarLoading6: true
105
+ }
106
+ },
107
+ mounted () {
108
+ this.loadGasView()
109
+ },
110
+ methods: {
111
+ loadGasView () {
112
+ const _this = this
113
+ fetch(MeterDetailsViewApi.getGasConsumptionData, {
114
+ method: 'POST',
115
+ body: JSON.stringify({
116
+ userId: this.userid
117
+ })
118
+ })
119
+ .then((res) => res.json())
120
+ .then((data) => {
121
+ const line = new Line('container', {
122
+ data,
123
+ padding: 'auto',
124
+ xField: 'date',
125
+ yField: 'scales',
126
+ smooth: true,
127
+ color: 'l(0) 0:#3ED474 1:#399EFC',
128
+ lineStyle: {
129
+ lineWidth: 5
130
+ },
131
+ tooltip: {
132
+ fields: ['date', 'scales'],
133
+ formatter: (datum) => {
134
+ return { name: '用气量', value: datum.scales + '方' }
135
+ }
136
+ }
137
+ })
138
+ line.render()
139
+ _this.radarLoading = false
140
+ const areaUseMoney = new Line('containerUseMoney', {
141
+ data,
142
+ padding: 'auto',
143
+ xField: 'date',
144
+ yField: 'oughtfee',
145
+ smooth: true,
146
+ color: 'l(0) 0:#9EFCFF 1:#9E87FF',
147
+ lineStyle: {
148
+ lineWidth: 5
149
+ },
150
+ tooltip: {
151
+ fields: ['date', 'oughtfee'],
152
+ formatter: (datum) => {
153
+ return { name: '用气金额', value: datum.oughtfee + '元' }
154
+ }
155
+ }
156
+ })
157
+ areaUseMoney.render()
158
+ _this.radarLoading2 = false
159
+ const column = new Area('container2', {
160
+ data,
161
+ padding: 'auto',
162
+ xField: 'date',
163
+ yField: 'used',
164
+ point: {
165
+ size: 5,
166
+ shape: 'diamond',
167
+ style: {
168
+ fill: 'white',
169
+ stroke: 'l(0) 0:#3ED474 1:#399EFC',
170
+ lineWidth: 2
171
+ }
172
+ },
173
+ color: 'l(270) 0:#3ED474 1:#399EFC',
174
+ areaStyle: () => {
175
+ return {
176
+ fill: 'l(270) 0:#3ED474 1:#399EFC'
177
+ }
178
+ },
179
+ smooth: true,
180
+ tooltip: {
181
+ fields: ['date', 'used'],
182
+ formatter: (datum) => {
183
+ return { name: '累计用气量', value: datum.used + '方' }
184
+ }
185
+ }
186
+ })
187
+ column.render()
188
+ _this.radarLoading3 = false
189
+ const area2 = new Area('container3', {
190
+ data,
191
+ padding: 'auto',
192
+ xField: 'date',
193
+ yField: 'balance',
194
+ point: {
195
+ size: 5,
196
+ shape: 'diamond',
197
+ style: {
198
+ fill: 'white',
199
+ stroke: 'l(270) 0:#3ED474 1:#399EFC',
200
+ lineWidth: 2
201
+ }
202
+ },
203
+ color: 'l(270) 0:#3ED474 1:#399EFC',
204
+ lineStyle: {
205
+ lineWidth: 5
206
+ },
207
+ smooth: true,
208
+ tooltip: {
209
+ fields: ['date', 'balance'],
210
+ formatter: (datum) => {
211
+ return { name: '剩余金额', value: datum.balance + '元' }
212
+ }
213
+ },
214
+ annotations: [
215
+ // 低于中位数颜色变化
216
+ {
217
+ type: 'regionFilter',
218
+ start: ['max', '0'],
219
+ end: ['min', '-999999']
220
+ },
221
+ {
222
+ type: 'text',
223
+ position: ['min', '0'],
224
+ content: '欠费线',
225
+ offsetY: -4,
226
+ style: {
227
+ textBaseline: 'bottom'
228
+ }
229
+ },
230
+ {
231
+ type: 'line',
232
+ start: ['min', '0'],
233
+ end: ['max', '0'],
234
+ style: {
235
+ stroke: 'l(0) 0:#FEB692 1:#EA5455',
236
+ lineDash: [2, 2]
237
+ }
238
+ }
239
+ ]
240
+ })
241
+ area2.render()
242
+ _this.radarLoading4 = false
243
+ const line2 = new Line('container4', {
244
+ data,
245
+ padding: 'auto',
246
+ xField: 'date',
247
+ yField: 'batterylevel',
248
+ color: 'l(0) 0:#3ED474 1:#399EFC',
249
+ lineStyle: {
250
+ lineWidth: 5
251
+ },
252
+ smooth: true,
253
+ tooltip: {
254
+ fields: ['date', 'batterylevel'],
255
+ formatter: (datum) => {
256
+ return { name: '电压', value: datum.batterylevel + 'V' }
257
+ }
258
+ }
259
+ })
260
+ line2.render()
261
+ _this.radarLoading5 = false
262
+ const line3 = new Line('container5', {
263
+ data,
264
+ padding: 'auto',
265
+ xField: 'date',
266
+ yField: 'signal',
267
+ color: 'l(0) 0:#9EFCFF 1:#9E87FF',
268
+ lineStyle: {
269
+ lineWidth: 5
270
+ },
271
+ smooth: true,
272
+ tooltip: {
273
+ fields: ['date', 'signal'],
274
+ formatter: (datum) => {
275
+ return { name: '信号强度', value: datum.signal + 'dBm' }
276
+ }
277
+ }
278
+ })
279
+ line3.render()
280
+ _this.radarLoading6 = false
281
+ })
282
+ }
283
+ },
284
+ watch: {
285
+ 'userid' () {
286
+ this.loadGasView()
287
+ }
288
+ }
289
+ }
290
+ </script>
291
+
292
+ <style lang='less' scoped>
293
+ .detail-layout {
294
+ margin-left: 44px
295
+ }
296
+ .text {
297
+ color: rgba(0, 0, 0, .45)
298
+ }
299
+
300
+ .heading {
301
+ color: rgba(0, 0, 0, .85);
302
+ font-size: 20px
303
+ }
304
+
305
+ .no-data {
306
+ color: rgba(0, 0, 0, .25);
307
+ text-align: center;
308
+ line-height: 64px;
309
+ font-size: 16px
310
+
311
+ /*i {*/
312
+ /* font-size: 24px*/
313
+ /* margin-right: 16px*/
314
+ /* position: relative*/
315
+ /* top: 3px*/
316
+ /*}*/
317
+ }
318
+
319
+ .mobile {
320
+ .detail-layout {
321
+ margin-left: unset
322
+ }
323
+ .text {
324
+
325
+ }
326
+ .status-list {
327
+ text-align: left
328
+ }
329
+ }
330
+ </style>