system-phone 3.0.24 → 3.0.25

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.
@@ -1,362 +1,362 @@
1
- <template>
2
- <div class="nav-bgcolor">
3
- <div class="auto">
4
- <div class="row nav-bgcolor">
5
- <div class="col-xs-6 manbiankuang" v-for="tab in tabs" @click="gotopage(tab.link,tab.name,tab.navigate)">
6
- <div class="badge" v-show="tab.name == '维修派发'">
7
- <div class="badge-content">{{ pointNum ? pointNum : 0 }}</div>
8
- </div>
9
- <div class="badge" v-show="tab.name == '抄表待办'">
10
- <div class="badge-content">{{ meterNum ? meterNum : 0 }}</div>
11
- </div>
12
- <div class="badge" v-show="tab.name == '信息公告'">
13
- <div class="badge-content">{{ infoNum ? infoNum : 0 }}</div>
14
- </div>
15
- <img class="imgs" :src="imgback(tab.name)" alt="">
16
- <p></p>
17
- <p class="pagesfoot">{{ tab.name }}</p>
18
- <!--<p class="pagesfoot">{{tab.name}}&nbsp;{{tab.icon}}</p>-->
19
- <p></p>
20
- </div>
21
- </div>
22
- <!--<div class="row" style="overflow:auto;">-->
23
- <!--<repair-first v-show="componentName == 'repair-first'" worktype="报修单" :sourcet="sourcet" tabname="维修待办" v-on:changesum="changesum"></repair-first>-->
24
- <!--<zhihuan-first v-show="componentName == 'zhihuan-first'" worktype="置换通气单" :sourcet="sourcet" tabname="置换待办" v-on:changesum="changesum"></zhihuan-first>-->
25
- <!--</div>-->
26
- </div>
27
- </div>
28
- </template>
29
-
30
- <script scoped>
31
- import Vue from 'vue'
32
- import {HttpResetClass} from "vue-client";
33
- import * as Util from "../Util";
34
-
35
- export default {
36
- title: '在线业务导航',
37
- data() {
38
- return {
39
- titleName: '在线业务',
40
- isMenu: true,
41
- tabs: this.getTabs(),
42
- text: '导航组件this',
43
- beforeName: '在线业务',
44
- sourcet: '竖屏',
45
- pointNum: null,
46
- infoNum: null,
47
- meterNum: null
48
- }
49
- },
50
- ready() {
51
- // this.getModelSum()
52
- },
53
-
54
- methods: {
55
- //看去哪个页面
56
- getModelSum() {
57
- for (var i = 0; i < this.tabs.length; i++) {
58
- if (this.tabs[i].link == 'readmeter-home') {
59
- this.getZhihuan()
60
- }
61
- if (this.tabs[i].link == 'weiup-load') {
62
- this.getRepair()
63
- }
64
- if (this.tabs[i].link == 'upload-page') {
65
- this.getSafeCheck()
66
- }
67
- }
68
-
69
- },
70
- getRepair() {
71
- var _this = this;
72
- this.timeoutRepair = window.setInterval(function () {
73
- let result = _this.$androidUtil.path({'alias': 'notUpload', 'data': {f_workorder_type: '报修单'}})
74
- if (result.code === 200) {
75
- console.log('查询得到的代办2' + JSON.stringify(result))
76
- var crv = {
77
- title: '维修上传',
78
- sum: result.data.length
79
- }
80
- _this.changesum(crv)
81
- }
82
- }, 6000)
83
- },
84
- getSafeCheck() {
85
- var _this = this;
86
- this.timeoutRepair = window.setInterval(function () {
87
- let result = _this.$androidUtil.path({'alias': 'safecheckNotUpload', 'data': {}})
88
- if (result.code === 200) {
89
- console.log('查询得到的安检上传' + JSON.stringify(result))
90
- var crv = {
91
- title: '安检上传',
92
- sum: result.data.length
93
- }
94
- _this.changesum(crv)
95
- }
96
- }, 6000)
97
- },
98
- getZhihuan() {
99
- var _this = this;
100
- this.timeoutZhihuan = window.setInterval(function () {
101
- let result = {code: 200}
102
- if (result.code === 200) {
103
- console.log('查询得到的代办2' + JSON.stringify(result))
104
- var crv = {
105
- title: '置换上传',
106
- sum: result.data.length
107
- }
108
- _this.changesum(crv)
109
- }
110
- }, 6000)
111
- },
112
- changesum(titdata) {
113
- for (var i = 0; i < this.tabs.length; i++) {
114
- if (this.tabs[i].name == titdata.title) {
115
- this.tabs[i].icon = titdata.sum + '单'
116
- console.log(JSON.stringify(this.tabs[i].icon))
117
- return
118
- }
119
- }
120
- },
121
- getTabs() {
122
- this.getRepairNum()
123
- this.getInfoNum()
124
- this.getmeterNum()
125
- for (let funs in Vue.functions) {
126
- if (Vue.functions[funs].link == 'online-manage') {
127
- return Vue.functions[funs].children
128
- }
129
- }
130
- },
131
- getmeterNum() {
132
- if (!Vue.android || !Vue.come || !Vue.come == 'tongchuan') {
133
- return
134
- }
135
- window.setInterval(() => {
136
- let val = {
137
- items: "*",
138
- tablename: "t_handplan",
139
- orderitem: "id desc",
140
- condition: `1=1 and f_inputtor = '${Vue.user.name}' and f_hand_state = '有效' and f_meter_state = '未抄表'`,
141
- f_orgid: `'${Vue.user.orgid}'`
142
- }
143
- let http = new HttpResetClass()
144
- http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {data: val}, {
145
- resolveMsg: null,
146
- rejectMsg: null
147
- }).then((res) => {
148
- this.meterNum = res.data.length
149
- })
150
- }, 100000)
151
- this.timeOutGetmeterNum()
152
- },
153
- getInfoNum() {
154
- if (!Vue.android || !Vue.come || !Vue.come == 'tongchuan') {
155
- return
156
- }
157
- window.setInterval(() => {
158
- let condition = " 1 = 1 and (f_enddate >= '" + Util.toStandardTimeString()+ "' or f_state = '公告中') "
159
- let val = {
160
- items: "*",
161
- tablename: "T_STOPGAS",
162
- orderitem: "f_date desc",
163
- condition: condition,
164
- f_orgstr: `'${Vue.user.orgid}'`
165
- }
166
- let http = new HttpResetClass()
167
- http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {data: val}, {
168
- resolveMsg: null,
169
- rejectMsg: null
170
- }).then((res) => {
171
- this.infoNum = res.data.length
172
- })
173
- }, 100000)
174
- this.timeOutGetInfoNum()
175
- },
176
- getRepairNum() {
177
- if (!Vue.android || !Vue.come || !Vue.come == 'tongchuan') {
178
- return
179
- }
180
- window.setInterval(() => {
181
- let condition = `1 = 1 and f_workorder_type = '报修单' and f_state = null `
182
- let val = {
183
- condition: {
184
- condition: condition,
185
- sign: '1 = 1'
186
- },
187
- userid: Vue.user.name
188
- }
189
- let http = new HttpResetClass()
190
- http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/path/operatorServiceAndroid`, {data: val}, {
191
- resolveMsg: null,
192
- rejectMsg: null
193
- }).then((res) => {
194
- this.pointNum = res.data.length
195
- })
196
- }, 100000)
197
- this.timeOutGetRepairNum()
198
- },
199
- timeOutGetRepairNum() {
200
-
201
- let condition = `1 = 1 and f_workorder_type = '报修单' and f_state = null `
202
- let val = {
203
- condition: {
204
- condition: condition,
205
- sign: '1 = 1'
206
- },
207
- userid: Vue.user.name
208
- }
209
- let http = new HttpResetClass()
210
- http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/path/operatorServiceAndroid`, {data: val}, {
211
- resolveMsg: null,
212
- rejectMsg: null
213
- }).then((res) => {
214
- this.pointNum = res.data.length
215
- })
216
- },
217
- timeOutGetInfoNum() {
218
- let condition = " 1 = 1 and (f_enddate >= '" + Util.toStandardTimeString() + "' or f_state = '公告中') "
219
- let val = {
220
- items: "*",
221
- tablename: "T_STOPGAS",
222
- orderitem: "f_date desc",
223
- condition: condition,
224
- f_orgstr: `'${Vue.user.orgid}'`
225
- }
226
- let http = new HttpResetClass()
227
- http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {data: val}, {
228
- resolveMsg: null,
229
- rejectMsg: null
230
- }).then((res) => {
231
- this.infoNum = res.data.length
232
- })
233
- },
234
- timeOutGetmeterNum() {
235
- let val = {
236
- items: "*",
237
- tablename: "t_handplan",
238
- orderitem: "id desc",
239
- condition: `1=1 and f_inputtor = '${Vue.user.name}' and f_hand_state = '有效' and f_meter_state = '未抄表'`,
240
- f_orgid: `'${Vue.user.orgid}'`
241
- }
242
- let http = new HttpResetClass()
243
- http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {data: val}, {
244
- resolveMsg: null,
245
- rejectMsg: null
246
- }).then((res) => {
247
- this.meterNum = res.data.length
248
- })
249
- },
250
- imgback(val) {
251
- return require('../assets/' + val + '.png')
252
- },
253
- // 返回主界面
254
- back() {
255
- this.titleName = '主界面'
256
- this.isMenu = true
257
-
258
- },
259
- gotopage(param, title, navigate) {
260
- console.log('进入子组件')
261
- var prpdata = {
262
- _this: this,
263
- title: title,
264
- safe: false
265
- }
266
- this.$dispatch('gotoson', prpdata)
267
- if (navigate) {
268
- this.$goto('embbed-page', {domainName: navigate, title: title, compName: param, login: Vue.user})
269
- } else {
270
- this.$goto(param, {sourcet: '竖屏', tabname: title})
271
- }
272
- },
273
- mute() {
274
- HostApp.mute()
275
- }
276
- },
277
- }
278
- </script>
279
- <style lang="less">
280
- .badge-content {
281
- color: #fff;
282
- box-sizing: border-box;
283
- min-width: 8px;
284
- font-size: 9px;
285
- line-height: 12px;
286
- white-space: nowrap;
287
- font-weight: 400;
288
- text-align: center;
289
- }
290
-
291
- .badge {
292
- top: 6px;
293
- position: absolute;
294
- max-height: 13px;
295
- min-height: 8px;
296
- right: 0;
297
- display: inline-flex;
298
- vertical-align: middle;
299
- box-sizing: content-box;
300
- border-radius: 100px;
301
- background-color: red;
302
- }
303
-
304
- .tab-befor-img {
305
- content: '';
306
- background-size: 30px;
307
- display: inline-block;
308
- margin-right: 8px;
309
- height: 30px;
310
- width: 30px;
311
- vertical-align: -35%;
312
- }
313
-
314
- .pageskuang {
315
- vertical-align: middle;
316
- display: table-cell;
317
- width: 32%;
318
- top: -50%;
319
- margin-top: 1%;
320
- margin-left: 1%;
321
- border: 1px solid #e3e3e3;
322
- text-align: center;
323
- background-color: #ffffff;
324
- }
325
-
326
- .pgesfoot {
327
- font-size: 14px;
328
- color: #666666;
329
- /* font-family: "Pingfhs";*/
330
- }
331
-
332
- .imgs {
333
- width: 35px;
334
- margin-top: 15px;
335
- }
336
-
337
- .pages-bgcolor {
338
- text-align: center;
339
- background-color: #f0f0ef;
340
- }
341
-
342
- img[src=""], img:not([src]) {
343
- opacity: 0;
344
- border: none;
345
- visibility: hidden;
346
- max-width: none;
347
- }
348
-
349
- .manbiankuang {
350
- width: 44%;
351
- margin-top: 15px;
352
- margin-left: 4%;
353
- border: 1px solid #e3e3e3;
354
- border-radius: 10px 10px 10px 10px;
355
- text-align: center;
356
- background-color: #ffffff;
357
- }
358
-
359
- .nav-bgcolor {
360
- background-color: #ffffff;
361
- }
362
- </style>
1
+ <template>
2
+ <div class="nav-bgcolor">
3
+ <div class="auto">
4
+ <div class="row nav-bgcolor">
5
+ <div class="col-xs-6 manbiankuang" v-for="tab in tabs" @click="gotopage(tab.link,tab.name,tab.navigate)">
6
+ <div class="badge" v-show="tab.name == '维修派发'">
7
+ <div class="badge-content">{{ pointNum ? pointNum : 0 }}</div>
8
+ </div>
9
+ <div class="badge" v-show="tab.name == '抄表待办'">
10
+ <div class="badge-content">{{ meterNum ? meterNum : 0 }}</div>
11
+ </div>
12
+ <div class="badge" v-show="tab.name == '信息公告'">
13
+ <div class="badge-content">{{ infoNum ? infoNum : 0 }}</div>
14
+ </div>
15
+ <img class="imgs" :src="imgback(tab.name)" alt="">
16
+ <p></p>
17
+ <p class="pagesfoot">{{ tab.name }}</p>
18
+ <!--<p class="pagesfoot">{{tab.name}}&nbsp;{{tab.icon}}</p>-->
19
+ <p></p>
20
+ </div>
21
+ </div>
22
+ <!--<div class="row" style="overflow:auto;">-->
23
+ <!--<repair-first v-show="componentName == 'repair-first'" worktype="报修单" :sourcet="sourcet" tabname="维修待办" v-on:changesum="changesum"></repair-first>-->
24
+ <!--<zhihuan-first v-show="componentName == 'zhihuan-first'" worktype="置换通气单" :sourcet="sourcet" tabname="置换待办" v-on:changesum="changesum"></zhihuan-first>-->
25
+ <!--</div>-->
26
+ </div>
27
+ </div>
28
+ </template>
29
+
30
+ <script scoped>
31
+ import Vue from 'vue'
32
+ import {HttpResetClass} from "vue-client";
33
+ import * as Util from "../Util";
34
+
35
+ export default {
36
+ title: '在线业务导航',
37
+ data() {
38
+ return {
39
+ titleName: '在线业务',
40
+ isMenu: true,
41
+ tabs: this.getTabs(),
42
+ text: '导航组件this',
43
+ beforeName: '在线业务',
44
+ sourcet: '竖屏',
45
+ pointNum: null,
46
+ infoNum: null,
47
+ meterNum: null
48
+ }
49
+ },
50
+ ready() {
51
+ // this.getModelSum()
52
+ },
53
+
54
+ methods: {
55
+ //看去哪个页面
56
+ getModelSum() {
57
+ for (var i = 0; i < this.tabs.length; i++) {
58
+ if (this.tabs[i].link == 'readmeter-home') {
59
+ this.getZhihuan()
60
+ }
61
+ if (this.tabs[i].link == 'weiup-load') {
62
+ this.getRepair()
63
+ }
64
+ if (this.tabs[i].link == 'upload-page') {
65
+ this.getSafeCheck()
66
+ }
67
+ }
68
+
69
+ },
70
+ getRepair() {
71
+ var _this = this;
72
+ this.timeoutRepair = window.setInterval(function () {
73
+ let result = _this.$androidUtil.path({'alias': 'notUpload', 'data': {f_workorder_type: '报修单'}})
74
+ if (result.code === 200) {
75
+ console.log('查询得到的代办2' + JSON.stringify(result))
76
+ var crv = {
77
+ title: '维修上传',
78
+ sum: result.data.length
79
+ }
80
+ _this.changesum(crv)
81
+ }
82
+ }, 6000)
83
+ },
84
+ getSafeCheck() {
85
+ var _this = this;
86
+ this.timeoutRepair = window.setInterval(function () {
87
+ let result = _this.$androidUtil.path({'alias': 'safecheckNotUpload', 'data': {}})
88
+ if (result.code === 200) {
89
+ console.log('查询得到的安检上传' + JSON.stringify(result))
90
+ var crv = {
91
+ title: '安检上传',
92
+ sum: result.data.length
93
+ }
94
+ _this.changesum(crv)
95
+ }
96
+ }, 6000)
97
+ },
98
+ getZhihuan() {
99
+ var _this = this;
100
+ this.timeoutZhihuan = window.setInterval(function () {
101
+ let result = {code: 200}
102
+ if (result.code === 200) {
103
+ console.log('查询得到的代办2' + JSON.stringify(result))
104
+ var crv = {
105
+ title: '置换上传',
106
+ sum: result.data.length
107
+ }
108
+ _this.changesum(crv)
109
+ }
110
+ }, 6000)
111
+ },
112
+ changesum(titdata) {
113
+ for (var i = 0; i < this.tabs.length; i++) {
114
+ if (this.tabs[i].name == titdata.title) {
115
+ this.tabs[i].icon = titdata.sum + '单'
116
+ console.log(JSON.stringify(this.tabs[i].icon))
117
+ return
118
+ }
119
+ }
120
+ },
121
+ getTabs() {
122
+ this.getRepairNum()
123
+ this.getInfoNum()
124
+ this.getmeterNum()
125
+ for (let funs in Vue.functions) {
126
+ if (Vue.functions[funs].link == 'online-manage') {
127
+ return Vue.functions[funs].children
128
+ }
129
+ }
130
+ },
131
+ getmeterNum() {
132
+ if (!Vue.android || !Vue.come || !Vue.come == 'tongchuan') {
133
+ return
134
+ }
135
+ window.setInterval(() => {
136
+ let val = {
137
+ items: "*",
138
+ tablename: "t_handplan",
139
+ orderitem: "id desc",
140
+ condition: `1=1 and f_inputtor = '${Vue.user.name}' and f_hand_state = '有效' and f_meter_state = '未抄表'`,
141
+ f_orgid: `'${Vue.user.orgid}'`
142
+ }
143
+ let http = new HttpResetClass()
144
+ http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {data: val}, {
145
+ resolveMsg: null,
146
+ rejectMsg: null
147
+ }).then((res) => {
148
+ this.meterNum = res.data.length
149
+ })
150
+ }, 100000)
151
+ this.timeOutGetmeterNum()
152
+ },
153
+ getInfoNum() {
154
+ if (!Vue.android || !Vue.come || !Vue.come == 'tongchuan') {
155
+ return
156
+ }
157
+ window.setInterval(() => {
158
+ let condition = " 1 = 1 and (f_enddate >= '" + Util.toStandardTimeString()+ "' or f_state = '公告中') "
159
+ let val = {
160
+ items: "*",
161
+ tablename: "T_STOPGAS",
162
+ orderitem: "f_date desc",
163
+ condition: condition,
164
+ f_orgstr: `'${Vue.user.orgid}'`
165
+ }
166
+ let http = new HttpResetClass()
167
+ http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {data: val}, {
168
+ resolveMsg: null,
169
+ rejectMsg: null
170
+ }).then((res) => {
171
+ this.infoNum = res.data.length
172
+ })
173
+ }, 100000)
174
+ this.timeOutGetInfoNum()
175
+ },
176
+ getRepairNum() {
177
+ if (!Vue.android || !Vue.come || !Vue.come == 'tongchuan') {
178
+ return
179
+ }
180
+ window.setInterval(() => {
181
+ let condition = `1 = 1 and f_workorder_type = '报修单' and f_state = null `
182
+ let val = {
183
+ condition: {
184
+ condition: condition,
185
+ sign: '1 = 1'
186
+ },
187
+ userid: Vue.user.name
188
+ }
189
+ let http = new HttpResetClass()
190
+ http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/path/operatorServiceAndroid`, {data: val}, {
191
+ resolveMsg: null,
192
+ rejectMsg: null
193
+ }).then((res) => {
194
+ this.pointNum = res.data.length
195
+ })
196
+ }, 100000)
197
+ this.timeOutGetRepairNum()
198
+ },
199
+ timeOutGetRepairNum() {
200
+
201
+ let condition = `1 = 1 and f_workorder_type = '报修单' and f_state = null `
202
+ let val = {
203
+ condition: {
204
+ condition: condition,
205
+ sign: '1 = 1'
206
+ },
207
+ userid: Vue.user.name
208
+ }
209
+ let http = new HttpResetClass()
210
+ http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/path/operatorServiceAndroid`, {data: val}, {
211
+ resolveMsg: null,
212
+ rejectMsg: null
213
+ }).then((res) => {
214
+ this.pointNum = res.data.length
215
+ })
216
+ },
217
+ timeOutGetInfoNum() {
218
+ let condition = " 1 = 1 and (f_enddate >= '" + Util.toStandardTimeString() + "' or f_state = '公告中') "
219
+ let val = {
220
+ items: "*",
221
+ tablename: "T_STOPGAS",
222
+ orderitem: "f_date desc",
223
+ condition: condition,
224
+ f_orgstr: `'${Vue.user.orgid}'`
225
+ }
226
+ let http = new HttpResetClass()
227
+ http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {data: val}, {
228
+ resolveMsg: null,
229
+ rejectMsg: null
230
+ }).then((res) => {
231
+ this.infoNum = res.data.length
232
+ })
233
+ },
234
+ timeOutGetmeterNum() {
235
+ let val = {
236
+ items: "*",
237
+ tablename: "t_handplan",
238
+ orderitem: "id desc",
239
+ condition: `1=1 and f_inputtor = '${Vue.user.name}' and f_hand_state = '有效' and f_meter_state = '未抄表'`,
240
+ f_orgid: `'${Vue.user.orgid}'`
241
+ }
242
+ let http = new HttpResetClass()
243
+ http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {data: val}, {
244
+ resolveMsg: null,
245
+ rejectMsg: null
246
+ }).then((res) => {
247
+ this.meterNum = res.data.length
248
+ })
249
+ },
250
+ imgback(val) {
251
+ return require('../assets/' + val + '.png')
252
+ },
253
+ // 返回主界面
254
+ back() {
255
+ this.titleName = '主界面'
256
+ this.isMenu = true
257
+
258
+ },
259
+ gotopage(param, title, navigate) {
260
+ console.log('进入子组件')
261
+ var prpdata = {
262
+ _this: this,
263
+ title: title,
264
+ safe: false
265
+ }
266
+ this.$dispatch('gotoson', prpdata)
267
+ if (navigate) {
268
+ this.$goto('embbed-page', {domainName: navigate, title: title, compName: param, login: Vue.user})
269
+ } else {
270
+ this.$goto(param, {sourcet: '竖屏', tabname: title})
271
+ }
272
+ },
273
+ mute() {
274
+ HostApp.mute()
275
+ }
276
+ },
277
+ }
278
+ </script>
279
+ <style lang="less">
280
+ .badge-content {
281
+ color: #fff;
282
+ box-sizing: border-box;
283
+ min-width: 8px;
284
+ font-size: 9px;
285
+ line-height: 12px;
286
+ white-space: nowrap;
287
+ font-weight: 400;
288
+ text-align: center;
289
+ }
290
+
291
+ .badge {
292
+ top: 6px;
293
+ position: absolute;
294
+ max-height: 13px;
295
+ min-height: 8px;
296
+ right: 0;
297
+ display: inline-flex;
298
+ vertical-align: middle;
299
+ box-sizing: content-box;
300
+ border-radius: 100px;
301
+ background-color: red;
302
+ }
303
+
304
+ .tab-befor-img {
305
+ content: '';
306
+ background-size: 30px;
307
+ display: inline-block;
308
+ margin-right: 8px;
309
+ height: 30px;
310
+ width: 30px;
311
+ vertical-align: -35%;
312
+ }
313
+
314
+ .pageskuang {
315
+ vertical-align: middle;
316
+ display: table-cell;
317
+ width: 32%;
318
+ top: -50%;
319
+ margin-top: 1%;
320
+ margin-left: 1%;
321
+ border: 1px solid #e3e3e3;
322
+ text-align: center;
323
+ background-color: #ffffff;
324
+ }
325
+
326
+ .pgesfoot {
327
+ font-size: 14px;
328
+ color: #666666;
329
+ /* font-family: "Pingfhs";*/
330
+ }
331
+
332
+ .imgs {
333
+ width: 35px;
334
+ margin-top: 15px;
335
+ }
336
+
337
+ .pages-bgcolor {
338
+ text-align: center;
339
+ background-color: #f0f0ef;
340
+ }
341
+
342
+ img[src=""], img:not([src]) {
343
+ opacity: 0;
344
+ border: none;
345
+ visibility: hidden;
346
+ max-width: none;
347
+ }
348
+
349
+ .manbiankuang {
350
+ width: 44%;
351
+ margin-top: 15px;
352
+ margin-left: 4%;
353
+ border: 1px solid #e3e3e3;
354
+ border-radius: 10px 10px 10px 10px;
355
+ text-align: center;
356
+ background-color: #ffffff;
357
+ }
358
+
359
+ .nav-bgcolor {
360
+ background-color: #ffffff;
361
+ }
362
+ </style>