vue2-client 1.2.49 → 1.2.50

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 (48) hide show
  1. package/CHANGELOG.md +130 -130
  2. package/package.json +1 -1
  3. package/src/base-client/all.js +61 -61
  4. package/src/base-client/components/common/AmapMarker/AmapPointRendering.vue +105 -104
  5. package/src/base-client/components/common/AmapMarker/index.js +3 -3
  6. package/src/base-client/components/common/ScrollList/SrcollList.vue +113 -113
  7. package/src/base-client/components/common/ScrollList/index.js +3 -3
  8. package/src/base-client/components/common/XAddForm/XAddForm.vue +339 -339
  9. package/src/base-client/components/common/XAddNativeForm/XAddNativeForm.vue +316 -316
  10. package/src/base-client/components/common/XForm/XFormItem.vue +6 -1
  11. package/src/base-client/components/common/XFormTable/XFormTable.vue +0 -2
  12. package/src/base-client/components/iot/CustomerDetailsView/index.md +1 -2
  13. package/src/base-client/components/iot/DeviceBrandDetailsView/DeviceBrandDetailsView.vue +1 -1
  14. package/src/base-client/components/iot/DeviceDetailsView/DeviceDetailsView.vue +2 -7
  15. package/src/base-client/components/iot/DeviceDetailsView/index.md +0 -2
  16. package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsException.vue +57 -57
  17. package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsMain.vue +240 -196
  18. package/src/base-client/components/iot/DeviceDetailsView/part/DeviceDetailsRead.vue +131 -131
  19. package/src/base-client/components/iot/DeviceTypeDetailsView/DeviceTypeDetailsView.vue +1 -5
  20. package/src/base-client/components/iot/InstructDetailsView/InstructDetailsView.vue +6 -14
  21. package/src/base-client/components/iot/InstructDetailsView/index.md +0 -2
  22. package/src/base-client/components/iot/LogDetailsView/LogDetailsView.vue +6 -13
  23. package/src/base-client/components/iot/LogDetailsView/index.md +0 -2
  24. package/src/base-client/components/iot/MeterDetailsView/MeterDetailsView.vue +17 -24
  25. package/src/base-client/components/iot/MeterDetailsView/index.md +0 -2
  26. package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsCount.vue +0 -5
  27. package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsException.vue +0 -5
  28. package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsHandPlan.vue +0 -6
  29. package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsInstruct.vue +0 -6
  30. package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsMain.vue +1 -6
  31. package/src/base-client/components/iot/MeterDetailsView/part/MeterDetailsSellGas.vue +1 -6
  32. package/src/base-client/components/iot/WebmeterAnalysisView/WebmeterAnalysisView.vue +8 -83
  33. package/src/base-client/components/iot/WebmeterAnalysisView/index.md +0 -6
  34. package/src/base-client/components/ticket/TicketDetailsView/TicketDetailsView.vue +853 -853
  35. package/src/base-client/components/ticket/TicketSubmitSuccessView/TicketSubmitSuccessView.vue +532 -532
  36. package/src/base-client/plugins/AppData.js +57 -57
  37. package/src/base-client/plugins/compatible/LoginServiceOA.js +19 -0
  38. package/src/config/default/setting.config.js +2 -2
  39. package/src/layouts/header/HeaderNotice.vue +96 -96
  40. package/src/layouts/tabs/TabsView.vue +0 -3
  41. package/src/pages/login/Login.vue +53 -22
  42. package/src/pages/system/ticket/submitTicketSuccess.vue +268 -268
  43. package/src/router/async/config.async.js +26 -26
  44. package/src/router/index.js +27 -27
  45. package/src/theme/default/style.less +47 -47
  46. package/src/utils/map-utils.js +28 -17
  47. package/src/utils/routerUtil.js +1 -10
  48. package/vue.config.js +143 -143
@@ -29,8 +29,7 @@ export default {
29
29
  ```html
30
30
  <log-details-view
31
31
  :visible.sync="detailVisible"
32
- :customer-name="selectOrgName"
33
- v-if="selectOrgName" />
32
+ />
34
33
  ```
35
34
 
36
35
  ## API
@@ -190,7 +190,7 @@ export default {
190
190
  },
191
191
  props: {
192
192
  brandId: {
193
- type: String,
193
+ type: String || Number,
194
194
  required: true
195
195
  },
196
196
  visible: {
@@ -49,7 +49,6 @@
49
49
  <device-details-instruct :device-no="details.f_device_no" v-if="tabActiveKey === '3'"/>
50
50
  <device-details-singular :device-id="details.id" v-if="tabActiveKey === '4'"/>
51
51
  <device-details-instruct-operate :device="details" v-if="tabActiveKey === '5'"/>
52
- <AmapPointRendering :markers="details" :describeList="describeList" v-if="tabActiveKey === '6'"/>
53
52
  </div>
54
53
  </template>
55
54
  </a-page-header>
@@ -101,11 +100,7 @@ export default {
101
100
  { key: '6', tab: '设备位置' }
102
101
  ],
103
102
  // 设备详情加载
104
- loadDeviceDetails: true,
105
- describeList: [
106
- { describe: '设备号', field: 'f_device_no' },
107
- { describe: '设备型号', field: 'f_brand' }
108
- ]
103
+ loadDeviceDetails: true
109
104
  }
110
105
  },
111
106
  mounted () {
@@ -117,7 +112,7 @@ export default {
117
112
  },
118
113
  props: {
119
114
  deviceNo: {
120
- type: String,
115
+ type: String || Number,
121
116
  required: true
122
117
  },
123
118
  visible: {
@@ -29,7 +29,6 @@ export default {
29
29
  ```html
30
30
  <meter-details-view
31
31
  :visible.sync="detailVisible"
32
- :select-org-name="selectOrgName"
33
32
  :userid="selectUserId"
34
33
  v-if="selectUserId" />
35
34
  ```
@@ -39,5 +38,4 @@ export default {
39
38
  | 参数 | 说明 | 类型 | 默认值 |
40
39
  |---------------|---------|---------|-------|
41
40
  | visible | 是否显示 | Boolean | false |
42
- | selectOrgName | 燃气公司客户名 | String | null |
43
41
  | userid | 表档案ID | String | null |
@@ -1,57 +1,57 @@
1
- <template>
2
- <a-card :bordered="false">
3
- <x-form-table
4
- v-if="tabActiveKey === '1'"
5
- :queryParamsName="queryParamsName"
6
- :fixedQueryForm="fixedQueryForm"
7
- @onSubmit="onSubmit"
8
- @action="toDetail">
9
- </x-form-table>
10
- </a-card>
11
- </template>
12
-
13
- <script>
14
- import XFormTable from '@vue2-client/base-client/components/common/XFormTable/XFormTable'
15
-
16
- export default {
17
- name: 'DeviceDetailsException',
18
- components: {
19
- XFormTable
20
- },
21
- data () {
22
- return {
23
- // 选中的异常编号
24
- selectSingularId: undefined,
25
- tabActiveKey: undefined,
26
- fixedQueryForm: {},
27
- // 查询配置文件名
28
- queryParamsName: 'deviceToExceptionQueryParams',
29
- // 是否显示设置设备参数详情抽屉
30
- detailVisible: false
31
- }
32
- },
33
- props: {
34
- deviceId: {
35
- type: Number,
36
- required: true
37
- }
38
- },
39
- mounted () {
40
- this.initView()
41
- },
42
- methods: {
43
- initView () {
44
- this.tabActiveKey = '1'
45
- this.fixedQueryForm['e_f_device_id'] = this.deviceId
46
- },
47
- onSubmit (res) {
48
- res.form['e_f_device_id'] = this.deviceId
49
- this.$emit('onSubmit', res)
50
- },
51
- toDetail (record, id) {
52
- // this.selectSingularId = record.id + ''
53
- // this.detailVisible = true
54
- }
55
- }
56
- }
57
- </script>
1
+ <template>
2
+ <a-card :bordered="false">
3
+ <x-form-table
4
+ v-if="tabActiveKey === '1'"
5
+ :queryParamsName="queryParamsName"
6
+ :fixedQueryForm="fixedQueryForm"
7
+ @onSubmit="onSubmit"
8
+ @action="toDetail">
9
+ </x-form-table>
10
+ </a-card>
11
+ </template>
12
+
13
+ <script>
14
+ import XFormTable from '@vue2-client/base-client/components/common/XFormTable/XFormTable'
15
+
16
+ export default {
17
+ name: 'DeviceDetailsException',
18
+ components: {
19
+ XFormTable
20
+ },
21
+ data () {
22
+ return {
23
+ // 选中的异常编号
24
+ selectSingularId: undefined,
25
+ tabActiveKey: undefined,
26
+ fixedQueryForm: {},
27
+ // 查询配置文件名
28
+ queryParamsName: 'deviceToExceptionQueryParams',
29
+ // 是否显示设置设备参数详情抽屉
30
+ detailVisible: false
31
+ }
32
+ },
33
+ props: {
34
+ deviceId: {
35
+ type: Number,
36
+ required: true
37
+ }
38
+ },
39
+ mounted () {
40
+ this.initView()
41
+ },
42
+ methods: {
43
+ initView () {
44
+ this.tabActiveKey = '1'
45
+ this.fixedQueryForm['e_f_device_id'] = this.deviceId
46
+ },
47
+ onSubmit (res) {
48
+ res.form['e_f_device_id'] = this.deviceId
49
+ this.$emit('onSubmit', res)
50
+ },
51
+ toDetail (record, id) {
52
+ // this.selectSingularId = record.id + ''
53
+ // this.detailVisible = true
54
+ }
55
+ }
56
+ }
57
+ </script>
@@ -1,225 +1,269 @@
1
1
  <template>
2
2
  <div>
3
- <a-card :class="isMobile ? 'card_view_mobile' : 'card_view'">
4
- <a-card-grid :class="isMobile ? 'card_guid_mobile' : 'card_guid'">
5
- <a-icon type="project" :style="{ fontSize: '24px'} "/>
6
- <p class="card_details_title">设备品牌</p>
7
- <a-tooltip>
8
- <template slot="title">
9
- {{ details.f_brand }}
10
- </template>
11
- <p class="card_details_value">{{ details.f_brand }}</p>
12
- </a-tooltip>
13
- </a-card-grid>
14
- <a-card-grid :class="isMobile ? 'card_guid_mobile' : 'card_guid'">
15
- <a-icon type="api" :style="{ fontSize: '24px'} "/>
16
- <p class="card_details_title">设备类型</p>
17
- <a-tooltip>
18
- <template slot="title">
19
- {{ details.f_name }}
20
- </template>
21
- <p class="card_details_value">{{ details.f_name }}</p>
22
- </a-tooltip>
23
- </a-card-grid>
24
- <a-card-grid :class="isMobile ? 'card_guid_mobile' : 'card_guid'">
25
- <a-icon type="profile" :style="{ fontSize: '24px'} "/>
26
- <p class="card_details_title">设备号</p>
27
- <a-tooltip>
28
- <template slot="title">
29
- {{ details.f_device_no }}
30
- </template>
31
- <p class="card_details_value">{{ details.f_device_no }}</p>
32
- </a-tooltip>
33
- </a-card-grid>
34
- <a-card-grid :class="isMobile ? 'card_guid_mobile' : 'card_guid'">
35
- <a-icon type="pushpin" :style="{ fontSize: '24px'} "/>
36
- <p class="card_details_title">设备厂家</p>
37
- <a-tooltip>
38
- <template slot="title">
39
- {{ details.f_manufactor }}
40
- </template>
41
- <p class="card_details_value">{{ details.f_manufactor }}</p>
42
- </a-tooltip>
43
- </a-card-grid>
44
- <a-card-grid :class="isMobile ? 'card_guid_mobile' : 'card_guid'">
45
- <a-icon type="select" :style="{ fontSize: '24px'} "/>
46
- <p class="card_details_title">设备型号</p>
47
- <a-tooltip>
48
- <template slot="title">
49
- {{ details.f_model }}
50
- </template>
51
- <p class="card_details_value">{{ details.f_model }}</p>
52
- </a-tooltip>
53
- </a-card-grid>
54
- <a-card-grid :class="isMobile ? 'card_guid_mobile' : 'card_guid'">
55
- <a-icon type="tool" :style="{ fontSize: '24px'} "/>
56
- <p class="card_details_title">设备别名</p>
57
- <a-tooltip>
58
- <template slot="title">
59
- {{ details.f_alias }}
60
- </template>
61
- <p class="card_details_value">{{ details.f_alias }}</p>
62
- </a-tooltip>
63
- </a-card-grid>
64
- <a-card-grid :class="isMobile ? 'card_guid_mobile' : 'card_guid'">
65
- <a-icon type="pay-circle" :style="{ fontSize: '24px'} "/>
66
- <p class="card_details_title">IMEI码</p>
67
- <a-tooltip>
68
- <template slot="title">
69
- {{ details.f_imei }}
70
- </template>
71
- <p class="card_details_value">{{ details.f_imei }}</p>
72
- </a-tooltip>
73
- </a-card-grid>
74
- <a-card-grid :class="isMobile ? 'card_guid_mobile' : 'card_guid'">
75
- <a-icon type="bg-colors" :style="{ fontSize: '24px'} "/>
76
- <p class="card_details_title">IMSI码</p>
77
- <a-tooltip>
78
- <template slot="title">
79
- {{ details.f_imsi }}
80
- </template>
81
- <p class="card_details_value">{{ details.f_imsi }}</p>
82
- </a-tooltip>
83
- </a-card-grid>
84
- </a-card>
85
- <a-card :bordered="false" title="业务操作记录" :loading="loading">
86
- <a-button @click="getWorkFlow()" type="primary">刷新</a-button>
87
- <a-timeline pending="持续记录中..." :reverse="true" mode="alternate" style="max-width: 800px;margin: 0 auto;">
88
- <a-timeline-item v-if="index < 3 ? true : advanced" :key="index" v-for="(value,index) in workList" color="green">
89
- <div style="color: #0d1a26;font-weight: 500;">
90
- <span style="font-size: 16px;">{{ value.name }}</span>
91
- <span style="margin-left: 5px;">({{ value.type }},{{ format(value.date,'yyyy-MM-dd hh:mm:ss') }})</span>
92
- </div>
93
- <div class="antd-pro-pages-profile-advanced-style-stepDescription" >
94
- 状态:{{ value.state }}
95
- </div>
96
- <div class="antd-pro-pages-profile-advanced-style-stepDescription">
97
- 相关信息:<br/><p style="margin-left: 2em;">{{ value.info }}</p>
98
- </div>
99
- </a-timeline-item>
100
- </a-timeline>
101
- <a-col :md="!advanced && 8 || 24" :sm="24" v-if="workList.length > 3">
102
- <span class="table-page-search-submitButtons" :style="advanced && { float: 'right', overflow: 'hidden' } || {} ">
103
- <a @click="toggleAdvanced" style="margin-left: 8px">
104
- {{ advanced ? '收起' : '展开' }}
105
- <a-icon :type="advanced ? 'up' : 'down'"/>
106
- </a>
107
- </span>
3
+ <a-row :gutter="24">
4
+ <a-col :span="12">
5
+ <a-card :bordered="false" title="基本信息">
6
+ <a-row>
7
+ <a-col :span="8">
8
+ <device-brand-details-view
9
+ :visible.sync="deviceBrandDetailVisible"
10
+ :brand-id="details.f_brand_id"
11
+ v-if="details.f_brand_id"
12
+ />
13
+ <a-card-grid class="card_guid" @click="toggleDeviceBrandDetailsView">
14
+ <a-icon type="project" :style="{ fontSize: '24px'} "/>
15
+ <p class="card_details_title">设备品牌</p>
16
+ <a-tooltip>
17
+ <template slot="title">
18
+ {{ details.f_brand }}
19
+ </template>
20
+ <p class="card_details_value">{{ details.f_brand }}</p>
21
+ </a-tooltip>
22
+ </a-card-grid>
23
+ </a-col>
24
+ <a-col :span="8">
25
+ <device-type-details-view
26
+ :visible.sync="deviceTypeDetailVisible"
27
+ :type-id="details.f_type_id"
28
+ v-if="details.f_type_id"
29
+ />
30
+ <a-card-grid class="card_guid" @click="toggleDeviceTypeDetailsView">
31
+ <a-icon type="api" :style="{ fontSize: '24px'} "/>
32
+ <p class="card_details_title">设备类型</p>
33
+ <a-tooltip>
34
+ <template slot="title">
35
+ {{ details.f_name }}
36
+ </template>
37
+ <p class="card_details_value">{{ details.f_name }}</p>
38
+ </a-tooltip>
39
+ </a-card-grid>
40
+ </a-col>
41
+ <a-col :span="8">
42
+ <a-card-grid class="card_guid">
43
+ <a-icon type="profile" :style="{ fontSize: '24px'} "/>
44
+ <p class="card_details_title">设备号</p>
45
+ <a-tooltip>
46
+ <template slot="title">
47
+ {{ details.f_device_no }}
48
+ </template>
49
+ <p class="card_details_value">{{ details.f_device_no }}</p>
50
+ </a-tooltip>
51
+ </a-card-grid>
52
+ </a-col>
53
+ </a-row>
54
+ <a-row>
55
+ <a-col :span="8">
56
+ <a-card-grid class="card_guid">
57
+ <a-icon type="pushpin" :style="{ fontSize: '24px'} "/>
58
+ <p class="card_details_title">设备厂家</p>
59
+ <a-tooltip>
60
+ <template slot="title">
61
+ {{ details.f_manufactor }}
62
+ </template>
63
+ <p class="card_details_value">{{ details.f_manufactor }}</p>
64
+ </a-tooltip>
65
+ </a-card-grid>
66
+ </a-col>
67
+ <a-col :span="8">
68
+ <a-card-grid class="card_guid">
69
+ <a-icon type="select" :style="{ fontSize: '24px'} "/>
70
+ <p class="card_details_title">设备型号</p>
71
+ <a-tooltip>
72
+ <template slot="title">
73
+ {{ details.f_model }}
74
+ </template>
75
+ <p class="card_details_value">{{ details.f_model }}</p>
76
+ </a-tooltip>
77
+ </a-card-grid>
78
+ </a-col>
79
+ <a-col :span="8">
80
+ <a-card-grid class="card_guid">
81
+ <a-icon type="tool" :style="{ fontSize: '24px'} "/>
82
+ <p class="card_details_title">设备别名</p>
83
+ <a-tooltip>
84
+ <template slot="title">
85
+ {{ details.f_alias }}
86
+ </template>
87
+ <p class="card_details_value">{{ details.f_alias }}</p>
88
+ </a-tooltip>
89
+ </a-card-grid>
90
+ </a-col>
91
+ </a-row>
92
+ <a-row>
93
+ <a-col :span="8">
94
+ <a-card-grid class="card_guid">
95
+ <a-icon type="pay-circle" :style="{ fontSize: '24px'} "/>
96
+ <p class="card_details_title">IMEI码</p>
97
+ <a-tooltip>
98
+ <template slot="title">
99
+ {{ details.f_imei }}
100
+ </template>
101
+ <p class="card_details_value">{{ details.f_imei }}</p>
102
+ </a-tooltip>
103
+ </a-card-grid>
104
+ </a-col>
105
+ <a-col :span="8">
106
+ <a-card-grid class="card_guid">
107
+ <a-icon type="bg-colors" :style="{ fontSize: '24px'} "/>
108
+ <p class="card_details_title">IMSI码</p>
109
+ <a-tooltip>
110
+ <template slot="title">
111
+ {{ details.f_imsi }}
112
+ </template>
113
+ <p class="card_details_value">{{ details.f_imsi }}</p>
114
+ </a-tooltip>
115
+ </a-card-grid>
116
+ </a-col>
117
+ </a-row>
118
+ </a-card>
108
119
  </a-col>
109
- </a-card>
120
+ <a-col :span="12">
121
+ <a-card :bordered="false" title="设备位置" :loading="loading">
122
+ <AmapPointRendering :markers="details" :describeList="describeList" :mapStyle="{width: '100%',height: '381px',border: '2px solid lightgray','border-radius': '5px'}"/>
123
+ </a-card>
124
+ </a-col>
125
+ </a-row>
126
+ <a-row>
127
+ <a-card :bordered="false" title="业务操作记录" :loading="loading">
128
+ <a-button @click="getWorkFlow()" type="primary">刷新</a-button>
129
+ <a-timeline pending="持续记录中..." :reverse="true" mode="alternate" style="max-width: 800px;margin: 0 auto;">
130
+ <a-timeline-item v-if="index < 3 ? true : advanced" :key="index" v-for="(value,index) in workList" color="green">
131
+ <div style="color: #0d1a26;font-weight: 500;">
132
+ <span style="font-size: 16px;">{{ value.name }}</span>
133
+ <span style="margin-left: 5px;">({{ value.type }},{{ format(value.date,'yyyy-MM-dd hh:mm:ss') }})</span>
134
+ </div>
135
+ <div class="antd-pro-pages-profile-advanced-style-stepDescription" >
136
+ 状态:{{ value.state }}
137
+ </div>
138
+ <div class="antd-pro-pages-profile-advanced-style-stepDescription">
139
+ 相关信息:<br/><p style="margin-left: 2em;">{{ value.info }}</p>
140
+ </div>
141
+ </a-timeline-item>
142
+ </a-timeline>
143
+ <a-col :md="!advanced && 8 || 24" :sm="24" v-if="workList.length > 3">
144
+ <span class="table-page-search-submitButtons" :style="advanced && { float: 'right', overflow: 'hidden' } || {} ">
145
+ <a @click="toggleAdvanced" style="margin-left: 8px">
146
+ {{ advanced ? '收起' : '展开' }}
147
+ <a-icon :type="advanced ? 'up' : 'down'"/>
148
+ </a>
149
+ </span>
150
+ </a-col>
151
+ </a-card>
152
+ </a-row>
110
153
  </div>
111
154
  </template>
112
155
  <script>
113
- import { formatDate } from '@vue2-client/utils/util'
114
- import { mapState } from 'vuex'
156
+ import { formatDate } from '@vue2-client/utils/util'
157
+ import { mapState } from 'vuex'
115
158
 
116
- export default {
117
- name: 'DeviceDetailsMain',
118
- props: {
119
- details: {
120
- type: Object,
121
- required: true
122
- }
123
- },
124
- computed: {
125
- ...mapState('setting', ['isMobile'])
126
- },
127
- mounted () {
159
+ export default {
160
+ name: 'DeviceDetailsMain',
161
+ props: {
162
+ details: {
163
+ type: Object,
164
+ required: true
165
+ }
166
+ },
167
+ computed: {
168
+ ...mapState('setting', ['isMobile'])
169
+ },
170
+ mounted () {
171
+ },
172
+ data () {
173
+ return {
174
+ // 历史操作 展开/关闭
175
+ advanced: false,
176
+ workList: [],
177
+ loading: false,
178
+ describeList: [
179
+ { describe: '设备号', field: 'f_device_no' },
180
+ { describe: '设备型号', field: 'f_brand' }
181
+ ],
182
+ // 设备品牌详情抽屉
183
+ deviceBrandDetailVisible: false,
184
+ // 设备类型详情抽屉
185
+ deviceTypeDetailVisible: false
186
+ }
187
+ },
188
+ methods: {
189
+ format (date, format) {
190
+ return formatDate(date, format)
128
191
  },
129
- data () {
130
- return {
131
- // 历史操作 展开/关闭
132
- advanced: false,
133
- workList: [],
134
- loading: false
135
- }
192
+ toggleAdvanced () {
193
+ this.advanced = !this.advanced
136
194
  },
137
- methods: {
138
- format (date, format) {
139
- return formatDate(date, format)
140
- },
141
- toggleAdvanced () {
142
- this.advanced = !this.advanced
143
- }
195
+ toggleDeviceBrandDetailsView () {
196
+ this.deviceBrandDetailVisible = !this.deviceBrandDetailVisible
144
197
  },
145
- watch: {
146
- 'userid' () {
147
- this.getWorkFlow()
148
- }
198
+ toggleDeviceTypeDetailsView () {
199
+ this.deviceTypeDetailVisible = !this.deviceTypeDetailVisible
200
+ }
201
+ },
202
+ watch: {
203
+ 'userid' () {
204
+ this.getWorkFlow()
149
205
  }
150
206
  }
207
+ }
151
208
  </script>
152
209
 
153
210
  <style lang="less" scoped>
154
- .card_view {
155
- width: 70%;
156
- min-width: 700px;
157
- }
211
+ .card_details_title {
212
+ margin: 4px 0;
213
+ font-size: 14px;
214
+ }
158
215
 
159
- .card_view_mobile {
160
- width: 100%;
161
- }
216
+ .card_details_value {
217
+ font-size: 16px;
218
+ font-weight: bold;
219
+ color: #444;
220
+ margin-bottom: 0;
221
+ overflow: hidden;
222
+ text-overflow:ellipsis;
223
+ white-space: nowrap;
224
+ }
162
225
 
163
- .card_details_title {
164
- margin: 4px 0;
165
- font-size: 14px;
166
- }
226
+ .card_guid {
227
+ width: 100%;
228
+ text-align:left;
229
+ cursor: pointer;
230
+ }
167
231
 
168
- .card_details_value {
169
- font-size: 16px;
170
- font-weight: bold;
171
- color: #444;
172
- margin-bottom: 0;
173
- overflow: hidden;
174
- text-overflow:ellipsis;
175
- white-space: nowrap;
176
- }
232
+ .detail-layout {
233
+ margin-left: 44px;
234
+ }
235
+ .text {
236
+ color: rgba(0, 0, 0, .45);
237
+ }
177
238
 
178
- .card_guid {
179
- width: 25%;
180
- text-align:left;
181
- }
239
+ .heading {
240
+ color: rgba(0, 0, 0, .85);
241
+ font-size: 20px;
242
+ }
182
243
 
183
- .card_guid_mobile {
184
- width: 50%;
185
- text-align:left;
244
+ .no-data {
245
+ color: rgba(0, 0, 0, .25);
246
+ text-align: center;
247
+ line-height: 64px;
248
+ font-size: 16px;
249
+
250
+ i {
251
+ font-size: 24px;
252
+ margin-right: 16px;
253
+ position: relative;
254
+ top: 3px;
186
255
  }
256
+ }
187
257
 
258
+ .mobile {
188
259
  .detail-layout {
189
- margin-left: 44px;
260
+ margin-left: unset;
190
261
  }
191
262
  .text {
192
- color: rgba(0, 0, 0, .45);
193
- }
194
-
195
- .heading {
196
- color: rgba(0, 0, 0, .85);
197
- font-size: 20px;
198
- }
199
-
200
- .no-data {
201
- color: rgba(0, 0, 0, .25);
202
- text-align: center;
203
- line-height: 64px;
204
- font-size: 16px;
205
263
 
206
- i {
207
- font-size: 24px;
208
- margin-right: 16px;
209
- position: relative;
210
- top: 3px;
211
- }
212
264
  }
213
-
214
- .mobile {
215
- .detail-layout {
216
- margin-left: unset;
217
- }
218
- .text {
219
-
220
- }
221
- .status-list {
222
- text-align: left;
223
- }
265
+ .status-list {
266
+ text-align: left;
224
267
  }
268
+ }
225
269
  </style>