system-phone 1.2.91 → 1.2.94
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//347/202/271/347/201/253/345/267/262/345/212/236.png +0 -0
- package/src/assets//347/202/271/347/201/253/345/276/205/345/212/236.png +0 -0
- package/src/components/PhoneSellInfo.vue +123 -125
- package/src/components/SystemSetUp.vue +1 -1
- package/yarn.lock +0 -6399
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -1,125 +1,123 @@
|
|
|
1
|
-
<template >
|
|
2
|
-
<div class="panel panel-default auto repair-info-content">
|
|
3
|
-
<div class="panel-body" v-show="show">
|
|
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_pregas}}
|
|
11
|
-
</div>
|
|
12
|
-
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
13
|
-
购气金额: {{row.f_preamount}}
|
|
14
|
-
</div>
|
|
15
|
-
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
16
|
-
收费状态: {{row.f_state}}
|
|
17
|
-
</div>
|
|
18
|
-
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
19
|
-
收款: {{row.f_collection}}
|
|
20
|
-
</div>
|
|
21
|
-
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
22
|
-
缴费方式: {{row.f_payment}}
|
|
23
|
-
</div>
|
|
24
|
-
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
25
|
-
营业网点: {{row.f_depname}}
|
|
26
|
-
</div>
|
|
27
|
-
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
28
|
-
操作员: {{row.f_operator}}
|
|
29
|
-
</div>
|
|
30
|
-
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
31
|
-
购气时间: {{row.f_operate_date}}
|
|
32
|
-
</div>
|
|
33
|
-
|
|
34
|
-
</div>
|
|
35
|
-
</div>
|
|
36
|
-
</div>
|
|
37
|
-
</div>
|
|
38
|
-
</div>
|
|
39
|
-
<p v-show="model.length == 0 ">此用户暂无购气记录</p>
|
|
40
|
-
</div>
|
|
41
|
-
</div>
|
|
42
|
-
</template>
|
|
43
|
-
|
|
44
|
-
<script>
|
|
45
|
-
import { PagedList } from 'vue-client'
|
|
46
|
-
import co from 'co'
|
|
47
|
-
export default {
|
|
48
|
-
title: '查询用户',
|
|
49
|
-
data () {
|
|
50
|
-
return {
|
|
51
|
-
model: [],
|
|
52
|
-
show: false,
|
|
53
|
-
row: Object
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
|
-
props: {
|
|
57
|
-
user: {
|
|
58
|
-
type: Object
|
|
59
|
-
},
|
|
60
|
-
f_userinfo_id:''
|
|
61
|
-
},
|
|
62
|
-
methods: {
|
|
63
|
-
getmodel () {
|
|
64
|
-
let userinfoid
|
|
65
|
-
if(this.f_userinfo_id){
|
|
66
|
-
userinfoid = this.f_userinfo_id
|
|
67
|
-
}else{
|
|
68
|
-
userinfoid = this.user.f_userinfo_id
|
|
69
|
-
console.log(this.user.f_userinfo_id)
|
|
70
|
-
}
|
|
71
|
-
console.log(userinfoid)
|
|
72
|
-
this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {data: {items: '*', tablename: 't_sellinggas', orderitem: 'f_operate_date desc', condition:`f_userinfo_id = '${userinfoid}'`}},{resolveMsg : null,rejectMsg :null}).then((row) => {
|
|
73
|
-
this.model = row.data
|
|
74
|
-
this.show=true
|
|
75
|
-
})
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
}
|
|
125
|
-
</style>
|
|
1
|
+
<template >
|
|
2
|
+
<div class="panel panel-default auto repair-info-content">
|
|
3
|
+
<div class="panel-body" v-show="show">
|
|
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_pregas}}
|
|
11
|
+
</div>
|
|
12
|
+
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
13
|
+
购气金额: {{row.f_preamount}}
|
|
14
|
+
</div>
|
|
15
|
+
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
16
|
+
收费状态: {{row.f_state}}
|
|
17
|
+
</div>
|
|
18
|
+
<div class="col-xs-6 col-sm-6 col-md-6">
|
|
19
|
+
收款: {{row.f_collection}}
|
|
20
|
+
</div>
|
|
21
|
+
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
22
|
+
缴费方式: {{row.f_payment}}
|
|
23
|
+
</div>
|
|
24
|
+
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
25
|
+
营业网点: {{row.f_depname}}
|
|
26
|
+
</div>
|
|
27
|
+
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
28
|
+
操作员: {{row.f_operator}}
|
|
29
|
+
</div>
|
|
30
|
+
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
31
|
+
购气时间: {{row.f_operate_date}}
|
|
32
|
+
</div>
|
|
33
|
+
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
<p v-show="model.length == 0 ">此用户暂无购气记录</p>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
</template>
|
|
43
|
+
|
|
44
|
+
<script>
|
|
45
|
+
import { PagedList } from 'vue-client'
|
|
46
|
+
import co from 'co'
|
|
47
|
+
export default {
|
|
48
|
+
title: '查询用户',
|
|
49
|
+
data () {
|
|
50
|
+
return {
|
|
51
|
+
model: [],
|
|
52
|
+
show: false,
|
|
53
|
+
row: Object
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
props: {
|
|
57
|
+
user: {
|
|
58
|
+
type: Object
|
|
59
|
+
},
|
|
60
|
+
f_userinfo_id:''
|
|
61
|
+
},
|
|
62
|
+
methods: {
|
|
63
|
+
getmodel () {
|
|
64
|
+
let userinfoid
|
|
65
|
+
if(this.f_userinfo_id){
|
|
66
|
+
userinfoid = this.f_userinfo_id
|
|
67
|
+
}else{
|
|
68
|
+
userinfoid = this.user.f_userinfo_id
|
|
69
|
+
console.log(this.user.f_userinfo_id)
|
|
70
|
+
}
|
|
71
|
+
console.log(userinfoid)
|
|
72
|
+
this.$resetpost(`${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {data: {items: '*', tablename: 't_sellinggas', orderitem: 'f_operate_date desc', condition:`f_userinfo_id = '${userinfoid}'`}},{resolveMsg : null,rejectMsg :null}).then((row) => {
|
|
73
|
+
this.model = row.data
|
|
74
|
+
this.show=true
|
|
75
|
+
})
|
|
76
|
+
},
|
|
77
|
+
back(){
|
|
78
|
+
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
watch: {
|
|
82
|
+
'user' (val) {
|
|
83
|
+
// this.model.search(`card_id = ${this.user.card_id}`)
|
|
84
|
+
if(this.user){
|
|
85
|
+
if (!(this.user.isNuN)) {
|
|
86
|
+
this.model= []
|
|
87
|
+
this.getmodel()
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
'f_userinfo_id'(){
|
|
92
|
+
if(this.f_userinfo_id){
|
|
93
|
+
this.model= []
|
|
94
|
+
this.getmodel()
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
ready () {
|
|
99
|
+
if (this.user && this.user.f_userinfo_id) {
|
|
100
|
+
// this.model.search(`card_id = ${this.user.card_id}`)
|
|
101
|
+
this.getmodel()
|
|
102
|
+
}
|
|
103
|
+
if(this.f_userinfo_id){
|
|
104
|
+
this.getmodel()
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
</script>
|
|
109
|
+
<style>
|
|
110
|
+
.app-botton {
|
|
111
|
+
position:fixed;
|
|
112
|
+
background: #87b2dd;
|
|
113
|
+
color: #FFF;
|
|
114
|
+
padding: 8px;
|
|
115
|
+
text-align: center;
|
|
116
|
+
font-size: 1.2em;
|
|
117
|
+
z-index: 10;
|
|
118
|
+
opacity:0.5;
|
|
119
|
+
bottom: 50px;
|
|
120
|
+
margin-top: -10px;
|
|
121
|
+
height: 40px;
|
|
122
|
+
}
|
|
123
|
+
</style>
|
|
@@ -124,7 +124,7 @@ export default {
|
|
|
124
124
|
} else if(name == '导出数据'){
|
|
125
125
|
this.outdata()
|
|
126
126
|
}else if(name == '退出系统'){
|
|
127
|
-
HostApp.
|
|
127
|
+
HostApp.back_home()
|
|
128
128
|
}else if(name == '退出登录'){
|
|
129
129
|
this.$showMessage('即将返回登陆界面!', ['confirm', 'cancel']).then((res) => {
|
|
130
130
|
if (res === 'confirm') {
|