[问题修复](hyx_门口门禁):

- bug修复
pet_门口门禁
huangyuxuan 2025-01-20 11:42:40 +08:00
parent c42c84c59a
commit 0b56dd74d0
6 changed files with 22 additions and 47 deletions

View File

@ -142,16 +142,7 @@ export default{
},
//
reset() {
this.form = {
USER_NAME: '',
PHONE: '',
ID_CARD: '',
CORPINFO_NAME: '',
DEPARTMENT_NAME: '',
VISIT_START_TIME: '',
VISIT_END_TIME: '',
DOOR_NAME: ''
}
this.form.MOTORCADE_NAME = ''
this.getList()
},
//

View File

@ -269,7 +269,7 @@
</div>
</el-dialog>
<div style="margin-left: 20px;"></div>
<div class="bottom-btn-group">
<div class="bottom-btn-group" style="margin-top: 20px;">
<el-button size="mini" @click="goBack"></el-button>
</div>
</div>
@ -366,16 +366,7 @@ export default{
},
//
reset() {
this.form = {
USER_NAME: '',
PHONE: '',
ID_CARD: '',
CORPINFO_NAME: '',
DEPARTMENT_NAME: '',
VISIT_START_TIME: '',
VISIT_END_TIME: '',
DOOR_NAME: ''
}
this.form.LICENCE_NO = ''
this.getList()
},
//

View File

@ -93,16 +93,7 @@ export default{
},
//
reset() {
this.form = {
USER_NAME: '',
PHONE: '',
ID_CARD: '',
CORPINFO_NAME: '',
DEPARTMENT_NAME: '',
VISIT_START_TIME: '',
VISIT_END_TIME: '',
DOOR_NAME: ''
}
this.form.MOTORCADE_NAME = ''
this.getList()
},
//

View File

@ -93,16 +93,7 @@ export default{
},
//
reset() {
this.form = {
USER_NAME: '',
PHONE: '',
ID_CARD: '',
CORPINFO_NAME: '',
DEPARTMENT_NAME: '',
VISIT_START_TIME: '',
VISIT_END_TIME: '',
DOOR_NAME: ''
}
this.form.MOTORCADE_NAME = ''
this.getList()
},
//

View File

@ -18,7 +18,7 @@
placeholder="请选择车辆类型"/>
</el-form-item>
</el-col>
<el-col :span="3">
<el-col :span="4">
<el-form-item label="车辆所属部门" prop="VEHICLE_DEPARTMENT_ID">
<SelectTree
ref="selectTree_Search2"
@ -29,12 +29,12 @@
placeholder="请选择车辆所属部门"/>
</el-form-item>
</el-col>
<el-col :span="3">
<el-col :span="4">
<el-form-item label="车辆责任人">
<el-input v-model="searchFrom.USER_NAME" placeholder="请输入车辆责任人..." />
</el-form-item>
</el-col>
<el-col :span="3">
<el-col :span="4">
<el-form-item label="审核状态" prop="IS_AUDIT">
<SelectTree
ref="selectTree_Search3"
@ -435,11 +435,14 @@ export default {
})
},
resetSearch() {
this.searchFrom = {
LICENCE_NO: '' //
}
this.searchFrom.LICENCE_NO = ''
this.searchFrom.VEHICLE_TYPE = ''
this.searchFrom.IS_AUDIT = ''
this.searchFrom.USER_NAME = ''
this.searchFrom.VEHICLE_DEPARTMENT_ID = ''
this.$refs.selectTree_Search1.clearHandle() //
this.$refs.selectTree_Search2.clearHandle()
this.$refs.selectTree_Search3.clearHandle()
},
resetForm(row) {
this.searchFrom = {

View File

@ -53,6 +53,14 @@
<div/><div/>
<pagination :total="total" :page.sync="listQuery.page" :limit.sync="listQuery.limit" @pagination="getList" />
</div>
<el-alert
title="提示"
type="info"
description="相关方人员通过培训之后有进出一级口门权限,有权限的人在此列表显示。"
show-icon
:closable="false"
style="margin-top: 20px;"
/>
</div>
</template>