yanyan 1 year ago
parent
commit
03676b4e21
  1. 2
      src/views/administrative/appointment.vue
  2. 4
      src/views/administrative/appointmentEdit.vue
  3. 2
      src/views/administrative/appointmentRelaunch.vue
  4. 7
      src/views/administrative/userFilter.vue

2
src/views/administrative/appointment.vue

@ -236,7 +236,7 @@
<!-- </div>-->
<van-popup v-model:show="data.showLawEnforcerFlag" position="bottom" :style="{ height: '30%' }"/>
<UserPopup :visible="data.popupVisible" :content="data.popupContent" :lawEDid="submitData.lawEnforcerId" :LawEDs="data.lawCer" @close="closePopup"
<UserPopup :visible="data.popupVisible" :content="data.popupContent" :lawEDid="submitData.lawEnforcerId" :LawEDs="data.lawCer" :isShowCardId="0" @close="closePopup"
@reciveData="reciveVisible"/>
<van-popup v-model:show="data.showTimePicker" position="bottom" :style="{ height: '30%' }">

4
src/views/administrative/appointmentEdit.vue

@ -211,7 +211,7 @@
<!-- </div>-->
<van-popup v-model:show="data.showLawEnforcerFlag" position="bottom" :style="{ height: '30%' }" />
<UserPopup :visible="data.popupVisible" :content="data.popupContent" @close="closePopup" @reciveData="reciveVisible" />
<UserPopup :visible="data.popupVisible" :content="data.popupContent" :lawEDid="submitData.lawEnforcerId" :LawEDs="data.lawCer" :isShowCardId="0" @close="closePopup" @reciveData="reciveVisible" />
<van-popup v-model:show="data.showTimePicker" position="bottom" :style="{ height: '30%' }" >
<van-date-picker
@ -482,7 +482,7 @@
submitData.isSubmit =success.data['isSubmit'];
submitData.bureauDeptName = success.data['bureauDeptName'];
submitData.linkMan=nameCorrect(submitData['linkMan']);
submitData.lawEnforcerId = success.data.lawEnforcerId;
//
if (success.data.userObjs.length > 1) {
data.checked = true;

2
src/views/administrative/appointmentRelaunch.vue

@ -205,7 +205,7 @@
<!-- </div>-->
<van-popup v-model:show="data.showLawEnforcerFlag" position="bottom" :style="{ height: '30%' }" />
<UserPopup :visible="data.popupVisible" :content="data.popupContent" :lawEDid="submitData.lawEnforcerId" :LawEDs="data.lawCer" @close="closePopup" @reciveData="reciveVisible" />
<UserPopup :visible="data.popupVisible" :content="data.popupContent" :lawEDid="submitData.lawEnforcerId" :LawEDs="data.lawCer" :isShowCardId="0" @close="closePopup" @reciveData="reciveVisible" />
<van-popup v-model:show="data.showTimePicker" position="bottom" :style="{ height: '30%' }" >
<!-- <van-date-picker-->

7
src/views/administrative/userFilter.vue

@ -49,7 +49,11 @@
LawEDs: {
type: Array,
default: () => []
}
},
isShowCardId: {
type: String,
default: '1'
}
},
watch: {
visible(newVal, oldVal) {
@ -97,6 +101,7 @@
});
const setAsString = Array.from(uniqueItemsSet).join(',');
this.searchParam.notUserId = setAsString;
this.searchParam.isShowCardId = this.isShowCardId;
this.searchParam.pageNum = (this.curPage-1)*this.searchParam.pageSize;
queryUsers(this.searchParam, success => {
this.curPage++;

Loading…
Cancel
Save