safecheck-client 4.0.0-73 → 4.0.0-74
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 +132 -132
- package/src/components/android/NewCheckpaperAndroid.vue +1369 -1369
- package/src/components/planmanage/PlanManage.vue +10 -4
- package/src/filiale/meihekou/android/PaperFeedback.vue +1538 -1538
- package/src/filiale/meihekou/android/SafecheckOrderV.vue +2400 -2400
- package/src/filiale/meihekou/android.js +21 -21
- package/src/main.js +1 -1
@@ -161,8 +161,9 @@
|
|
161
161
|
class="select select_list"
|
162
162
|
:value.sync="planCondition.f_checker"
|
163
163
|
v-model="planCondition.f_checker"
|
164
|
-
@change="setProperty('checkplan','checkerid',planCondition.f_checker.id)"
|
164
|
+
@change="setProperty('checkplan','checkerid',planCondition.f_checker ? planCondition.f_checker.id : '')"
|
165
165
|
:options='getConList("checker")'
|
166
|
+
:search="false"
|
166
167
|
placeholder='请选择'
|
167
168
|
close-on-select
|
168
169
|
value-single
|
@@ -561,8 +562,14 @@ export default {
|
|
561
562
|
this.createPlan.f_checker_id=null
|
562
563
|
this.createPlan.f_checker=null
|
563
564
|
}else{
|
564
|
-
this.createPlan.
|
565
|
-
|
565
|
+
if(this.createPlan.checker && this.createPlan.checker.id){
|
566
|
+
this.createPlan.f_checker_id=this.createPlan.checker.id
|
567
|
+
this.createPlan.f_checker=this.createPlan.checker.name
|
568
|
+
}else{
|
569
|
+
Vue.showMessage("请选择安检人员!")
|
570
|
+
this.isSend=false
|
571
|
+
return
|
572
|
+
}
|
566
573
|
}
|
567
574
|
console.log("this.createPlan.f_checker:"+this.createPlan.f_checker)
|
568
575
|
this.createPlan.f_plan_type='预约计划'
|
@@ -620,7 +627,6 @@ export default {
|
|
620
627
|
//查询安检员selectChanged
|
621
628
|
async searchChecker(){
|
622
629
|
console.log(this.$login.f.orgid)
|
623
|
-
debugger
|
624
630
|
let res=await new HttpResetClass().load('POST', '/rs/search', {
|
625
631
|
data:{
|
626
632
|
source: `root.getResourceById($${this.$login.f.orgid}$,$organization$).getSpecialResByType($user$).where(row.getAttributes().get($rolestr$).indexOf($安检员$) != -1)`,
|