system-phone 3.0.49-4 → 3.0.49-40
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/assets/images//346/211/223/345/215/241.png +0 -0
- package/src/assets//344/277/235/351/231/251/347/231/273/350/256/260.png +0 -0
- package/src/assets//345/210/240/351/231/244/347/205/247/347/211/207.png +0 -0
- package/src/assets//345/215/217/345/212/251/345/256/211/346/243/200.png +0 -0
- package/src/assets//345/215/241/350/241/250/346/212/204/350/241/250/345/276/205/345/212/236.png +0 -0
- package/src/assets//345/233/236/350/256/277.png +0 -0
- package/src/assets//345/234/260/345/235/200/345/217/230/346/233/264.png +0 -0
- package/src/assets//345/256/211/346/243/200/347/256/241/347/220/206/346/234/252/351/200/211/344/270/255.png +0 -0
- package/src/assets//345/256/211/346/243/200/347/256/241/347/220/206/351/200/211/344/270/255.png +0 -0
- package/src/assets//346/212/204/350/241/250/351/207/215/344/274/240.png +0 -0
- package/src/assets//346/226/275/345/260/201.png +0 -0
- package/src/assets//346/226/275/345/260/201/347/256/241/347/220/206.png +0 -0
- package/src/assets//346/260/221/347/224/250/345/256/211/346/243/200.png +0 -0
- package/src/assets//347/205/247/347/211/207/345/210/240/351/231/244.png +0 -0
- package/src/assets//347/224/250/346/210/267/350/256/260/345/275/225.png +0 -0
- package/src/assets//347/273/264/344/277/256/345/234/250/347/272/277/346/237/245/350/257/242.png +0 -0
- package/src/assets//347/273/264/344/277/256/347/231/273/350/256/260.png +0 -0
- package/src/assets//351/200/232/346/260/224/346/211/223/345/216/213/347/225/231/345/272/225.png +0 -0
- package/src/assets//351/230/200/346/216/247/347/256/241/347/220/206.png +0 -0
- package/src/assets//351/235/236/346/260/221/347/224/250/345/256/211/346/243/200.png +0 -0
- package/src/assets//351/246/226/351/241/265/345/244/247/345/233/276.png +0 -0
- package/src/components/AttendManage.vue +534 -415
- package/src/components/LoginApp.vue +13 -7
- package/src/components/ModifyPassWord.vue +2 -2
- package/src/components/OnlineManage.vue +256 -255
- package/src/components/PhoneImageInfo.vue +102 -0
- package/src/components/PhoneSafeInfo.vue +101 -101
- package/src/components/RightTree.vue +217 -217
- package/src/components/SystemSetUp.vue +332 -326
- package/src/components/ToolsPage.vue +182 -180
- package/src/filiale/yulinyuchuan/AlreadyService.vue +194 -0
- package/src/filiale/yulinyuchuan/AttendManage.vue +537 -0
- package/src/filiale/yulinyuchuan/LoginApp.vue +736 -0
- package/src/filiale/yulinyuchuan/OnlineManage.vue +256 -0
- package/src/filiale/yulinyuchuan/SystemSetUp.vue +332 -0
- package/src/filiale/yulinyuchuan/UploadManage.vue +195 -0
- package/src/filiale/yulinyuchuan/systemphonegrid.js +9 -0
- package/src/stores/AppData.js +18 -16
- package/src/systemphonegrid.js +11 -40
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
<template >
|
|
2
|
+
<div class="panel panel-default auto repair-info-content">
|
|
3
|
+
<div class="panel-body">
|
|
4
|
+
<div class="panel panel-default well" v-for="row in model">
|
|
5
|
+
<div class="bg-info">
|
|
6
|
+
<div class="row form-group">
|
|
7
|
+
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
8
|
+
<div class="row">
|
|
9
|
+
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
10
|
+
上传时间: {{row.f_upload_date}}
|
|
11
|
+
</div>
|
|
12
|
+
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
13
|
+
图片: <img-self style="width: 100px;height: 100px;" width="140" height="140" :src="row.f_downloadpath.substring(3)"></img-self>
|
|
14
|
+
</div>
|
|
15
|
+
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
16
|
+
图片类型: {{row.fusetype}}
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
</template>
|
|
26
|
+
|
|
27
|
+
<script>
|
|
28
|
+
import {HttpResetClass} from 'vue-client'
|
|
29
|
+
|
|
30
|
+
export default {
|
|
31
|
+
title: '查询用户',
|
|
32
|
+
data() {
|
|
33
|
+
return {
|
|
34
|
+
model: [],
|
|
35
|
+
show: false,
|
|
36
|
+
row: Object
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
props: {
|
|
40
|
+
user: {
|
|
41
|
+
type: Object
|
|
42
|
+
},
|
|
43
|
+
f_userinfo_id: ''
|
|
44
|
+
},
|
|
45
|
+
methods: {
|
|
46
|
+
getmodel() {
|
|
47
|
+
let http = new HttpResetClass()
|
|
48
|
+
http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {
|
|
49
|
+
data: {
|
|
50
|
+
items: '*',
|
|
51
|
+
tablename: 't_files',
|
|
52
|
+
condition: `f_blobid = '${this.f_userinfo_id}' and fusetype not in ('安检照片','维修照片') and f_filename like '%.jpg'`,
|
|
53
|
+
orderitem: 'id desc'
|
|
54
|
+
}
|
|
55
|
+
}).then((res) => {
|
|
56
|
+
debugger
|
|
57
|
+
this.model = res.data
|
|
58
|
+
if (res.data.length == 0){
|
|
59
|
+
this.$showMessage('无记录')
|
|
60
|
+
}
|
|
61
|
+
})
|
|
62
|
+
},
|
|
63
|
+
back() {
|
|
64
|
+
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
watch: {
|
|
68
|
+
'user'(val) {
|
|
69
|
+
if (this.user) {
|
|
70
|
+
if (!(this.user.isNuN)) {
|
|
71
|
+
this.model = []
|
|
72
|
+
this.getmodel()
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
'f_userinfo_id'() {
|
|
77
|
+
if (this.f_userinfo_id) {
|
|
78
|
+
this.model = []
|
|
79
|
+
this.getmodel()
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
ready() {
|
|
84
|
+
this.getmodel()
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
</script>
|
|
88
|
+
<style>
|
|
89
|
+
.app-botton {
|
|
90
|
+
position: fixed;
|
|
91
|
+
background: #87b2dd;
|
|
92
|
+
color: #FFF;
|
|
93
|
+
padding: 8px;
|
|
94
|
+
text-align: center;
|
|
95
|
+
font-size: 1.2em;
|
|
96
|
+
z-index: 10;
|
|
97
|
+
opacity: 0.5;
|
|
98
|
+
bottom: 50px;
|
|
99
|
+
margin-top: -10px;
|
|
100
|
+
height: 40px;
|
|
101
|
+
}
|
|
102
|
+
</style>
|
|
@@ -1,101 +1,101 @@
|
|
|
1
|
-
<template >
|
|
2
|
-
<div class="panel panel-default auto repair-info-content">
|
|
3
|
-
<div class="panel-body">
|
|
4
|
-
<div class="panel panel-default well" v-for="row in model">
|
|
5
|
-
<div class="bg-info">
|
|
6
|
-
<div class="row form-group">
|
|
7
|
-
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
8
|
-
<div class="row">
|
|
9
|
-
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
10
|
-
电话: {{row.f_user_phone}}
|
|
11
|
-
</div>
|
|
12
|
-
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
13
|
-
安检状态: {{row.f_entry_status}}
|
|
14
|
-
</div>
|
|
15
|
-
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
16
|
-
安检时间: {{row.f_offsite_time}}
|
|
17
|
-
</div>
|
|
18
|
-
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
19
|
-
安检员: {{row.f_checker_name}}
|
|
20
|
-
</div>
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
23
|
-
</div>
|
|
24
|
-
</div>
|
|
25
|
-
</div>
|
|
26
|
-
</div>
|
|
27
|
-
</div>
|
|
28
|
-
</template>
|
|
29
|
-
|
|
30
|
-
<script>
|
|
31
|
-
import {HttpResetClass} from 'vue-client'
|
|
32
|
-
|
|
33
|
-
export default {
|
|
34
|
-
title: '查询用户',
|
|
35
|
-
data() {
|
|
36
|
-
return {
|
|
37
|
-
model: [],
|
|
38
|
-
show: false,
|
|
39
|
-
row: Object
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
props: {
|
|
43
|
-
user: {
|
|
44
|
-
type: Object
|
|
45
|
-
},
|
|
46
|
-
f_userinfo_id: ''
|
|
47
|
-
},
|
|
48
|
-
methods: {
|
|
49
|
-
getmodel() {
|
|
50
|
-
let http = new HttpResetClass()
|
|
51
|
-
http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {
|
|
52
|
-
data: {
|
|
53
|
-
items: '*',
|
|
54
|
-
tablename: 't_check_paper',
|
|
55
|
-
condition: `f_userinfoid = '${this.f_userinfo_id}'`,
|
|
56
|
-
orderitem: 'f_offsite_time desc'
|
|
57
|
-
}
|
|
58
|
-
}).then((res) => {
|
|
59
|
-
this.model = res.data
|
|
60
|
-
})
|
|
61
|
-
},
|
|
62
|
-
back() {
|
|
63
|
-
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
watch: {
|
|
67
|
-
'user'(val) {
|
|
68
|
-
if (this.user) {
|
|
69
|
-
if (!(this.user.isNuN)) {
|
|
70
|
-
this.model = []
|
|
71
|
-
this.getmodel()
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
|
-
'f_userinfo_id'() {
|
|
76
|
-
if (this.f_userinfo_id) {
|
|
77
|
-
this.model = []
|
|
78
|
-
this.getmodel()
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
|
-
ready() {
|
|
83
|
-
this.getmodel()
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
</script>
|
|
87
|
-
<style>
|
|
88
|
-
.app-botton {
|
|
89
|
-
position: fixed;
|
|
90
|
-
background: #87b2dd;
|
|
91
|
-
color: #FFF;
|
|
92
|
-
padding: 8px;
|
|
93
|
-
text-align: center;
|
|
94
|
-
font-size: 1.2em;
|
|
95
|
-
z-index: 10;
|
|
96
|
-
opacity: 0.5;
|
|
97
|
-
bottom: 50px;
|
|
98
|
-
margin-top: -10px;
|
|
99
|
-
height: 40px;
|
|
100
|
-
}
|
|
101
|
-
</style>
|
|
1
|
+
<template >
|
|
2
|
+
<div class="panel panel-default auto repair-info-content">
|
|
3
|
+
<div class="panel-body">
|
|
4
|
+
<div class="panel panel-default well" v-for="row in model">
|
|
5
|
+
<div class="bg-info">
|
|
6
|
+
<div class="row form-group">
|
|
7
|
+
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
8
|
+
<div class="row">
|
|
9
|
+
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
10
|
+
电话: {{row.f_user_phone}}
|
|
11
|
+
</div>
|
|
12
|
+
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
13
|
+
安检状态: {{row.f_entry_status}}
|
|
14
|
+
</div>
|
|
15
|
+
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
16
|
+
安检时间: {{row.f_offsite_time}}
|
|
17
|
+
</div>
|
|
18
|
+
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
19
|
+
安检员: {{row.f_checker_name}}
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
</template>
|
|
29
|
+
|
|
30
|
+
<script>
|
|
31
|
+
import {HttpResetClass} from 'vue-client'
|
|
32
|
+
|
|
33
|
+
export default {
|
|
34
|
+
title: '查询用户',
|
|
35
|
+
data() {
|
|
36
|
+
return {
|
|
37
|
+
model: [],
|
|
38
|
+
show: false,
|
|
39
|
+
row: Object
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
props: {
|
|
43
|
+
user: {
|
|
44
|
+
type: Object
|
|
45
|
+
},
|
|
46
|
+
f_userinfo_id: ''
|
|
47
|
+
},
|
|
48
|
+
methods: {
|
|
49
|
+
getmodel() {
|
|
50
|
+
let http = new HttpResetClass()
|
|
51
|
+
http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {
|
|
52
|
+
data: {
|
|
53
|
+
items: '*',
|
|
54
|
+
tablename: 't_check_paper',
|
|
55
|
+
condition: `f_userinfoid = '${this.f_userinfo_id}'`,
|
|
56
|
+
orderitem: 'f_offsite_time desc'
|
|
57
|
+
}
|
|
58
|
+
}).then((res) => {
|
|
59
|
+
this.model = res.data
|
|
60
|
+
})
|
|
61
|
+
},
|
|
62
|
+
back() {
|
|
63
|
+
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
watch: {
|
|
67
|
+
'user'(val) {
|
|
68
|
+
if (this.user) {
|
|
69
|
+
if (!(this.user.isNuN)) {
|
|
70
|
+
this.model = []
|
|
71
|
+
this.getmodel()
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
'f_userinfo_id'() {
|
|
76
|
+
if (this.f_userinfo_id) {
|
|
77
|
+
this.model = []
|
|
78
|
+
this.getmodel()
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
ready() {
|
|
83
|
+
this.getmodel()
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
</script>
|
|
87
|
+
<style>
|
|
88
|
+
.app-botton {
|
|
89
|
+
position: fixed;
|
|
90
|
+
background: #87b2dd;
|
|
91
|
+
color: #FFF;
|
|
92
|
+
padding: 8px;
|
|
93
|
+
text-align: center;
|
|
94
|
+
font-size: 1.2em;
|
|
95
|
+
z-index: 10;
|
|
96
|
+
opacity: 0.5;
|
|
97
|
+
bottom: 50px;
|
|
98
|
+
margin-top: -10px;
|
|
99
|
+
height: 40px;
|
|
100
|
+
}
|
|
101
|
+
</style>
|