safecheck-client 3.0.35-2 → 3.0.35-21
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 +31 -31
- package/src/components/Util/SafecheckUpload.vue +4 -0
- package/src/components/android/CivilCurrentCreate.vue +56 -41
- package/src/components/android/NoCivilCurrentCreate.vue +10 -0
- package/src/components/android/PhoneUpUserinfo.vue +25 -6
- package/src/components/android/examples/UserExamples.vue +136 -136
- package/src/components/pc/SecurityCheckLedger.vue +113 -0
- package/src/components/rongcheng/AddPlanItem.vue +1 -1
- package/src/components/rongcheng/AspiratedPaperFeedbackm.vue +4 -0
- package/src/components/rongcheng/AspiratedUserInfo.vue +407 -399
- package/src/components/rongcheng/SafecheckOrderV.vue +1 -1
- package/src/components/rongcheng/SafecheckUserInfo.vue +1005 -1005
- package/src/filiale/bayan/android/AddPlanItem.vue +22 -2
- package/src/filiale/bayan/android/CheckPlanDown.vue +2 -2
- package/src/filiale/bayan/android/CurrentCreate.vue +10 -0
- package/src/filiale/bayan/android/PaperFeedback.vue +1669 -1669
- package/src/filiale/bayan/android/PhoneUpUserinfo.vue +908 -905
- package/src/filiale/bayan/android/SafecheckOrderV.vue +76 -20
- package/src/filiale/bayan/android/SafecheckUserInfo.vue +4 -0
- package/src/filiale/bayan/pc/CheckPlanAreaList.vue +607 -601
- package/src/filiale/bayan/pc/HiddenSituation.vue +295 -295
- package/src/filiale/bayan/pc/NewCheckpaper.vue +1992 -1992
- package/src/filiale/bayan/pc/PaperList.vue +900 -900
- package/src/filiale/bayan/pc/PlanManage.vue +2 -0
- package/src/filiale/bayan/pc/SelectCheckPlan.vue +391 -391
- package/src/filiale/huaran/android/CheckPlanDown.vue +212 -0
- package/src/filiale/huaran/android.js +1 -0
- package/src/filiale/shanxian/android/AddPlanItem.vue +1 -1
- package/src/filiale/shanxian/android/SafecheckOrderV.vue +1 -1
- package/src/filiale/siyang/pc/checkUserList.vue +108 -133
- package/src/filiale/tongchuan/android/SafecheckDevices.vue +1207 -1207
- package/src/filiale/tongchuan/android/SafecheckOrderV.vue +3035 -3035
- package/src/filiale/tongchuan/pc/CheckSearchUser.vue +1045 -1053
- package/src/filiale/tongchuan/pc/checkUserList.vue +639 -639
- package/src/filiale/xilan/android/AddPlanItem.vue +4 -0
- package/src/filiale/xilan/android/CurrentCreate.vue +6 -2
- package/src/filiale/yangchunboneng/pc/CheckPlanAreaList.vue +642 -642
- package/src/main.js +33 -33
- package/src/safecheck.js +3 -0
@@ -81,6 +81,15 @@
|
|
81
81
|
<input style="width: 100%" class="search_input input-font" v-model="model.f_address" placeholder="请输入用户地址(可模糊查询)">
|
82
82
|
</div>
|
83
83
|
</div>
|
84
|
+
<div class="row app-row">
|
85
|
+
<div class="col-xs-4">
|
86
|
+
<img src="../../../assets/小区.png" style="width: 20px;margin-bottom: 5px" alt="">
|
87
|
+
<label class="font text-left">区/期:</label>
|
88
|
+
</div>
|
89
|
+
<div class="col-xs-8" >
|
90
|
+
<input style="width: 100%" class="search_input input-font" v-model="model.f_area_period" placeholder="请输入" condition="ua.f_area_period like '%{}%'">
|
91
|
+
</div>
|
92
|
+
</div>
|
84
93
|
<div class="row app-row">
|
85
94
|
<div class="col-xs-4">
|
86
95
|
<img src="../../../assets/小区.png" style="width: 20px;margin-bottom: 5px" alt="">
|
@@ -154,10 +163,21 @@
|
|
154
163
|
</div>
|
155
164
|
<div class="row">
|
156
165
|
<p class="panel-title col-xs-4 text-left font">用户电话</p>
|
157
|
-
<p class="panel-title col-xs-8 text-left input-font"
|
166
|
+
<p class="panel-title col-xs-8 text-left input-font">{{ row.f_user_phone2 ? row.f_user_phone2 : row.f_user_phone }}
|
158
167
|
<img src="../../../assets/phone.png" style="width: 6%" v-on:click.stop.prevent='$parent.$parent.$parent.makeAPhoneCall(row.f_user_phone2 ? row.f_user_phone2 : row.f_user_phone)'></img></p>
|
159
168
|
</div>
|
169
|
+
<div class="row">
|
170
|
+
<p class="panel-title col-xs-4 text-left font">租户电话</p>
|
171
|
+
<p class="panel-title col-xs-8 text-left input-font">{{ row.f_zuhu_phone }}
|
172
|
+
<img src="../../../assets/phone.png" style="width: 6%" v-on:click.stop.prevent='$parent.$parent.$parent.makeAPhoneCall(row.f_zuhu_phone)'></img></p>
|
173
|
+
|
174
|
+
</div>
|
175
|
+
<div class="row">
|
176
|
+
<p class="panel-title col-xs-4 text-left font">临时联系电话</p>
|
177
|
+
<p class="panel-title col-xs-8 text-left input-font">{{ row.f_rent_phone }}
|
178
|
+
<img src="../../../assets/phone.png" style="width: 6%" v-on:click.stop.prevent='$parent.$parent.$parent.makeAPhoneCall(row.f_rent_phone)'></img></p>
|
160
179
|
|
180
|
+
</div>
|
161
181
|
<div class="row">
|
162
182
|
<p class="panel-title col-xs-4 text-left font">小区名称</p>
|
163
183
|
<p class="panel-title col-xs-8 text-left input-font">{{ row.f_residential_area }}</p>
|
@@ -180,7 +200,7 @@
|
|
180
200
|
</div>
|
181
201
|
<div class="row" v-if="row.f_table_state = '停用'">
|
182
202
|
<p class="panel-title col-xs-4 text-left font">原因</p>
|
183
|
-
<p class="panel-title col-xs-8 text-left input-font">{{ row.
|
203
|
+
<p class="panel-title col-xs-8 text-left input-font">{{ row.f_black_comments }}</p>
|
184
204
|
</div>
|
185
205
|
</div>
|
186
206
|
</div>
|
@@ -111,7 +111,7 @@ export default {
|
|
111
111
|
})
|
112
112
|
let classes_str = classes_arr.data.map(item => { return `'${item.name}'` }).join()
|
113
113
|
if (classes_arr.data && classes_arr.data.length >0){
|
114
|
-
this.condition += ` and ( f_class in (${classes_str}) or f_class
|
114
|
+
this.condition += ` and ( f_class in (${classes_str}) or f_class = '')`
|
115
115
|
}
|
116
116
|
let outlets_arr = await new HttpResetClass().load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {
|
117
117
|
data: {
|
@@ -119,7 +119,7 @@ export default {
|
|
119
119
|
}
|
120
120
|
})
|
121
121
|
if (outlets_arr.data && outlets_arr.data.length >0){
|
122
|
-
this.condition += ` and ( f_outlets in (${outlets_arr.data.map(outlets => { return `'${outlets.name.substring(3)}'` }).join()}) or f_outlets
|
122
|
+
this.condition += ` and ( f_outlets in (${outlets_arr.data.map(outlets => { return `'${outlets.name.substring(3)}'` }).join()}) or f_outlets = '' )`
|
123
123
|
}
|
124
124
|
},
|
125
125
|
reload() {
|
@@ -104,6 +104,16 @@
|
|
104
104
|
close-on-select clear-button>
|
105
105
|
</v-select>
|
106
106
|
</div>
|
107
|
+
<div class="row app-row">
|
108
|
+
<div class="col-xs-4">
|
109
|
+
<img src="../../../assets/用户ID.png" style="width: 20px;margin-bottom: 5px" alt="">
|
110
|
+
<label for="f_area_period" class="font text-left">区/期:</label>
|
111
|
+
</div>
|
112
|
+
<div class="col-xs-8" >
|
113
|
+
<input id="f_area_period" class="search_input input-font"
|
114
|
+
v-model=model.f_area_period condition="f_area_period like '%{}%'" />
|
115
|
+
</div>
|
116
|
+
</div>
|
107
117
|
<div class="row app-row">
|
108
118
|
<div class="col-xs-4">
|
109
119
|
<img src="../../../assets/用户ID.png" style="width: 20px;margin-bottom: 5px" alt="">
|