safecheck-client 3.0.35-1 → 3.0.35-10

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.
Files changed (27) hide show
  1. package/package.json +1 -1
  2. package/src/components/Util/SafecheckUpload.vue +269 -265
  3. package/src/components/android/CivilCurrentCreate.vue +46 -41
  4. package/src/components/android/examples/UserExamples.vue +136 -136
  5. package/src/components/rongcheng/AspiratedPaperFeedbackm.vue +1049 -1045
  6. package/src/filiale/bayan/android/AddPlanItem.vue +13 -2
  7. package/src/filiale/bayan/android/CheckPlanDown.vue +2 -2
  8. package/src/filiale/bayan/android/PaperFeedback.vue +1669 -1669
  9. package/src/filiale/bayan/android/PhoneUpUserinfo.vue +908 -905
  10. package/src/filiale/bayan/android/SafecheckOrderV.vue +76 -20
  11. package/src/filiale/bayan/android/SafecheckUserInfo.vue +4 -0
  12. package/src/filiale/bayan/pc/CheckPlanAreaList.vue +42 -0
  13. package/src/filiale/bayan/pc/HiddenSituation.vue +295 -295
  14. package/src/filiale/bayan/pc/NewCheckpaper.vue +1992 -1992
  15. package/src/filiale/bayan/pc/PaperList.vue +900 -900
  16. package/src/filiale/bayan/pc/PlanManage.vue +2 -0
  17. package/src/filiale/bayan/pc/SelectCheckPlan.vue +58 -0
  18. package/src/filiale/shanxian/android/AddPlanItem.vue +1 -1
  19. package/src/filiale/shanxian/android/SafecheckOrderV.vue +1 -1
  20. package/src/filiale/tongchuan/android/SafecheckDevices.vue +1207 -1207
  21. package/src/filiale/tongchuan/android/SafecheckOrderV.vue +3035 -3035
  22. package/src/filiale/tongchuan/pc/CheckSearchUser.vue +1053 -1053
  23. package/src/filiale/tongchuan/pc/checkUserList.vue +639 -639
  24. package/src/filiale/xilan/android/AddPlanItem.vue +4 -0
  25. package/src/filiale/xilan/android/CurrentCreate.vue +6 -2
  26. package/src/filiale/yangchunboneng/pc/CheckPlanAreaList.vue +642 -642
  27. package/src/main.js +33 -33
@@ -154,10 +154,21 @@
154
154
  </div>
155
155
  <div class="row">
156
156
  <p class="panel-title col-xs-4 text-left font">用户电话</p>
157
- <p class="panel-title col-xs-8 text-left input-font" style="width: 77%">{{ row.f_user_phone2 ? row.f_user_phone2 : row.f_user_phone }}
157
+ <p class="panel-title col-xs-8 text-left input-font">{{ row.f_user_phone2 ? row.f_user_phone2 : row.f_user_phone }}
158
158
  <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
159
  </div>
160
+ <div class="row">
161
+ <p class="panel-title col-xs-4 text-left font">租户电话</p>
162
+ <p class="panel-title col-xs-8 text-left input-font">{{ row.f_zuhu_phone }}
163
+ <img src="../../../assets/phone.png" style="width: 6%" v-on:click.stop.prevent='$parent.$parent.$parent.makeAPhoneCall(row.f_zuhu_phone)'></img></p>
164
+
165
+ </div>
166
+ <div class="row">
167
+ <p class="panel-title col-xs-4 text-left font">临时联系电话</p>
168
+ <p class="panel-title col-xs-8 text-left input-font">{{ row.f_rent_phone }}
169
+ <img src="../../../assets/phone.png" style="width: 6%" v-on:click.stop.prevent='$parent.$parent.$parent.makeAPhoneCall(row.f_rent_phone)'></img></p>
160
170
 
171
+ </div>
161
172
  <div class="row">
162
173
  <p class="panel-title col-xs-4 text-left font">小区名称</p>
163
174
  <p class="panel-title col-xs-8 text-left input-font">{{ row.f_residential_area }}</p>
@@ -180,7 +191,7 @@
180
191
  </div>
181
192
  <div class="row" v-if="row.f_table_state = '停用'">
182
193
  <p class="panel-title col-xs-4 text-left font">原因</p>
183
- <p class="panel-title col-xs-8 text-left input-font">{{ row.f_table_state }}</p>
194
+ <p class="panel-title col-xs-8 text-left input-font">{{ row.f_black_comments }}</p>
184
195
  </div>
185
196
  </div>
186
197
  </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 is null)`
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 is null )`
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() {