Commit 7529e59f by 米嘉伟

新增 全部人员库新增

parent b0c7f399
......@@ -9,15 +9,17 @@
<div class='search'>
<el-input
clear="search-input"
placeholder="请输入搜索名称"
v-model="reqParam.contrastCustomSearchReq.searchbarcode"
placeholder="请输入条码,*支持模糊搜索"
v-model="reqParam.personStoreCustomSearch.barcode"
maxlength="23"
show-word-limit
></el-input>
<div
class="search-icon el-icon-search"
@click="search"
></div>
<el-radio-group
v-model="reqParam.contrastCustomSearchReq.searchOptions"
v-model="reqParam.personStoreCustomSearch.searchOptions"
@change="searchStyle"
>
<el-radio :label="3">通用搜索</el-radio>
......@@ -33,7 +35,7 @@
@click="batch"
>批量操作</div>
<el-checkbox-group
v-model="reqParam.contrastCustomSearchReq.checkList"
v-model="reqParam.personStoreCustomSearch.checkList"
@change="searchCheckList"
>
<el-checkbox label="gd">滚动</el-checkbox>
......@@ -314,9 +316,9 @@ export default {
pageSize: 10, //当前选择要显示的条数
currPage: 1 // 当前在第几页
},
contrastCustomSearchReq: {
searchbarcode: '', // 搜索框内容
searchOptions: null, // 默认搜索方式
personStoreCustomSearch: {
barcode: '', // 搜索框内容
searchOptions: '', // 默认搜索方式
checkList: [], //滚动平面等筛选条件
}
},
......
<template>
<el-dialog
title="提示"
:visible.sync="dialogVisible"
width="30%"
:before-close="handleClose"
>
<span>这是一段信息</span>
<span
slot="footer"
class="dialog-footer"
>
<el-button @click="dialogVisible = false">取 消</el-button>
<el-button
type="primary"
@click="dialogVisible = false"
>确 定</el-button>
</span>
</el-dialog>
</template>
<script>
export default {
data () {
return {
dialogVisible: false
};
},
methods: {
handleClose (done) {
this.$confirm('确认关闭?')
.then(_ => {
done();
})
.catch(_ => { });
}
}
};
</script>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment