system-phone 3.0.34 → 3.0.35-zhongyi
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.
- package/package.json +1 -1
- package/src/components/AttendManage.vue +470 -470
- package/src/components/PhoneChangemeterInfo.vue +1 -1
- package/src/components/PhoneMeterInfo.vue +1 -1
- package/src/components/iot/InstructMessage.vue +313 -313
- package/src/components/iot/IotBaseInfo.vue +97 -97
- package/src/systemphone.js +58 -58
|
@@ -1,97 +1,97 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="flex">
|
|
3
|
-
<div class="cols-sm-12 col-md-12 col-xs-12 " >
|
|
4
|
-
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
5
|
-
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
6
|
-
<img src="../../assets/pinpai.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
7
|
-
<span class="font-content">表具品牌</span>
|
|
8
|
-
<span class="font-head">{{row.f_meter_brand}}</span>
|
|
9
|
-
</div>
|
|
10
|
-
|
|
11
|
-
</div>
|
|
12
|
-
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
13
|
-
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
14
|
-
<img src="../../assets/leixing.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
15
|
-
<span class="font-content">表具类型</span>
|
|
16
|
-
<span class="font-head">{{row.f_meter_type}}</span>
|
|
17
|
-
</div>
|
|
18
|
-
</div>
|
|
19
|
-
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
20
|
-
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
21
|
-
<img src="../../assets/biaohao.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
22
|
-
<span class="font-content">表号</span>
|
|
23
|
-
<span class="font-head">{{row.f_meternumber}}</span>
|
|
24
|
-
</div>
|
|
25
|
-
</div>
|
|
26
|
-
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
27
|
-
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
28
|
-
<img src="../../assets/guige.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
29
|
-
<span class="font-content">表具规格</span>
|
|
30
|
-
<span class="font-head">{{row.f_meter_style}}</span>
|
|
31
|
-
</div>
|
|
32
|
-
</div>
|
|
33
|
-
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
34
|
-
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
35
|
-
<img src="../../assets/xinghao.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
36
|
-
<span class="font-content">表具型号</span>
|
|
37
|
-
<span class="font-head">{{row.f_type}}</span>
|
|
38
|
-
</div>
|
|
39
|
-
</div>
|
|
40
|
-
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
41
|
-
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
42
|
-
<img src="../../assets/bieming.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
43
|
-
<span class="font-content">表具别名</span>
|
|
44
|
-
<span class="font-head">{{row.f_alias}}</span>
|
|
45
|
-
</div>
|
|
46
|
-
</div>
|
|
47
|
-
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
48
|
-
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
49
|
-
<img src="../../assets/yue.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
50
|
-
<span class="font-content">剩余金额</span>
|
|
51
|
-
<span class="font-head">{{row.f_balance_amount}}</span>
|
|
52
|
-
</div>
|
|
53
|
-
</div>
|
|
54
|
-
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
55
|
-
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
56
|
-
<img src="../../assets/qiliang.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
57
|
-
<span class="font-content">累计用气量</span>
|
|
58
|
-
<span class="font-head">{{row.f_balance_gas}}</span>
|
|
59
|
-
</div>
|
|
60
|
-
</div>
|
|
61
|
-
</div>
|
|
62
|
-
</div>
|
|
63
|
-
</template>
|
|
64
|
-
|
|
65
|
-
<script>
|
|
66
|
-
export default {
|
|
67
|
-
title: '基础信息',
|
|
68
|
-
data () {
|
|
69
|
-
return {
|
|
70
|
-
msg: '',
|
|
71
|
-
show: false
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
|
-
props:['row'],
|
|
75
|
-
ready () {
|
|
76
|
-
// this.$appdata.load().then(() => {
|
|
77
|
-
// this.$emit('ready')
|
|
78
|
-
// })
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
</script>
|
|
82
|
-
<style media="screen" scoped>
|
|
83
|
-
.font-head{
|
|
84
|
-
font-size: 14px;
|
|
85
|
-
font-weight: bold;
|
|
86
|
-
color: #333;
|
|
87
|
-
}
|
|
88
|
-
.font-content{
|
|
89
|
-
font-size: 12px;
|
|
90
|
-
font-weight: normal;
|
|
91
|
-
color: #666666;
|
|
92
|
-
}
|
|
93
|
-
.meterinfo{
|
|
94
|
-
border:1px solid #eeeeee;
|
|
95
|
-
/*border-right: 2px solid #eeeeee;*/
|
|
96
|
-
}
|
|
97
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex">
|
|
3
|
+
<div class="cols-sm-12 col-md-12 col-xs-12 " >
|
|
4
|
+
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
5
|
+
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
6
|
+
<img src="../../assets/pinpai.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
7
|
+
<span class="font-content">表具品牌</span>
|
|
8
|
+
<span class="font-head">{{row.f_meter_brand}}</span>
|
|
9
|
+
</div>
|
|
10
|
+
|
|
11
|
+
</div>
|
|
12
|
+
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
13
|
+
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
14
|
+
<img src="../../assets/leixing.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
15
|
+
<span class="font-content">表具类型</span>
|
|
16
|
+
<span class="font-head">{{row.f_meter_type}}</span>
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
20
|
+
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
21
|
+
<img src="../../assets/biaohao.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
22
|
+
<span class="font-content">表号</span>
|
|
23
|
+
<span class="font-head">{{row.f_meternumber}}</span>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
27
|
+
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
28
|
+
<img src="../../assets/guige.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
29
|
+
<span class="font-content">表具规格</span>
|
|
30
|
+
<span class="font-head">{{row.f_meter_style}}</span>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
34
|
+
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
35
|
+
<img src="../../assets/xinghao.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
36
|
+
<span class="font-content">表具型号</span>
|
|
37
|
+
<span class="font-head">{{row.f_type}}</span>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
41
|
+
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
42
|
+
<img src="../../assets/bieming.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
43
|
+
<span class="font-content">表具别名</span>
|
|
44
|
+
<span class="font-head">{{row.f_alias}}</span>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
48
|
+
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
49
|
+
<img src="../../assets/yue.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
50
|
+
<span class="font-content">剩余金额</span>
|
|
51
|
+
<span class="font-head">{{row.f_balance_amount}}</span>
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
<div class="col-sm-3 col-md-3 col-xs-4 meterinfo">
|
|
55
|
+
<div class="flex" style="padding: 0.5rem;align-items: center">
|
|
56
|
+
<img src="../../assets/qiliang.png" style="height:32px;width:32px;margin-bottom: 5px" alt="" >
|
|
57
|
+
<span class="font-content">累计用气量</span>
|
|
58
|
+
<span class="font-head">{{row.f_balance_gas}}</span>
|
|
59
|
+
</div>
|
|
60
|
+
</div>
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
</template>
|
|
64
|
+
|
|
65
|
+
<script>
|
|
66
|
+
export default {
|
|
67
|
+
title: '基础信息',
|
|
68
|
+
data () {
|
|
69
|
+
return {
|
|
70
|
+
msg: '',
|
|
71
|
+
show: false
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
props:['row'],
|
|
75
|
+
ready () {
|
|
76
|
+
// this.$appdata.load().then(() => {
|
|
77
|
+
// this.$emit('ready')
|
|
78
|
+
// })
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
</script>
|
|
82
|
+
<style media="screen" scoped>
|
|
83
|
+
.font-head{
|
|
84
|
+
font-size: 14px;
|
|
85
|
+
font-weight: bold;
|
|
86
|
+
color: #333;
|
|
87
|
+
}
|
|
88
|
+
.font-content{
|
|
89
|
+
font-size: 12px;
|
|
90
|
+
font-weight: normal;
|
|
91
|
+
color: #666666;
|
|
92
|
+
}
|
|
93
|
+
.meterinfo{
|
|
94
|
+
border:1px solid #eeeeee;
|
|
95
|
+
/*border-right: 2px solid #eeeeee;*/
|
|
96
|
+
}
|
|
97
|
+
</style>
|
package/src/systemphone.js
CHANGED
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
import App from './App'
|
|
3
|
-
import { all } from 'vue-client'
|
|
4
|
-
import GetAppDataService from './stores/AppData'
|
|
5
|
-
import GetStringData from './plugins/GetStringData'
|
|
6
|
-
|
|
7
|
-
/** **************************通用组件******************************/
|
|
8
|
-
|
|
9
|
-
export default function () {
|
|
10
|
-
Vue.use(GetAppDataService)
|
|
11
|
-
Vue.use(GetStringData)
|
|
12
|
-
// 测试
|
|
13
|
-
Vue.component('test', (resolve) => {
|
|
14
|
-
require(['./components/Test'], resolve)
|
|
15
|
-
})
|
|
16
|
-
// android登录
|
|
17
|
-
Vue.component('login-app', (resolve) => {
|
|
18
|
-
require(['./components/LoginApp'], resolve)
|
|
19
|
-
})
|
|
20
|
-
// 导航
|
|
21
|
-
Vue.component('nav-bottom', (resolve) => {
|
|
22
|
-
require(['./components/NavBottom'], resolve)
|
|
23
|
-
})
|
|
24
|
-
// 只加载参数(只有下拉框所需参数)
|
|
25
|
-
Vue.component('load-appdata', (resolve) => {
|
|
26
|
-
require(['./components/LoadAppdata'], resolve)
|
|
27
|
-
})
|
|
28
|
-
// 头部标题
|
|
29
|
-
Vue.component('tools-page', (resolve) => {
|
|
30
|
-
require(['./components/ToolsPage'], resolve)
|
|
31
|
-
})
|
|
32
|
-
// 设置
|
|
33
|
-
Vue.component('system-setup', (resolve) => {
|
|
34
|
-
require(['./components/SystemSetUp'], resolve)
|
|
35
|
-
})
|
|
36
|
-
// 修改密码
|
|
37
|
-
Vue.component('modify-pass-word', (resolve) => {
|
|
38
|
-
require(['./components/ModifyPassWord'], resolve)
|
|
39
|
-
})
|
|
40
|
-
// 物联网监控
|
|
41
|
-
Vue.component('iot-monitoring-main', (resolve) => {
|
|
42
|
-
require(['./components/iot/iotMonitoringMain'], resolve)
|
|
43
|
-
})
|
|
44
|
-
// 物联网监控表具信息
|
|
45
|
-
Vue.component('iot-meter-info', (resolve) => {
|
|
46
|
-
require(['./components/iot/IotMeterInfo'], resolve)
|
|
47
|
-
})
|
|
48
|
-
// 物联网监控基础信息
|
|
49
|
-
Vue.component('iot-base-info', (resolve) => {
|
|
50
|
-
require(['./components/iot/IotBaseInfo'], resolve)
|
|
51
|
-
})
|
|
52
|
-
// 物联网监控指令信息
|
|
53
|
-
Vue.component('instruct-message', (resolve) => {
|
|
54
|
-
require(['./components/iot/InstructMessage'], resolve)
|
|
55
|
-
})
|
|
56
|
-
// // 只加载参数(只有下拉框所需参数)
|
|
57
|
-
// Vue.component('alone-load-params', (resolve) => { require(['./components/AloneLoadParams'], resolve) })
|
|
58
|
-
}
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
import App from './App'
|
|
3
|
+
import { all } from 'vue-client'
|
|
4
|
+
import GetAppDataService from './stores/AppData'
|
|
5
|
+
import GetStringData from './plugins/GetStringData'
|
|
6
|
+
|
|
7
|
+
/** **************************通用组件******************************/
|
|
8
|
+
|
|
9
|
+
export default function () {
|
|
10
|
+
Vue.use(GetAppDataService)
|
|
11
|
+
Vue.use(GetStringData)
|
|
12
|
+
// 测试
|
|
13
|
+
Vue.component('test', (resolve) => {
|
|
14
|
+
require(['./components/Test'], resolve)
|
|
15
|
+
})
|
|
16
|
+
// android登录
|
|
17
|
+
Vue.component('login-app', (resolve) => {
|
|
18
|
+
require(['./components/LoginApp'], resolve)
|
|
19
|
+
})
|
|
20
|
+
// 导航
|
|
21
|
+
Vue.component('nav-bottom', (resolve) => {
|
|
22
|
+
require(['./components/NavBottom'], resolve)
|
|
23
|
+
})
|
|
24
|
+
// 只加载参数(只有下拉框所需参数)
|
|
25
|
+
Vue.component('load-appdata', (resolve) => {
|
|
26
|
+
require(['./components/LoadAppdata'], resolve)
|
|
27
|
+
})
|
|
28
|
+
// 头部标题
|
|
29
|
+
Vue.component('tools-page', (resolve) => {
|
|
30
|
+
require(['./components/ToolsPage'], resolve)
|
|
31
|
+
})
|
|
32
|
+
// 设置
|
|
33
|
+
Vue.component('system-setup', (resolve) => {
|
|
34
|
+
require(['./components/SystemSetUp'], resolve)
|
|
35
|
+
})
|
|
36
|
+
// 修改密码
|
|
37
|
+
Vue.component('modify-pass-word', (resolve) => {
|
|
38
|
+
require(['./components/ModifyPassWord'], resolve)
|
|
39
|
+
})
|
|
40
|
+
// 物联网监控
|
|
41
|
+
Vue.component('iot-monitoring-main', (resolve) => {
|
|
42
|
+
require(['./components/iot/iotMonitoringMain'], resolve)
|
|
43
|
+
})
|
|
44
|
+
// 物联网监控表具信息
|
|
45
|
+
Vue.component('iot-meter-info', (resolve) => {
|
|
46
|
+
require(['./components/iot/IotMeterInfo'], resolve)
|
|
47
|
+
})
|
|
48
|
+
// 物联网监控基础信息
|
|
49
|
+
Vue.component('iot-base-info', (resolve) => {
|
|
50
|
+
require(['./components/iot/IotBaseInfo'], resolve)
|
|
51
|
+
})
|
|
52
|
+
// 物联网监控指令信息
|
|
53
|
+
Vue.component('instruct-message', (resolve) => {
|
|
54
|
+
require(['./components/iot/InstructMessage'], resolve)
|
|
55
|
+
})
|
|
56
|
+
// // 只加载参数(只有下拉框所需参数)
|
|
57
|
+
// Vue.component('alone-load-params', (resolve) => { require(['./components/AloneLoadParams'], resolve) })
|
|
58
|
+
}
|