Commit b21cbd9e authored by qddidi's avatar qddidi

12

12
parent 910d4782
...@@ -7,9 +7,9 @@ ...@@ -7,9 +7,9 @@
// 后台管理系统服务器地址 // 后台管理系统服务器地址
// export const baseUrl2 = 'http://xclc.rensheju.com' // export const baseUrl2 = 'http://xclc.rensheju.com'
// //export const baseUrl = 'http://xc.rensheju.com' // //export const baseUrl = 'http://xc.rensheju.com'
// export const baseUrl = 'http://172.16.10.33:9002' export const baseUrl = 'http://172.16.10.33:9002'
export const baseUrl2 = 'http://xclc.rensheju.com' export const baseUrl2 = 'http://xclc.rensheju.com'
export const baseUrl = 'http://xc.rensheju.com' //export const baseUrl = 'http://xc.rensheju.com'
export default { export default {
baseUrl, baseUrl,
......
function getType(s){ function getType(s){
let a= s==1?"参保登记":s==2?"信息变更":s==3?"待遇申请":s==4?"参保注销":s==5?"补缴保费":s==6?"升档改办":s==7?"关系转移":"" let a= s==1?"参保登记":s==2?"信息变更":s==3?"待遇申请":s==4?"参保注销":s==5?"补缴保费":s==6?"升档改办":s==7?"关系转移":s==8?"特殊业务":""
return a return a
} }
function regetType(s){ function regetType(s){
let a= s=="参保登记"?1:s=="信息变更"?2:s=="待遇申请"?3:s=="参保注销"?4:s=="补缴保费"?5:s=="升档改办"?6:s=="关系转移"?7:"" let a= s=="参保登记"?1:s=="信息变更"?2:s=="待遇申请"?3:s=="参保注销"?4:s=="补缴保费"?5:s=="升档改办"?6:s=="关系转移"?7:s==8?"特殊业务":""
return a return a
} }
export default{ export default{
......
...@@ -33,12 +33,26 @@ ...@@ -33,12 +33,26 @@
<el-table-column <el-table-column
prop="match_stateStr" prop="match_stateStr"
label="认证状态"> label="认证状态"
>
</el-table-column> </el-table-column>
<el-table-column <el-table-column label="操作">
prop="nowAddress" <template slot-scope="scope">
label="认证地区"> <el-button
v-if="scope.row.match_stateStr=='已认证'"
size="mini"
disabled
>去认证</el-button>
<el-button
v-else
size="mini"
type="success"
@click="toc(scope.$index, scope.row)"
>去认证</el-button>
</template>
</el-table-column> </el-table-column>
...@@ -187,6 +201,11 @@ import Candode from "../Core/candode" ...@@ -187,6 +201,11 @@ import Candode from "../Core/candode"
} }
}, },
methods: { methods: {
//去认证
toc(s,d){
console.log(d)
window.location.replace("../own/auth/lib/nocrentry.html?idcard="+d.idNumber+"&&name="+encodeURI(d.userName))
},
childByValue(val){ childByValue(val){
this.townList=val this.townList=val
}, },
...@@ -253,6 +272,7 @@ import Candode from "../Core/candode" ...@@ -253,6 +272,7 @@ import Candode from "../Core/candode"
}, },
current_change(ss){ current_change(ss){
Loading.service();
this.serchs(ss) this.serchs(ss)
}, },
// //
...@@ -305,6 +325,8 @@ import Candode from "../Core/candode" ...@@ -305,6 +325,8 @@ import Candode from "../Core/candode"
}, },
created(){ created(){
Loading.service();
this.serchs(1)
// for(var i in listtown){ // for(var i in listtown){
// this.list.push({ // this.list.push({
// value:listtown[i].town_name, // value:listtown[i].town_name,
......
...@@ -262,7 +262,7 @@ this.$api.getlist.selectflowState(data).then((res) => { ...@@ -262,7 +262,7 @@ this.$api.getlist.selectflowState(data).then((res) => {
console.log(d) console.log(d)
if(s==1){ if(s==1){
this.flowTitle="新增流程" this.flowTitle="新增流程"
for(var i =1;i<=6;i++){ for(var i =1;i<=8;i++){
this.titleList.push({ this.titleList.push({
label:this.getType(i), label:this.getType(i),
value:i+","+this.getType(i) value:i+","+this.getType(i)
......
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