parent
c42c84c59a
commit
0b56dd74d0
|
@ -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()
|
||||
},
|
||||
// 获取列表
|
||||
|
|
|
@ -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()
|
||||
},
|
||||
// 获取列表
|
||||
|
|
|
@ -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()
|
||||
},
|
||||
// 获取列表
|
||||
|
|
|
@ -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()
|
||||
},
|
||||
// 获取列表
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue