[问题修复](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() { reset() {
this.form = { this.form.MOTORCADE_NAME = ''
USER_NAME: '',
PHONE: '',
ID_CARD: '',
CORPINFO_NAME: '',
DEPARTMENT_NAME: '',
VISIT_START_TIME: '',
VISIT_END_TIME: '',
DOOR_NAME: ''
}
this.getList() this.getList()
}, },
// //

View File

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

View File

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

View File

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

View File

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

View File

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