Commit c7df6c1c authored by lc@weface.com.cn's avatar lc@weface.com.cn

覆盖人员查询

parent 3378334e
...@@ -279,9 +279,8 @@ export default { ...@@ -279,9 +279,8 @@ export default {
this.urls.push("http://socialsecurity.oss-cn-beijing.aliyuncs.com/"+obj.idcardbackpic)
this.urls.push("http://socialsecurity.oss-cn-beijing.aliyuncs.com/"+obj.idcardfrontpic) this.urls.push("http://socialsecurity.oss-cn-beijing.aliyuncs.com/"+obj.idcardfrontpic)
this.urls.push("http://socialsecurity.oss-cn-beijing.aliyuncs.com/"+obj.idcardbackpic)
console.log(this.form) console.log(this.form)
this.form.sex= this.form.sex==1?"男":"女" this.form.sex= this.form.sex==1?"男":"女"
......
This diff is collapsed.
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<div> <div>
<div class="op"> <div class="op">
<el-button type="primary" @click="showadd" size="mini" style="background:#148A9B;margin-left:10px" icon="el-icon-circle-plus-outline">新增</el-button> <el-button type="primary" @click="dialogVisible = true" size="mini" style="background:#148A9B;margin-left:10px" icon="el-icon-circle-plus-outline">新增</el-button>
</div> </div>
<el-table <el-table
...@@ -62,24 +62,20 @@ ...@@ -62,24 +62,20 @@
<el-dialog <el-dialog
title="新增流程" title="新增流程"
:visible.sync="dialogVisible" :visible.sync="dialogVisible"
width="60%" width="30%"
> >
<el-select v-model="title" clearable placeholder="请选择标题" style="margin-bottom:10px;width:100%"> <el-input
<el-option style="margin-bottom:20px"
v-for="item in titleList" placeholder="请输入流程标题"
:key="item.value" v-model="flowname"
:label="item.label" clearable>
:value="item.value" </el-input>
>
</el-option>
</el-select>
<el-select <el-select
style="width:100%" style="width:100%"
v-model="value" v-model="value"
multiple multiple
filterable filterable
@visible-change="toshow"
default-first-option default-first-option
placeholder="请编辑流程"> placeholder="请编辑流程">
<el-option <el-option
...@@ -90,7 +86,6 @@ ...@@ -90,7 +86,6 @@
:value="item.value"> :value="item.value">
</el-option> </el-option>
</el-select> </el-select>
<div class="iii" v-show="showiii"></div>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button @click="del">取 消</el-button> <el-button @click="del">取 消</el-button>
<el-button type="primary" @click="addflow">确 定</el-button> <el-button type="primary" @click="addflow">确 定</el-button>
...@@ -120,32 +115,14 @@ ...@@ -120,32 +115,14 @@
margin: 0 auto; margin: 0 auto;
width:100px width:100px
} }
.iii{
height: 200px
}
</style> </style>
<script> <script>
import CryptoJS from 'crypto-js' import CryptoJS from 'crypto-js'
import {format} from "../../utils/datetime"
console.log(format)
// import baseUrl from "../../globe/globeUrl" // import baseUrl from "../../globe/globeUrl"
export default { export default {
data() { data() {
return { return {
showiii:false,
//标题
title:"",
titleList:[{
label:"参保登记审核流程",
value:"1,参保登记审核流程"
},{
label:"信息变更审核流程",
value:"2,信息变更审核流程"
},{
label:"待遇申请审核流程",
value:"3,待遇申请审核流程"
}],
flowname:"", flowname:"",
dialogVisible: false, dialogVisible: false,
step:'', step:'',
...@@ -153,66 +130,40 @@ ...@@ -153,66 +130,40 @@
totals:0, totals:0,
input:"", input:"",
info:'', info:'',
tableData: [], tableData: [{
options: [], id:1,
name:"邹",
creattime:"2019-1-1",
person:'迪迪'
}],
options: [{
value: '初审',
label: '初审'
}, {
value: '复核',
label: '复核'
}, {
value: '稽查',
label: '稽查'
},
{
value: '领导审核',
label: '领导审核'
}],
value: [] value: []
} }
}, },
methods:{ methods:{
current_change(s){ current_change(s){
},
toshow(s){
this.showiii=s
}, },
del(){ del(){
this.dialogVisible = false this.dialogVisible = false
}, },
//获取流程
showadd(){
this.options=[]
this.dialogVisible = true
this.$api.getlist.selectRoleName().then((res) => {
if(res.code==200){
for(var i in res.data){
this.options.push({
label:res.data[i].name,
value:res.data[i].name
})
}
}else{
alert(JSON.stringify(res))
}
}).catch((res) => {
});
},
//新增流程 //新增流程
addflow() { addflow() {
console.log(this.value) this.dialogVisible = true
for(var d in this.tableData){ console.log(this.value)
if(this.tableData[d].type==this.title.split(",")[0]){
this.$message.error('流程已存在,请选择其它流程!');
return
}
var par={
type:this.title.split(",")[0],
flowName:this.title.split(",")[1],
roleIds:"",
state:1
}
this.$api.getlist.insertFolwCourse(par).then((res) => {
}).catch((res) => {
});
}
this.dialogVisible = false
}, },
indexMethod(index) { indexMethod(index) {
return index +1; return index +1;
......
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
label="操作人" label="操作人"
> >
</el-table-column> </el-table-column>
<el-table-column <el-table-column
width="180" width="180"
label="操作"> label="操作">
<template slot-scope="scope"> <template slot-scope="scope">
...@@ -63,10 +63,10 @@ ...@@ -63,10 +63,10 @@
} }
this.$api.getlist.newsList(data).then((res) => { this.$api.getlist.newsList(data).then((res) => {
this.tableData=res.data.list this.tableData=res.data.list
}).catch((res) => { }).catch((res) => {
}); });
} }
}, },
created(){ created(){
...@@ -76,10 +76,10 @@ ...@@ -76,10 +76,10 @@
} }
this.$api.getlist.newsList(data).then((res) => { this.$api.getlist.newsList(data).then((res) => {
this.tableData=res.data.list this.tableData=res.data.list
}).catch((res) => { }).catch((res) => {
}); });
} }
} }
</script> </script>
\ No newline at end of file
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<div class="add" style="margin-left:0"> <div class="add" style="margin-left:0">
<el-select clearable size="mini" @change="handleChange" v-model="town" placeholder="请选择乡/镇"> <el-select size="mini" @change="handleChange" v-model="town" placeholder="请选择乡/镇">
<el-option <el-option
v-for="item in list" v-for="item in list"
:key="item.town_id" :key="item.town_id"
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</el-select> </el-select>
</div> </div>
<div class="add"> <div class="add">
<el-select size="mini" clearable @change="torz" v-model="village" placeholder="请选择村"> <el-select size="mini" @change="torz" v-model="village" placeholder="请选择村">
<el-option <el-option
v-for="item2 in list2" v-for="item2 in list2"
:key="item2.village_id" :key="item2.village_id"
...@@ -24,13 +24,13 @@ ...@@ -24,13 +24,13 @@
</el-select> </el-select>
</div> </div>
<div class="nam"> <div class="nam">
<el-input v-model="name" clearable size="mini" placeholder="请输入姓名"></el-input> <el-input v-model="name" size="mini" placeholder="请输入姓名"></el-input>
</div> </div>
<div class="idc"> <div class="idc">
<el-input v-model="idcard" size="mini" clearable placeholder="请输入身份证号"></el-input> <el-input v-model="idcard" size="mini" placeholder="请输入身份证号"></el-input>
</div> </div>
<div class="add"> <div class="add">
<el-select size="mini" @change="torz" clearable v-model="state" placeholder="所有状态"> <el-select size="mini" @change="torz" clearable v-model="state" placeholder="认证状态">
<el-option <el-option
v-for="item3 in stateList" v-for="item3 in stateList"
:key="item3.value" :key="item3.value"
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
</el-select> </el-select>
</div> </div>
<div class="add"> <div class="add">
<el-select size="mini" @change="torz" clearable v-model="age" placeholder="选择年龄"> <el-select size="mini" @change="torz" v-model="age" placeholder="选择年龄">
<el-option <el-option
v-for="item4 in ageList" v-for="item4 in ageList"
:key="item4.value" :key="item4.value"
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
</el-select> </el-select>
</div> </div>
<div class="add"> <div class="add">
<el-select size="mini" @change="torz" clearable v-model="agemeth" placeholder="年龄计算方式"> <el-select size="mini" @change="torz" v-model="agemeth" placeholder="年龄计算方式">
<el-option <el-option
v-for="item5 in agemethList" v-for="item5 in agemethList"
:key="item5.value" :key="item5.value"
...@@ -88,9 +88,9 @@ ...@@ -88,9 +88,9 @@
<el-table <el-table
:data="tableData" :data="tableData"
style="width: 100%" style="width: 100%"
stripe> :row-class-name="tableRowClassName">
<el-table-column <el-table-column
prop="idNumber" prop="idcard"
label="身份证号" label="身份证号"
width="180"> width="180">
</el-table-column> </el-table-column>
...@@ -123,13 +123,7 @@ ...@@ -123,13 +123,7 @@
prop="createtime" prop="createtime"
label="认证照片"> label="认证照片">
<template slot-scope="scope"> <template slot-scope="scope">
<el-popover <img :src="scope.row.recordPhotoStr" width="40" height="40" class="head_pic"/>
placement="left"
title=""
trigger="hover">
<img slot="reference" :src="scope.row.recordPhotoStr||defaultImg" height="70" class="head_pic">
<img :src="scope.row.recordPhotoStr" height="200px" class="head_pic"/>
</el-popover>
</template> </template>
</el-table-column> </el-table-column>
...@@ -189,7 +183,6 @@ import Cookies from "js-cookie"; ...@@ -189,7 +183,6 @@ import Cookies from "js-cookie";
import { Loading } from 'element-ui'; import { Loading } from 'element-ui';
import {listtown} from '../../utils/address' import {listtown} from '../../utils/address'
import {baseUrl2} from "../../utils/global" import {baseUrl2} from "../../utils/global"
import defaultImg from "../../assets/defaultPicture.jpg"
export default { export default {
data() { data() {
...@@ -198,7 +191,6 @@ import defaultImg from "../../assets/defaultPicture.jpg" ...@@ -198,7 +191,6 @@ import defaultImg from "../../assets/defaultPicture.jpg"
name:"", name:"",
town:"", town:"",
village:"", village:"",
defaultImg: defaultImg,
cit:"", cit:"",
Page:1, Page:1,
totals:0, totals:0,
...@@ -211,6 +203,9 @@ import defaultImg from "../../assets/defaultPicture.jpg" ...@@ -211,6 +203,9 @@ import defaultImg from "../../assets/defaultPicture.jpg"
//认证状态 //认证状态
state:"", state:"",
stateList:[{ stateList:[{
value:"",
label:"所有状态",
},{
value:"0", value:"0",
label:"认证成功", label:"认证成功",
},{ },{
...@@ -268,12 +263,8 @@ import defaultImg from "../../assets/defaultPicture.jpg" ...@@ -268,12 +263,8 @@ import defaultImg from "../../assets/defaultPicture.jpg"
}, },
methods: { methods: {
//搜索 //搜索
serch(){ serch(){
Loading.service();
this.serchs(1)
},
serchs(p){
var start="" var start=""
var end="" var end=""
if(this.time){ if(this.time){
...@@ -292,7 +283,7 @@ import defaultImg from "../../assets/defaultPicture.jpg" ...@@ -292,7 +283,7 @@ import defaultImg from "../../assets/defaultPicture.jpg"
city_name:"南充市", city_name:"南充市",
county_name:"西充县", county_name:"西充县",
pageSize:10, pageSize:10,
page:p, page:1,
town_name:this.town.split(",")[1], town_name:this.town.split(",")[1],
village_name:this.village.split(",")[1], village_name:this.village.split(",")[1],
iDCard:this.idcard, iDCard:this.idcard,
...@@ -301,25 +292,17 @@ import defaultImg from "../../assets/defaultPicture.jpg" ...@@ -301,25 +292,17 @@ import defaultImg from "../../assets/defaultPicture.jpg"
end_time:end, end_time:end,
siType:this.cblx, siType:this.cblx,
personName:this.name, personName:this.name,
address:this.agemeth, address:this.agemeth
birthday:this.age
} }
Axios.get(baseUrl2+'/search/authentication.do',{ Axios.get(baseUrl2+'/search/authentication.do',{
params:data params:data
}) })
.then(res => { .then(res => {
let loadingInstance = Loading.service(); console.log(res)
this.$nextTick(() => { // 以服务的方式调用的 Loading 需要异步关闭
loadingInstance.close();
});
this.tableData=res.data.obj this.tableData=res.data.obj
this.totals=res.data.page.total_count
}) })
.catch(err => { .catch(err => {
let loadingInstance = Loading.service();
this.$nextTick(() => { // 以服务的方式调用的 Loading 需要异步关闭
loadingInstance.close();
});
}); });
}, },
...@@ -327,9 +310,16 @@ import defaultImg from "../../assets/defaultPicture.jpg" ...@@ -327,9 +310,16 @@ import defaultImg from "../../assets/defaultPicture.jpg"
progress(d,s){ progress(d,s){
}, },
tableRowClassName({row, rowIndex}) {
if (rowIndex === 1) {
return 'warning-row';
} else if (rowIndex === 3) {
return 'success-row';
}
return '';
},
current_change(ss){ current_change(ss){
this.serchs(ss)
}, },
// //
handleChange(){ handleChange(){
......
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
prop="nowExamine" prop="nowExamine"
label="当前状态"> label="当前状态">
</el-table-column> </el-table-column>
<el-table-column <el-table-column
width="180" width="180"
label="操作"> label="操作">
<template slot-scope="scope"> <template slot-scope="scope">
...@@ -119,10 +119,10 @@ ...@@ -119,10 +119,10 @@
.op{ .op{
display: flex; display: flex;
align-items: center; align-items: center;
} }
.idc{ .idc{
width: 200px width: 200px
} }
.nam{ .nam{
...@@ -154,7 +154,7 @@ ...@@ -154,7 +154,7 @@
// import baseUrl from "../../globe/globeUrl" // import baseUrl from "../../globe/globeUrl"
export default { export default {
data() { data() {
return { return {
list:[], list:[],
name:"", name:"",
...@@ -181,13 +181,12 @@ ...@@ -181,13 +181,12 @@
methods: { methods: {
//搜索 //搜索
serch(){ serch(){
var data={ var data={
idcard:this.idcard?this.Encrypt(this.idcard):"", idcard:this.idcard?this.Encrypt(this.idcard):"",
recordType:this.ywtype?parseInt(this.ywtype):"", recordType:this.ywtype?parseInt(this.ywtype):"",
townName:'', townName:'',
villageName:'' villageName:''
} }
this.$api.getlist.record(data).then((res) => { this.$api.getlist.record(data).then((res) => {
for(var i in res.data.list){ for(var i in res.data.list){
...@@ -195,15 +194,15 @@ ...@@ -195,15 +194,15 @@
res.data.list[i].name=this.decrypt(res.data.list[i].name) res.data.list[i].name=this.decrypt(res.data.list[i].name)
var d=new Date(res.data.list[i].createtime) var d=new Date(res.data.list[i].createtime)
var mon=(parseInt(d.getMonth()) + 1) var mon=(parseInt(d.getMonth()) + 1)
res.data.list[i].createtime=d.getFullYear()+"-"+mon+"-"+d.getDate()+" "+d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds(); res.data.list[i].createtime=d.getFullYear()+"-"+mon+"-"+d.getDate()+" "+d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds();
res.data.list[i].recordtype=res.data.list[i].recordtype==1?"参保登记":res.data.list[i].recordtype==2?"信息变更":'' res.data.list[i].recordtype=res.data.list[i].recordtype==1?"参保登记":res.data.list[i].recordtype==2?"信息变更":''
} }
this.tableData=res.data.list this.tableData=res.data.list
this.totals=res.data.total this.totals=res.data.total
this.page=res.data.total.pageNum this.page=res.data.total.pageNum
}).catch((res) => { }).catch((res) => {
}); });
}, },
//流程 //流程
...@@ -224,8 +223,8 @@ ...@@ -224,8 +223,8 @@
size: 'large' size: 'large'
}) })
}else{ }else{
if(res.data[i].examineState=="审核失败"){ if(res.data[i].examineState=="审核失败"){
this.activities.push({ this.activities.push({
content:res.data[i].role+":"+"审核失败", content:res.data[i].role+":"+"审核失败",
...@@ -277,7 +276,7 @@ ...@@ -277,7 +276,7 @@
res.data.list[i].name=this.decrypt(res.data.list[i].name) res.data.list[i].name=this.decrypt(res.data.list[i].name)
var d=new Date(res.data.list[i].createtime) var d=new Date(res.data.list[i].createtime)
var mon=(parseInt(d.getMonth()) + 1) var mon=(parseInt(d.getMonth()) + 1)
res.data.list[i].createtime=d.getFullYear()+"-"+mon+"-"+d.getDate()+" "+d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds(); res.data.list[i].createtime=d.getFullYear()+"-"+mon+"-"+d.getDate()+" "+d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds();
res.data.list[i].recordtype=res.data.list[i].recordtype==1?"参保登记":res.data.list[i].recordtype==2?"信息变更":'' res.data.list[i].recordtype=res.data.list[i].recordtype==1?"参保登记":res.data.list[i].recordtype==2?"信息变更":''
} }
this.tableData=res.data.list this.tableData=res.data.list
...@@ -301,7 +300,7 @@ ...@@ -301,7 +300,7 @@
idcardbackpic:this.tableData[s].idcardbackpic, idcardbackpic:this.tableData[s].idcardbackpic,
idcardfrontpic:this.tableData[s].idcardfrontpic, idcardfrontpic:this.tableData[s].idcardfrontpic,
signpic:this.tableData[s].signpic, signpic:this.tableData[s].signpic,
show:false show:false
} }
}) })
...@@ -350,7 +349,7 @@ ...@@ -350,7 +349,7 @@
return decrypted.toString(CryptoJS.enc.Utf8); return decrypted.toString(CryptoJS.enc.Utf8);
} }
}, },
created(){ created(){
for(var i in listtown){ for(var i in listtown){
this.list.push({ this.list.push({
...@@ -370,7 +369,7 @@ ...@@ -370,7 +369,7 @@
var data={ var data={
idcard:'', idcard:'',
recordType:'' recordType:''
} }
this.$api.getlist.record(data).then((res) => { this.$api.getlist.record(data).then((res) => {
let loadingInstance = Loading.service(); let loadingInstance = Loading.service();
...@@ -382,13 +381,13 @@ ...@@ -382,13 +381,13 @@
res.data.list[i].name=this.decrypt(res.data.list[i].name) res.data.list[i].name=this.decrypt(res.data.list[i].name)
var d=new Date(res.data.list[i].createtime) var d=new Date(res.data.list[i].createtime)
var mon=(parseInt(d.getMonth()) + 1) var mon=(parseInt(d.getMonth()) + 1)
res.data.list[i].createtime=d.getFullYear()+"-"+mon+"-"+d.getDate()+" "+d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds(); res.data.list[i].createtime=d.getFullYear()+"-"+mon+"-"+d.getDate()+" "+d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds();
res.data.list[i].recordtype=res.data.list[i].recordtype==1?"参保登记":res.data.list[i].recordtype==2?"信息变更":'' res.data.list[i].recordtype=res.data.list[i].recordtype==1?"参保登记":res.data.list[i].recordtype==2?"信息变更":''
} }
this.tableData=res.data.list this.tableData=res.data.list
this.totals=res.data.total this.totals=res.data.total
this.page=res.data.total.pageNum this.page=res.data.total.pageNum
}).catch((res) => { }).catch((res) => {
let loadingInstance = Loading.service(); let loadingInstance = Loading.service();
this.$nextTick(() => { // 以服务的方式调用的 Loading 需要异步关闭 this.$nextTick(() => { // 以服务的方式调用的 Loading 需要异步关闭
...@@ -412,8 +411,8 @@ ...@@ -412,8 +411,8 @@
// that.tableData=res.data.list // that.tableData=res.data.list
// that.totals=res.data.total // that.totals=res.data.total
// that.page=res.data.total.pageNum // that.page=res.data.total.pageNum
// } // }
// }) // })
} }
......
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