telephone-clients 3.0.103-79 → 3.0.103-80
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/App.vue +54 -54
- package/src/components/pc/WorkHistory.vue +560 -560
- package/src/components/temp/RepairList.vue +125 -125
- package/src/filiale/kelai/android/AppTakePic.vue +143 -143
- package/src/filiale/kelai/android/PhoneVentilationLeave.vue +176 -176
- package/src/filiale/kelai/telephoneAndroid.js +19 -19
- package/src/filiale/wenxi/android/RepairInfo.vue +254 -254
- package/src/filiale/wenxi/android/ZHihuanFirst.vue +502 -502
- package/src/filiale/wenxi/pc/DistributeWork.vue +163 -163
- package/src/filiale/wenxi/pc/GasWork.vue +753 -753
- package/src/filiale/wenxi/pc/TelFindUser.vue +306 -306
- package/src/filiale/wenxi/telephone.js +16 -16
- package/src/filiale/wenxi/telephoneAndroid.js +17 -17
- package/src/filiale/zhongsheng/android/RepairUserInfo.vue +559 -559
- package/src/main.js +1 -1
|
@@ -1,176 +1,176 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div style="height: auto;width: 100%">
|
|
3
|
-
<criteria-paged :model="model" v-ref:paged>
|
|
4
|
-
<criteria partial='criteria' @condition-changed='search' v-ref:cri>
|
|
5
|
-
<div partial>
|
|
6
|
-
<form>
|
|
7
|
-
<div class="row app-row">
|
|
8
|
-
<div class="col-xs-4">
|
|
9
|
-
<label class="font text-left">用户编号:</label>
|
|
10
|
-
</div>
|
|
11
|
-
<div class="col-xs-8" >
|
|
12
|
-
<input class="search_input input-font" v-model="model.f_userinfo_code" condition="ti.f_userinfo_code like '%{}%'" />
|
|
13
|
-
</div>
|
|
14
|
-
</div>
|
|
15
|
-
<div class="row app-row">
|
|
16
|
-
<div class="col-xs-4">
|
|
17
|
-
<label class="font text-left">用户姓名:</label>
|
|
18
|
-
</div>
|
|
19
|
-
<div class="col-xs-8" >
|
|
20
|
-
<input class="search_input input-font" v-model="model.f_user_name" condition="ti.f_user_name like '%{}%'" />
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
23
|
-
<div class="row app-row">
|
|
24
|
-
<div class="col-xs-4">
|
|
25
|
-
<label class="font text-left">地址:</label>
|
|
26
|
-
</div>
|
|
27
|
-
<div class="col-xs-8" >
|
|
28
|
-
<input class="search_input input-font" v-model="model.f_address" condition="ta.f_address like '%{}%'" />
|
|
29
|
-
</div>
|
|
30
|
-
</div>
|
|
31
|
-
<div class="row text-center" style="margin-top: 20px;text-align: center">
|
|
32
|
-
<button type="button" class="btn btn-lg btn-font" style="width: 25%;margin-right: 3%; background-color: #499edf;color:#FFFFFF;border-radius: 10px ;" @click="search()">查询</button>
|
|
33
|
-
</div>
|
|
34
|
-
</form>
|
|
35
|
-
</div>
|
|
36
|
-
</criteria>
|
|
37
|
-
<list :model="model" partial='list'>
|
|
38
|
-
<div partial>
|
|
39
|
-
<div class="auto app-text" style="margin-top: 5px;">
|
|
40
|
-
<div class="panel" style="padding: 10px 10px 5px 10px;">
|
|
41
|
-
<div class="panel-body panel-self">
|
|
42
|
-
<div class="col-xs-12">
|
|
43
|
-
<p class="panel-title col-xs-5 text-left font" style="float: left"><b>用户编号:</b></p>
|
|
44
|
-
<p class="panel-title col-xs-7 text-left input-font" >{{ row.f_userinfo_code }}</p>
|
|
45
|
-
</div>
|
|
46
|
-
<div class="col-xs-12">
|
|
47
|
-
<p class="panel-title col-xs-5 text-left font" style="float: left"><b>用户名称:</b></p>
|
|
48
|
-
<p class="panel-title col-xs-7 text-left input-font" >{{ row.f_user_name }}</p>
|
|
49
|
-
</div>
|
|
50
|
-
<div class="col-xs-12">
|
|
51
|
-
<p class="panel-title col-xs-5 text-left font"><b>用户电话:</b></p>
|
|
52
|
-
<p class="panel-title col-xs-7 text-left input-font" >{{ row.f_user_phone }}
|
|
53
|
-
</p>
|
|
54
|
-
</div>
|
|
55
|
-
<div class="col-xs-12">
|
|
56
|
-
<p class="panel-title col-xs-5 text-left font"><b>用户地址:</b></p>
|
|
57
|
-
<p class="panel-title col-xs-7 text-left input-font" >{{ row.f_address }}</p>
|
|
58
|
-
</div>
|
|
59
|
-
<div class="col-xs-12" style="display: flex; justify-content: flex-end;">
|
|
60
|
-
<button class="btn btn-info" @click="$parent.$parent.$parent.click(row)">拍照</button>
|
|
61
|
-
</div>
|
|
62
|
-
</div>
|
|
63
|
-
</div>
|
|
64
|
-
</div>
|
|
65
|
-
</div>
|
|
66
|
-
</list>
|
|
67
|
-
</criteria-paged>
|
|
68
|
-
<modal v-if="showModal" :show.sync="showModal" v-ref:modal :backdrop="false" >
|
|
69
|
-
<div slot="modal-body" class="modal-body">
|
|
70
|
-
<panel header="拍照" :is-open="true" type="primary">
|
|
71
|
-
<tel-take-pic
|
|
72
|
-
:blobid="selectdata.f_blobid"
|
|
73
|
-
:defname="selectdata.defname"
|
|
74
|
-
:isdelete="true"
|
|
75
|
-
:istakepic="true"
|
|
76
|
-
:type="selectdata.type"
|
|
77
|
-
:istype="true">
|
|
78
|
-
</tel-take-pic>
|
|
79
|
-
</panel>
|
|
80
|
-
</div>
|
|
81
|
-
<div slot="modal-footer" class="modal-footer">
|
|
82
|
-
<button type="button" class="btn btn-default" @click="infoaddsure()">确定</button>
|
|
83
|
-
</div>
|
|
84
|
-
</modal>
|
|
85
|
-
</div>
|
|
86
|
-
</template>
|
|
87
|
-
<script>
|
|
88
|
-
import Vue from 'vue'
|
|
89
|
-
import { PagedList,HttpResetClass } from 'vue-client'
|
|
90
|
-
export default {
|
|
91
|
-
title: '通气打压留底',
|
|
92
|
-
data() {
|
|
93
|
-
return {
|
|
94
|
-
selectdata:{
|
|
95
|
-
f_blobid:'',
|
|
96
|
-
type:'档案信息',
|
|
97
|
-
defname:'通气打压留底拍照'
|
|
98
|
-
},
|
|
99
|
-
showModal: false,
|
|
100
|
-
model_f: false,
|
|
101
|
-
ispos: true,
|
|
102
|
-
cardinfo: {},
|
|
103
|
-
userinfo: {},
|
|
104
|
-
operation: '',
|
|
105
|
-
model: new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/telqueryuserinfo`,5,{}),
|
|
106
|
-
f_operator: Vue.user.name,
|
|
107
|
-
f_orgid : Vue.user.orgid
|
|
108
|
-
}
|
|
109
|
-
},
|
|
110
|
-
ready(){
|
|
111
|
-
this.$refs.paged.$refs.cri.search()
|
|
112
|
-
},
|
|
113
|
-
|
|
114
|
-
methods: {
|
|
115
|
-
infoaddsure(){
|
|
116
|
-
this.showModal=false
|
|
117
|
-
this.$refs.paged.$refs.cri.search()
|
|
118
|
-
},
|
|
119
|
-
click(row){
|
|
120
|
-
this.showModal=true
|
|
121
|
-
this.selectdata.f_blobid=row.f_userinfo_id
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
</script>
|
|
126
|
-
<style scoped>
|
|
127
|
-
.bg {
|
|
128
|
-
background-color: blue;
|
|
129
|
-
height: 1px;
|
|
130
|
-
border: 0;
|
|
131
|
-
}
|
|
132
|
-
.app-row {
|
|
133
|
-
background-color: white;
|
|
134
|
-
padding: 10px 10px 0 10px;
|
|
135
|
-
border-bottom: 1px solid rgba(235, 235, 235, 0.5);
|
|
136
|
-
}
|
|
137
|
-
.search_input {
|
|
138
|
-
border: 0;
|
|
139
|
-
outline: none;
|
|
140
|
-
}
|
|
141
|
-
.font{
|
|
142
|
-
font: 15px PingFang-SC-Medium;
|
|
143
|
-
color: #666666;
|
|
144
|
-
}
|
|
145
|
-
.input-font{
|
|
146
|
-
font: 15px PingFang-SC-Medium;
|
|
147
|
-
color: #333333;
|
|
148
|
-
}
|
|
149
|
-
.btn-font{
|
|
150
|
-
font:600 16px PingFang-SC-Bold;
|
|
151
|
-
color: #499EDF;
|
|
152
|
-
}
|
|
153
|
-
.btn-color{
|
|
154
|
-
background-color: #FFFFFF;
|
|
155
|
-
border-radius: 10px ;
|
|
156
|
-
border: 1px solid #499EDF;
|
|
157
|
-
}
|
|
158
|
-
.app-text {
|
|
159
|
-
font-size: 12px;
|
|
160
|
-
}
|
|
161
|
-
.panel-self{
|
|
162
|
-
border-radius: 10px;
|
|
163
|
-
border:1px solid #499EDF;
|
|
164
|
-
background-color: #F8F8F8;
|
|
165
|
-
}
|
|
166
|
-
.btn_cz {
|
|
167
|
-
background-color: #499edf;
|
|
168
|
-
color:#FFFFFF;
|
|
169
|
-
width: 55px;
|
|
170
|
-
margin-right: 2%;
|
|
171
|
-
margin-top: 10px;
|
|
172
|
-
height: 38px;
|
|
173
|
-
border-radius: 9px;
|
|
174
|
-
font: 600 17px PingFang-SC-Bold;
|
|
175
|
-
}
|
|
176
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div style="height: auto;width: 100%">
|
|
3
|
+
<criteria-paged :model="model" v-ref:paged>
|
|
4
|
+
<criteria partial='criteria' @condition-changed='search' v-ref:cri>
|
|
5
|
+
<div partial>
|
|
6
|
+
<form>
|
|
7
|
+
<div class="row app-row">
|
|
8
|
+
<div class="col-xs-4">
|
|
9
|
+
<label class="font text-left">用户编号:</label>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="col-xs-8" >
|
|
12
|
+
<input class="search_input input-font" v-model="model.f_userinfo_code" condition="ti.f_userinfo_code like '%{}%'" />
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
<div class="row app-row">
|
|
16
|
+
<div class="col-xs-4">
|
|
17
|
+
<label class="font text-left">用户姓名:</label>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="col-xs-8" >
|
|
20
|
+
<input class="search_input input-font" v-model="model.f_user_name" condition="ti.f_user_name like '%{}%'" />
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
<div class="row app-row">
|
|
24
|
+
<div class="col-xs-4">
|
|
25
|
+
<label class="font text-left">地址:</label>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="col-xs-8" >
|
|
28
|
+
<input class="search_input input-font" v-model="model.f_address" condition="ta.f_address like '%{}%'" />
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
<div class="row text-center" style="margin-top: 20px;text-align: center">
|
|
32
|
+
<button type="button" class="btn btn-lg btn-font" style="width: 25%;margin-right: 3%; background-color: #499edf;color:#FFFFFF;border-radius: 10px ;" @click="search()">查询</button>
|
|
33
|
+
</div>
|
|
34
|
+
</form>
|
|
35
|
+
</div>
|
|
36
|
+
</criteria>
|
|
37
|
+
<list :model="model" partial='list'>
|
|
38
|
+
<div partial>
|
|
39
|
+
<div class="auto app-text" style="margin-top: 5px;">
|
|
40
|
+
<div class="panel" style="padding: 10px 10px 5px 10px;">
|
|
41
|
+
<div class="panel-body panel-self">
|
|
42
|
+
<div class="col-xs-12">
|
|
43
|
+
<p class="panel-title col-xs-5 text-left font" style="float: left"><b>用户编号:</b></p>
|
|
44
|
+
<p class="panel-title col-xs-7 text-left input-font" >{{ row.f_userinfo_code }}</p>
|
|
45
|
+
</div>
|
|
46
|
+
<div class="col-xs-12">
|
|
47
|
+
<p class="panel-title col-xs-5 text-left font" style="float: left"><b>用户名称:</b></p>
|
|
48
|
+
<p class="panel-title col-xs-7 text-left input-font" >{{ row.f_user_name }}</p>
|
|
49
|
+
</div>
|
|
50
|
+
<div class="col-xs-12">
|
|
51
|
+
<p class="panel-title col-xs-5 text-left font"><b>用户电话:</b></p>
|
|
52
|
+
<p class="panel-title col-xs-7 text-left input-font" >{{ row.f_user_phone }}
|
|
53
|
+
</p>
|
|
54
|
+
</div>
|
|
55
|
+
<div class="col-xs-12">
|
|
56
|
+
<p class="panel-title col-xs-5 text-left font"><b>用户地址:</b></p>
|
|
57
|
+
<p class="panel-title col-xs-7 text-left input-font" >{{ row.f_address }}</p>
|
|
58
|
+
</div>
|
|
59
|
+
<div class="col-xs-12" style="display: flex; justify-content: flex-end;">
|
|
60
|
+
<button class="btn btn-info" @click="$parent.$parent.$parent.click(row)">拍照</button>
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
65
|
+
</div>
|
|
66
|
+
</list>
|
|
67
|
+
</criteria-paged>
|
|
68
|
+
<modal v-if="showModal" :show.sync="showModal" v-ref:modal :backdrop="false" >
|
|
69
|
+
<div slot="modal-body" class="modal-body">
|
|
70
|
+
<panel header="拍照" :is-open="true" type="primary">
|
|
71
|
+
<tel-take-pic
|
|
72
|
+
:blobid="selectdata.f_blobid"
|
|
73
|
+
:defname="selectdata.defname"
|
|
74
|
+
:isdelete="true"
|
|
75
|
+
:istakepic="true"
|
|
76
|
+
:type="selectdata.type"
|
|
77
|
+
:istype="true">
|
|
78
|
+
</tel-take-pic>
|
|
79
|
+
</panel>
|
|
80
|
+
</div>
|
|
81
|
+
<div slot="modal-footer" class="modal-footer">
|
|
82
|
+
<button type="button" class="btn btn-default" @click="infoaddsure()">确定</button>
|
|
83
|
+
</div>
|
|
84
|
+
</modal>
|
|
85
|
+
</div>
|
|
86
|
+
</template>
|
|
87
|
+
<script>
|
|
88
|
+
import Vue from 'vue'
|
|
89
|
+
import { PagedList,HttpResetClass } from 'vue-client'
|
|
90
|
+
export default {
|
|
91
|
+
title: '通气打压留底',
|
|
92
|
+
data() {
|
|
93
|
+
return {
|
|
94
|
+
selectdata:{
|
|
95
|
+
f_blobid:'',
|
|
96
|
+
type:'档案信息',
|
|
97
|
+
defname:'通气打压留底拍照'
|
|
98
|
+
},
|
|
99
|
+
showModal: false,
|
|
100
|
+
model_f: false,
|
|
101
|
+
ispos: true,
|
|
102
|
+
cardinfo: {},
|
|
103
|
+
userinfo: {},
|
|
104
|
+
operation: '',
|
|
105
|
+
model: new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/telqueryuserinfo`,5,{}),
|
|
106
|
+
f_operator: Vue.user.name,
|
|
107
|
+
f_orgid : Vue.user.orgid
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
ready(){
|
|
111
|
+
this.$refs.paged.$refs.cri.search()
|
|
112
|
+
},
|
|
113
|
+
|
|
114
|
+
methods: {
|
|
115
|
+
infoaddsure(){
|
|
116
|
+
this.showModal=false
|
|
117
|
+
this.$refs.paged.$refs.cri.search()
|
|
118
|
+
},
|
|
119
|
+
click(row){
|
|
120
|
+
this.showModal=true
|
|
121
|
+
this.selectdata.f_blobid=row.f_userinfo_id
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
</script>
|
|
126
|
+
<style scoped>
|
|
127
|
+
.bg {
|
|
128
|
+
background-color: blue;
|
|
129
|
+
height: 1px;
|
|
130
|
+
border: 0;
|
|
131
|
+
}
|
|
132
|
+
.app-row {
|
|
133
|
+
background-color: white;
|
|
134
|
+
padding: 10px 10px 0 10px;
|
|
135
|
+
border-bottom: 1px solid rgba(235, 235, 235, 0.5);
|
|
136
|
+
}
|
|
137
|
+
.search_input {
|
|
138
|
+
border: 0;
|
|
139
|
+
outline: none;
|
|
140
|
+
}
|
|
141
|
+
.font{
|
|
142
|
+
font: 15px PingFang-SC-Medium;
|
|
143
|
+
color: #666666;
|
|
144
|
+
}
|
|
145
|
+
.input-font{
|
|
146
|
+
font: 15px PingFang-SC-Medium;
|
|
147
|
+
color: #333333;
|
|
148
|
+
}
|
|
149
|
+
.btn-font{
|
|
150
|
+
font:600 16px PingFang-SC-Bold;
|
|
151
|
+
color: #499EDF;
|
|
152
|
+
}
|
|
153
|
+
.btn-color{
|
|
154
|
+
background-color: #FFFFFF;
|
|
155
|
+
border-radius: 10px ;
|
|
156
|
+
border: 1px solid #499EDF;
|
|
157
|
+
}
|
|
158
|
+
.app-text {
|
|
159
|
+
font-size: 12px;
|
|
160
|
+
}
|
|
161
|
+
.panel-self{
|
|
162
|
+
border-radius: 10px;
|
|
163
|
+
border:1px solid #499EDF;
|
|
164
|
+
background-color: #F8F8F8;
|
|
165
|
+
}
|
|
166
|
+
.btn_cz {
|
|
167
|
+
background-color: #499edf;
|
|
168
|
+
color:#FFFFFF;
|
|
169
|
+
width: 55px;
|
|
170
|
+
margin-right: 2%;
|
|
171
|
+
margin-top: 10px;
|
|
172
|
+
height: 38px;
|
|
173
|
+
border-radius: 9px;
|
|
174
|
+
font: 600 17px PingFang-SC-Bold;
|
|
175
|
+
}
|
|
176
|
+
</style>
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
// 分公司特殊组件页面注册
|
|
2
|
-
import Vue from "vue";
|
|
3
|
-
|
|
4
|
-
//pc和手机端重写组件较多的话 建议将cp和android分到两个文件中 蓉城较少,所以我就合并到一起
|
|
5
|
-
let specialComp = {
|
|
6
|
-
// 工单待办
|
|
7
|
-
'repair-first': (resolve) => { require(['./android/RepairFirstV'], resolve) },
|
|
8
|
-
'repair-type-list' : (resolve) => { require(['./android/RepairTypeList'], resolve) },
|
|
9
|
-
// 用户基本信息
|
|
10
|
-
'repair-user-info': (resolve) => { require(['./android/RepairUserInfo'], resolve) },
|
|
11
|
-
'repair-orderV': (resolve) => { require(['./android/RepairOrderV'], resolve) },
|
|
12
|
-
'phone-ventilation-leave': (resolve) => { require(['./android/PhoneVentilationLeave'], resolve) },
|
|
13
|
-
'tel-take-pic': (resolve) => { require(['./android/AppTakePic'], resolve) }
|
|
14
|
-
}
|
|
15
|
-
exports.specialComp = specialComp
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
// 分公司特殊组件页面注册
|
|
2
|
+
import Vue from "vue";
|
|
3
|
+
|
|
4
|
+
//pc和手机端重写组件较多的话 建议将cp和android分到两个文件中 蓉城较少,所以我就合并到一起
|
|
5
|
+
let specialComp = {
|
|
6
|
+
// 工单待办
|
|
7
|
+
'repair-first': (resolve) => { require(['./android/RepairFirstV'], resolve) },
|
|
8
|
+
'repair-type-list' : (resolve) => { require(['./android/RepairTypeList'], resolve) },
|
|
9
|
+
// 用户基本信息
|
|
10
|
+
'repair-user-info': (resolve) => { require(['./android/RepairUserInfo'], resolve) },
|
|
11
|
+
'repair-orderV': (resolve) => { require(['./android/RepairOrderV'], resolve) },
|
|
12
|
+
'phone-ventilation-leave': (resolve) => { require(['./android/PhoneVentilationLeave'], resolve) },
|
|
13
|
+
'tel-take-pic': (resolve) => { require(['./android/AppTakePic'], resolve) }
|
|
14
|
+
}
|
|
15
|
+
exports.specialComp = specialComp
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|