Commit 11725cb2 by swl

gx

parent 9278c578
No preview for this file type
import {
api,
formatParams
} from "@/utils/axios";
import { api, formatParams } from "@/utils/axios";
/**
* 购房契税补贴住建局审核申请列表
* @param {*} params
* @returns
* @param {*} params
* @returns
*/
export function mattersHousingList(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/housing/mattersHousingList`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/housing/mattersHousingList`,
})
);
}
/**
* 购房契税补贴其他局审核申请列表
* @param {*} params
* @returns
* @param {*} params
* @returns
*/
export function mattersHousingReviewerList(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/housing/mattersHousingReviewerList`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/housing/mattersHousingReviewerList`,
})
);
}
/**
* 列表
*/
export function mattersParentList(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/parent/mattersParentList`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/parent/mattersParentList`,
})
);
}
/**
* 详情
*/
export function mattersGet(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/parent/mattersGet`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/parent/mattersGet`,
})
);
}
/**
* 修改状态
*/
export function mattersUpdateState(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/talent/mattersUpdateState`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/talent/mattersUpdateState`,
})
);
}
/**
......@@ -57,28 +64,34 @@ export function mattersUpdateState(params) {
* @returns <promise>
*/
export function mattersGuideList(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/talent/mattersGuideList`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/talent/mattersGuideList`,
})
);
}
/**
* 人才事项部门列表
*/
export function mattersDepartmentList(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/talent/mattersDepartmentList`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/talent/mattersDepartmentList`,
})
);
}
/**
* 查询人才政策指南详情
* @returns
* @returns
*/
export function mattersGuideGet(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/talent/mattersGuideGet`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/talent/mattersGuideGet`,
})
);
}
/**
......@@ -86,20 +99,24 @@ export function mattersGuideGet(params) {
* @returns <promise>
*/
export function mattersGuideAdd(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/talent/mattersGuideAdd`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/talent/mattersGuideAdd`,
})
);
}
/**
* 修改人才政策指南
* @param {*} params
* @returns
* @param {*} params
* @returns
*/
export function mattersGuideUpdate(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/talent/mattersGuideUpdate`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/talent/mattersGuideUpdate`,
})
);
}
/**
......@@ -107,78 +124,102 @@ export function mattersGuideUpdate(params) {
* @returns <promise>
*/
export function mattersGuideDelete(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/talent/mattersGuideDelete`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/talent/mattersGuideDelete`,
})
);
}
/**
* 购房契税补贴其他局审核状态修改
* @param {*} params
* @returns
* @param {*} params
* @returns
*/
export function mattersHousingReviewerUpdate(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/housing/mattersHousingReviewerUpdate`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/housing/mattersHousingReviewerUpdate`,
})
);
}
/**
* 购房契税补贴住建局修改状态
* @param {*} params
* @returns
* @param {*} params
* @returns
*/
export function mattersHousingUpdate(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/housing/mattersHousingUpdate`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/housing/mattersHousingUpdate`,
})
);
}
/**
* 记录
*/
export function mattersGetReason(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/talent/mattersGetReason`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/talent/mattersGetReason`,
})
);
}
/**
* 购房契税补贴申请详情
* @param {*} params
* @returns
* @param {*} params
* @returns
*/
export function mattersHousingGet(params) {
return api(Object.assign(formatParams('GET', params), {
url: `/admin-api/housing/mattersHousingGet`
}))
return api(
Object.assign(formatParams("GET", params), {
url: `/admin-api/housing/mattersHousingGet`,
})
);
}
/**
* 购房契税补贴其他局审核操作记录
* @param {*} params
* @returns
* @param {*} params
* @returns
*/
export function mattersHousingReason(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/housing/mattersHousingReason`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/housing/mattersHousingReason`,
})
);
}
/**
* 契税补贴数据推送(至市契税)
*/
export function dtSubsidy(params) {
return api(Object.assign(formatParams('POST', params), {
url: `/admin-api/deedTax/dtSubsidy`
}))
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/deedTax/dtSubsidy`,
})
);
}
/**
* 查询附件
*/
export function queryAttacheFile(params) {
return api(Object.assign(formatParams('GET', params), {
url: `/admin-api/housing/queryAttacheFile`
}))
}
\ No newline at end of file
export function queryAttacheFile(params) {
return api(
Object.assign(formatParams("GET", params), {
url: `/admin-api/housing/queryAttacheFile`,
})
);
}
// 人才政策契税补贴-审核撤回
export function revocation(params) {
return api(
Object.assign(formatParams("POST", params), {
url: `/admin-api/housing/revocation`,
})
);
}
......@@ -5,8 +5,8 @@ import { TokenKey } from "@/utils/auth";
const config = {
// proxy: "https://exam.smart-zj.cn:9100/exam/", // 新线上地址
proxy: "http://81.69.231.72:8881", // 测试地址
// proxy: "http://192.168.3.87:8881", //本地
// proxy: "http://81.69.231.72:8881", // 测试地址
proxy: "http://192.168.3.87:8881", //本地
// proxy: "https://exam.smart-zj.cn:9100/smartExam", // 新正式接口zs
// proxy: "http://81.69.231.72:9089/", // 测试地址
// proxy1: "http://81.69.231.72:8881/admin-api", // 测试地址
......
<template>
<div class="policy">
<div class="search-wrapper">
<el-form :inline="true" :model="searchForm" class="search_form" style="text-align: left">
<el-form
:inline="true"
:model="searchForm"
class="search_form"
style="text-align: left"
>
<el-form-item label="姓名">
<el-input v-model="searchForm.name" placeholder="请输入姓名" @keyup.enter.native="onSubmit"></el-input>
<el-input
v-model="searchForm.name"
placeholder="请输入姓名"
@keyup.enter.native="onSubmit"
></el-input>
</el-form-item>
<el-form-item label="手机号码">
<el-input v-model="searchForm.phone" placeholder="请输入手机号码" @keyup.enter.native="onSubmit"></el-input>
<el-input
v-model="searchForm.phone"
placeholder="请输入手机号码"
@keyup.enter.native="onSubmit"
></el-input>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="onSubmit">查询</el-button>
......@@ -14,54 +27,139 @@
<br />
<el-form-item label="状态" style="margin-top: 10px">
<el-radio-group v-model="searchForm.state" @change="onSubmit">
<el-radio :label="item.state" v-for="item in stateList" :key="item.state">{{ item.stateName }}</el-radio>
<el-radio
:label="item.state"
v-for="item in stateList"
:key="item.state"
>{{ item.stateName }}</el-radio
>
</el-radio-group>
</el-form-item>
</el-form>
</div>
<div class="table-wrapper">
<table-template :tableData="tableData" :tableColumns="tableColumns" :loading="loading" :pagination="pagination"
@Jump="jumpPage">
<table-template
:tableData="tableData"
:tableColumns="tableColumns"
:loading="loading"
:pagination="pagination"
@Jump="jumpPage"
>
<el-table-column slot="housingType" label="事项类型" align="center">
<template slot-scope="scope">
<el-tag>{{ scope.row.housingType == 2 ? '住房' : scope.row.housingType == 3 ? '商办' : '-' }}</el-tag>
<el-tag>{{
scope.row.housingType == 2
? "住房"
: scope.row.housingType == 3
? "商办"
: "-"
}}</el-tag>
</template>
</el-table-column>
<el-table-column width="120" label="状态" align="center">
<template slot-scope="scope">
<el-tag type="warning" v-if="scope.row.housingState === 0 && scope.row.state !== 8">待审核</el-tag>
<el-tag type="warning" v-if="scope.row.housingState === 0 && scope.row.state === 8">待复审</el-tag>
<el-tag type="success" v-if="scope.row.housingState === 1">初审通过</el-tag>
<el-tag type="warning" v-if="scope.row.housingState === 2">待终审</el-tag>
<el-tag type="success" v-if="scope.row.housingState === 3">已完结</el-tag>
<el-tag type="danger" v-if="scope.row.housingState === 4">已驳回</el-tag>
<el-tag type="info" v-if="scope.row.housingState === 5">已撤销</el-tag>
<el-tag type="warning" v-if="scope.row.housingState === 6">资料审核</el-tag>
<el-tag type="success" v-if="scope.row.housingState === 7">发放补贴</el-tag>
<el-tag
type="warning"
v-if="scope.row.housingState === 0 && scope.row.state !== 8"
>待审核</el-tag
>
<el-tag
type="warning"
v-if="scope.row.housingState === 0 && scope.row.state === 8"
>待复审</el-tag
>
<el-tag type="success" v-if="scope.row.housingState === 1"
>初审通过</el-tag
>
<el-tag type="warning" v-if="scope.row.housingState === 2"
>待终审</el-tag
>
<el-tag type="success" v-if="scope.row.housingState === 3"
>已完结</el-tag
>
<el-tag type="danger" v-if="scope.row.housingState === 4"
>已驳回</el-tag
>
<el-tag type="info" v-if="scope.row.housingState === 5"
>已撤销</el-tag
>
<el-tag type="warning" v-if="scope.row.housingState === 6"
>资料审核</el-tag
>
<el-tag type="success" v-if="scope.row.housingState === 7"
>发放补贴</el-tag
>
</template>
</el-table-column>
<el-table-column fixed="right" label="操作" width="380" align="left">
<template slot-scope="scope">
<el-button type="primary" size="mini" round @click="view(scope.row)">查看</el-button>
<el-button type="primary" size="mini" round @click="record(scope.row)">记录</el-button>
<el-button type="primary" size="mini" round @click="view(scope.row)"
>查看</el-button
>
<el-button
type="primary"
size="mini"
round
@click="record(scope.row)"
>记录</el-button
>
<el-button
type="danger"
size="mini"
round
v-if="scope.row.state === 8 || scope.row.state === 9"
@click="revocationHandle(scope.row)"
>撤回</el-button
>
<!-- 申请的单子有通过拒绝-->
<el-button v-if="scope.row.state === 0" type="success" size="mini" round @click="pass(scope.row)">通过
<el-button
v-if="scope.row.state === 0"
type="success"
size="mini"
round
@click="pass(scope.row)"
>通过
</el-button>
<el-button v-if="scope.row.state === 0" type="danger" size="mini" round @click="deny(scope.row)">拒绝
<el-button
v-if="scope.row.state === 0"
type="danger"
size="mini"
round
@click="deny(scope.row)"
>拒绝
</el-button>
<el-button v-if="
scope.row.housingState === 3 &&
searchForm.departmentCode === '10000031'
" type="success" size="mini" round @click="dispatch(scope.row)">发放补贴</el-button>
<el-button v-if="
scope.row.attachedFileMark === true &&
searchForm.departmentCode === '10000031'
" type="info" size="mini" round @click="viewUrl(scope.row)">查看附件</el-button>
<el-button
v-if="
scope.row.housingState === 3 &&
searchForm.departmentCode === '10000031'
"
type="success"
size="mini"
round
@click="dispatch(scope.row)"
>发放补贴</el-button
>
<el-button
v-if="
scope.row.attachedFileMark === true &&
searchForm.departmentCode === '10000031'
"
type="info"
size="mini"
round
@click="viewUrl(scope.row)"
>查看附件</el-button
>
</template>
</el-table-column>
</table-template>
</div>
<el-dialog title="申报详情" :visible.sync="viewShow" width="800px" :close-on-press-escape="false">
<el-dialog
title="申报详情"
:visible.sync="viewShow"
width="800px"
:close-on-press-escape="false"
>
<div class="content">
<!-- 新增功能start -->
<el-table :data="totalList" style="width: 100%">
......@@ -73,18 +171,41 @@
</el-table>
<div class="cell">
<p class="label">是否享受过相关政策</p>
<p :class="['value', viewDetail.enjoyFlag == true ? 'value2' : 'value1']">{{ viewDetail.enjoyFlag ? '否' : '是'
}}</p>
<p
:class="[
'value',
viewDetail.enjoyFlag == true ? 'value2' : 'value1',
]"
>
{{ viewDetail.enjoyFlag ? "否" : "是" }}
</p>
</div>
<div class="cell">
<p class="label">市契税系统</p>
<p class="value">{{ viewDetail.tradeStatus === 0 ? '未支付' : viewDetail.tradeStatus === 1 ? '已支付' :
viewDetail.tradeStatus === 2 ? '不予发放' : '未审核' }}</p>
<p class="value">
{{
viewDetail.tradeStatus === 0
? "未支付"
: viewDetail.tradeStatus === 1
? "已支付"
: viewDetail.tradeStatus === 2
? "不予发放"
: "未审核"
}}
</p>
</div>
<!-- 新增功能end -->
<div class="cell">
<p class="label">事项类型</p>
<p class="value">{{ viewDetail.housingType == 2 ? '住房' : viewDetail.housingType == 3 ? '商办' : '-' }}</p>
<p class="value">
{{
viewDetail.housingType == 2
? "住房"
: viewDetail.housingType == 3
? "商办"
: "-"
}}
</p>
</div>
<div class="cell">
<p class="label">事项名称</p>
......@@ -146,61 +267,100 @@
<p class="label">所属银行</p>
<p class="value">{{ viewDetail.bank }}</p>
</div>
<div class="cell" v-if="viewDetail.bankPicture && viewDetail.bankPicture.length > 0">
<div
class="cell"
v-if="viewDetail.bankPicture && viewDetail.bankPicture.length > 0"
>
<p class="label">银行卡照片</p>
<p class="value">
<el-image v-for="(item, index) in viewDetail.bankPicture" :key="index"
style="width: 100px; height: 100px; margin-right: 10px" :src="item.picture" :z-index="7777777"
:preview-src-list="[item.picture]">
<el-image
v-for="(item, index) in viewDetail.bankPicture"
:key="index"
style="width: 100px; height: 100px; margin-right: 10px"
:src="item.picture"
:z-index="7777777"
:preview-src-list="[item.picture]"
>
</el-image>
</p>
</div>
<div class="cell" v-if="viewDetail.idCardPicture && viewDetail.idCardPicture.length > 0">
<div
class="cell"
v-if="viewDetail.idCardPicture && viewDetail.idCardPicture.length > 0"
>
<p class="label">身份证照片</p>
<p class="value">
<el-image v-for="(item, index) in viewDetail.idCardPicture" :key="index"
style="width: 100px; height: 100px; margin-right: 10px" :src="item.picture" :z-index="7777777"
:preview-src-list="[item.picture]">
<el-image
v-for="(item, index) in viewDetail.idCardPicture"
:key="index"
style="width: 100px; height: 100px; margin-right: 10px"
:src="item.picture"
:z-index="7777777"
:preview-src-list="[item.picture]"
>
</el-image>
</p>
</div>
<div class="cell">
<p class="label">商品房买卖合同3张</p>
<p class="value">
<el-image v-for="(item, index) in viewDetail.contract" :key="index"
style="width: 100px; height: 100px; margin-right: 10px" :src="item.picture" :z-index="7777777"
:preview-src-list="[item.picture]">
<el-image
v-for="(item, index) in viewDetail.contract"
:key="index"
style="width: 100px; height: 100px; margin-right: 10px"
:src="item.picture"
:z-index="7777777"
:preview-src-list="[item.picture]"
>
</el-image>
</p>
</div>
<div class="cell">
<p class="label">不动产权证书</p>
<p class="value">
<el-image style="width: 100px; height: 100px" :src="viewDetail.certificate" :z-index="7777777"
:preview-src-list="[viewDetail.certificate]">
<el-image
style="width: 100px; height: 100px"
:src="viewDetail.certificate"
:z-index="7777777"
:preview-src-list="[viewDetail.certificate]"
>
</el-image>
</p>
</div>
<div class="cell">
<p class="label">契税完税凭证</p>
<p class="value">
<el-image style="width: 100px; height: 100px" :src="viewDetail.voucher" :z-index="7777777"
:preview-src-list="[viewDetail.voucher]">
<el-image
style="width: 100px; height: 100px"
:src="viewDetail.voucher"
:z-index="7777777"
:preview-src-list="[viewDetail.voucher]"
>
</el-image>
</p>
</div>
<div class="cell" v-if="viewDetail.labour.length > 0">
<p class="label">上传一年以上劳动合同的上传项目</p>
<p class="value">
<el-image v-for="(item, index) in viewDetail.labour" :key="index"
style="width: 100px; height: 100px; margin-right: 10px" :src="item.picture" :z-index="7777777"
:preview-src-list="[item.picture]">
<el-image
v-for="(item, index) in viewDetail.labour"
:key="index"
style="width: 100px; height: 100px; margin-right: 10px"
:src="item.picture"
:z-index="7777777"
:preview-src-list="[item.picture]"
>
</el-image>
</p>
</div>
</div>
</el-dialog>
<el-dialog title="操作记录" :visible.sync="recordShow" width="800px" :close-on-press-escape="false">
<el-dialog
title="操作记录"
:visible.sync="recordShow"
width="800px"
:close-on-press-escape="false"
>
<div class="content">
<div class="cell" v-for="item in recordList" :key="item.createTime">
<p class="label" style="margin-right: 20px">
......@@ -215,28 +375,66 @@
<p v-if="record.length === 0">暂无记录~</p>
</div>
</el-dialog>
<el-dialog title="查看附件" :visible.sync="showUrl" width="500px" :close-on-press-escape="false">
<div style="margin: 0 0 0 10px;font-weight: 700;">图片附件:</div>
<div class="content" style="display:flex;flex-wrap:wrap;" v-if="pictureUrlList.length > 0">
<el-dialog
title="查看附件"
:visible.sync="showUrl"
width="500px"
:close-on-press-escape="false"
>
<div style="margin: 0 0 0 10px; font-weight: 700">图片附件:</div>
<div
class="content"
style="display: flex; flex-wrap: wrap"
v-if="pictureUrlList.length > 0"
>
<div v-for="(item, index) in pictureUrlList" :key="index">
<el-image style="width: 95px; height: 95px; margin: 10px;" :src="item.file"
:preview-src-list="[item.file]"></el-image>
<el-image
style="width: 95px; height: 95px; margin: 10px"
:src="item.file"
:preview-src-list="[item.file]"
></el-image>
</div>
</div>
<div class="content" style="display:flex;justify-content: center;" v-if="pictureUrlList.length == 0">
<div
class="content"
style="display: flex; justify-content: center"
v-if="pictureUrlList.length == 0"
>
<el-empty :image-size="50"></el-empty>
</div>
<div style="margin: 0 0 0 10px;font-weight: 700;">文件附件:</div>
<div class="content" style="display:flex;flex-direction:column;flex-wrap:wrap;" v-if="fileUrlList.length > 0">
<div v-for="(item, index) in fileUrlList" :key="index"
style="margin: 10px 10px 0 10px; display:flex; align-items:center; justify-content: space-between;">
<p class="label" style="margin: 0;text-align:center;">{{ item.fileExplain }}</p>
<el-button size="mini" type="primary" @click="
download(item.file)
" class="down-text">下载附件</el-button>
<div style="margin: 0 0 0 10px; font-weight: 700">文件附件:</div>
<div
class="content"
style="display: flex; flex-direction: column; flex-wrap: wrap"
v-if="fileUrlList.length > 0"
>
<div
v-for="(item, index) in fileUrlList"
:key="index"
style="
margin: 10px 10px 0 10px;
display: flex;
align-items: center;
justify-content: space-between;
"
>
<p class="label" style="margin: 0; text-align: center">
{{ item.fileExplain }}
</p>
<el-button
size="mini"
type="primary"
@click="download(item.file)"
class="down-text"
>下载附件</el-button
>
</div>
</div>
<div class="content" style="display:flex;justify-content: center;" v-if="fileUrlList.length == 0">
<div
class="content"
style="display: flex; justify-content: center"
v-if="fileUrlList.length == 0"
>
<el-empty :image-size="50"></el-empty>
</div>
</el-dialog>
......@@ -254,7 +452,8 @@ import {
mattersHousingGet,
mattersHousingReason,
mattersGetReason,
queryAttacheFile
queryAttacheFile,
revocation,
} from "@/api/policy";
export default {
......@@ -269,81 +468,81 @@ export default {
name: "",
phone: "",
state: "",
departmentCode: ""
departmentCode: "",
},
stateList: [
{
state: "",
stateName: "全部",
type: ""
type: "",
},
{
state: 0,
stateName: "待审核",
type: "warning"
type: "warning",
},
{
state: 8,
stateName: "初审通过",
type: "success"
type: "success",
},
{
state: 9,
stateName: "已驳回",
type: "danger"
}
type: "danger",
},
],
stateList1: [
{
state: 0,
stateName: "待审核",
type: "warning"
type: "warning",
},
{
state: 1,
stateName: "待复审",
type: "warning"
type: "warning",
},
{
state: 6,
stateName: "资料审核",
type: "warning"
type: "warning",
},
{
state: 2,
stateName: "待终审",
type: "warning"
type: "warning",
},
{
state: 3,
stateName: "已完结",
type: "success"
type: "success",
},
{
state: 4,
stateName: "已驳回",
type: "danger"
type: "danger",
},
{
state: 5,
stateName: "已撤销",
type: "info"
type: "info",
},
{
state: 7,
stateName: "发放补贴",
type: "success"
type: "success",
},
{
state: 8,
stateName: "初审通过",
type: "success"
type: "success",
},
{
state: 9,
stateName: "已驳回",
type: "danger"
}
type: "danger",
},
],
loading: false,
tableData: [],
......@@ -351,43 +550,43 @@ export default {
{
key: "code",
label: "申请编号",
width: 200
width: 200,
},
{
key: "name",
label: "姓名"
label: "姓名",
},
{
key: "phone",
label: "手机号"
label: "手机号",
},
{
key: "housingType",
label: "事项类型",
type: "slot"
type: "slot",
},
{
key: "guideName",
label: "事项名称"
label: "事项名称",
},
{
key: "departmentName",
label: "实施主体"
label: "实施主体",
},
{
key: "createTime",
label: "更新时间",
width: 180
}
width: 180,
},
],
pagination: {
total: 0,
pageSize: 10,
currentPage: 1
currentPage: 1,
},
viewShow: false,
viewDetail: {
labour: []
labour: [],
},
recordShow: false,
recordList: [],
......@@ -397,53 +596,74 @@ export default {
realName: "",
category: "",
contentName: "",
unitName: ""
unitName: "",
};
},
watch: {
$route() {
if (this.$route) {
this.userName = localStorage.getItem('userName');
this.userName = localStorage.getItem("userName");
// 10000031 财政局code 10000032 税务局code 10000033 不动产登记中心code 10000023 人社局code
this.searchForm.departmentCode = this.$route.query.departmentCode;
this.searchForm.name = ''
this.searchForm.phone = ''
this.searchForm.state = ''
this.searchForm.name = "";
this.searchForm.phone = "";
this.searchForm.state = "";
this.init();
}
}
},
},
methods: {
download(url) {
console.log(url)
let fileType = url.split(".")[url.split('.').length - 1]
if (fileType == 'pdf' || fileType == 'PDF') {
window.open(url)
console.log(url);
let fileType = url.split(".")[url.split(".").length - 1];
if (fileType == "pdf" || fileType == "PDF") {
window.open(url);
} else {
window.location.href = url
window.location.href = url;
}
},
viewUrl(row) {
console.log(row)
console.log(row);
queryAttacheFile({ code: row.code }).then((res) => {
console.log(res)
console.log(res);
if (res.success) {
this.pictureUrlList = res.data.filter((item) => {
let fileType = item.fileExplain.split(".")[item.fileExplain.split('.').length - 1]
return fileType == 'jpg' || fileType == 'jpeg' || fileType == 'png'
})
let fileType =
item.fileExplain.split(".")[
item.fileExplain.split(".").length - 1
];
return fileType == "jpg" || fileType == "jpeg" || fileType == "png";
});
this.fileUrlList = res.data.filter((item) => {
let fileType = item.fileExplain.split(".")[item.fileExplain.split('.').length - 1]
return fileType != 'jpg' && fileType != 'jpeg' && fileType != 'png'
})
console.log(this.pictureUrlList)
console.log(this.fileUrlList)
this.showUrl = true
let fileType =
item.fileExplain.split(".")[
item.fileExplain.split(".").length - 1
];
return fileType != "jpg" && fileType != "jpeg" && fileType != "png";
});
console.log(this.pictureUrlList);
console.log(this.fileUrlList);
this.showUrl = true;
} else {
this.$message.error(res.msg || '查询失败');
this.$message.error(res.msg || "查询失败");
}
})
});
},
revocationHandle(row) {
revocation({
code: row.code,
reviewerId: row.reviewerId,
}).then((res) => {
if (res.success) {
this.$message.success("撤回成功");
this.init();
} else {
this.$message.warning(res.msg || "撤回失败");
}
});
},
init() {
this.tableData = [];
this.loading = true;
......@@ -453,23 +673,23 @@ export default {
state: this.searchForm.state,
departmentCode: this.searchForm.departmentCode,
pageNum: this.pagination.currentPage,
pageSize: this.pagination.pageSize
pageSize: this.pagination.pageSize,
};
mattersHousingReviewerList(parmas).then(res => {
mattersHousingReviewerList(parmas).then((res) => {
this.loading = false;
if (res.success) {
this.pagination.total = res.data.total;
if (res.data.total) {
this.tableData = res.data.list.map(item => {
this.tableData = res.data.list.map((item) => {
item.stateName = this.getSatusArr(item.state).stateName;
item.type = this.getSatusArr(item.state).type;
return item;
});
if (localStorage.getItem('userName') == 'admin') {
this.tableData = changeList(this.tableData)
if (localStorage.getItem("userName") == "admin") {
this.tableData = changeList(this.tableData);
}
} else {
this.tableData = []
this.tableData = [];
}
}
});
......@@ -484,60 +704,56 @@ export default {
view(row) {
let params = {
code: row.code,
matterType: row.matterType
matterType: row.matterType,
};
let params2 = {
appId: "1234",
code: row.code,
name: this.userName
name: this.userName,
};
// 查询四个部门的记录 mattersHousingReason
mattersHousingReason(params2).then(res => {
mattersHousingReason(params2).then((res) => {
this.examineList = res.data;
this.examineList.forEach(item => {
this.examineList.forEach((item) => {
item.state == 8 ? (item.state = "通过") : (item.state = "拒绝");
});
this.totalList = this.examineList.concat(this.housingList);
});
// // 查询最后审批的记录
mattersGetReason(params2).then(res => {
mattersGetReason(params2).then((res) => {
this.housingList = res.data;
this.housingList.forEach(item => {
this.housingList.forEach((item) => {
item.state == 1 ||
item.state == 2 ||
item.state == 3 ||
item.state == 6 ||
item.state == 7
item.state == 2 ||
item.state == 3 ||
item.state == 6 ||
item.state == 7
? (item.state = "通过")
: (item.state = "拒绝");
});
this.totalList = this.examineList.concat(this.housingList);
// console.log("this.totalList---", this.totalList);
});
mattersHousingGet(params).then(res => {
mattersHousingGet(params).then((res) => {
console.log("res11111---", res);
get({ talentCode: res.data.talentCode }).then(res => {
get({ talentCode: res.data.talentCode }).then((res) => {
this.category = res.data.category;
this.contentName = res.data.contentName;
this.unitName = res.data.unitName;
});
this.viewDetail = res.data;
if (localStorage.getItem('userName') == 'admin') {
this.viewDetail.name = setName(this.viewDetail.name)
this.viewDetail.phone = setTel(this.viewDetail.phone)
this.viewDetail.idCard = setCertNo(this.viewDetail.idCard)
if (localStorage.getItem("userName") == "admin") {
this.viewDetail.name = setName(this.viewDetail.name);
this.viewDetail.phone = setTel(this.viewDetail.phone);
this.viewDetail.idCard = setCertNo(this.viewDetail.idCard);
}
this.viewDetail.idCardPicture = res.data.pictureList.filter(item => {
return (
item.pictureType === 1
)
this.viewDetail.idCardPicture = res.data.pictureList.filter((item) => {
return item.pictureType === 1;
});
this.viewDetail.bankPicture = res.data.pictureList.filter((item) => {
return (
item.pictureType === 8
);
return item.pictureType === 8;
});
this.viewDetail.contract = res.data.pictureList.filter(item => {
this.viewDetail.contract = res.data.pictureList.filter((item) => {
return (
item.pictureType !== 1 &&
item.pictureType !== 5 &&
......@@ -546,14 +762,14 @@ export default {
item.pictureType !== 8
);
});
this.viewDetail.certificate = res.data.pictureList.find(item => {
this.viewDetail.certificate = res.data.pictureList.find((item) => {
return item.pictureType === 5;
}).picture;
this.viewDetail.voucher = res.data.pictureList.find(item => {
this.viewDetail.voucher = res.data.pictureList.find((item) => {
return item.pictureType === 6;
}).picture;
this.viewDetail.labour = [];
res.data.pictureList.map(item => {
res.data.pictureList.map((item) => {
if (item.pictureType == 7) {
return this.viewDetail.labour.push(item);
}
......@@ -563,13 +779,13 @@ export default {
},
record(row) {
// console.log();
mattersHousingReason({ code: row.code }).then(res => {
mattersHousingReason({ code: row.code }).then((res) => {
let housingReason = res.data;
mattersGetReason({ code: row.code }).then(res => {
mattersGetReason({ code: row.code }).then((res) => {
// console.log('最后的审核记录res---',res);
let getReason = res.data;
let reason = housingReason.concat(getReason);
this.recordList = reason.map(item => {
this.recordList = reason.map((item) => {
item.stateName = this.getSatusArr1(item.state)
? this.getSatusArr1(item.state).stateName
: "未知状态";
......@@ -584,21 +800,21 @@ export default {
this.$confirm(`确定通要发放该申请的补贴吗?`, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
type: "warning",
})
.then(() => {
let params = {
code: row.code,
name: this.userName,
state: 7,
reviewerId: row.reviewerId
reviewerId: row.reviewerId,
};
mattersHousingUpdate(params).then(res => {
mattersHousingUpdate(params).then((res) => {
if (res.success) {
this.$message.success(`发放成功`);
this.init();
} else {
this.$message.error(res.msg || '审核失败');
this.$message.error(res.msg || "审核失败");
}
});
})
......@@ -612,7 +828,7 @@ export default {
cancelButtonText: "取消",
inputPlaceholder: "请输入原因",
inputType: "textarea",
type: "warning"
type: "warning",
})
.then(({ value }) => {
if (!value) {
......@@ -624,9 +840,9 @@ export default {
name: this.userName,
state: 8,
reviewerId: row.reviewerId,
reason: value
reason: value,
};
mattersHousingReviewerUpdate(params).then(res => {
mattersHousingReviewerUpdate(params).then((res) => {
if (res.success) {
this.$message.success(`初审通过`);
this.init();
......@@ -644,7 +860,7 @@ export default {
confirmButtonText: "确定",
cancelButtonText: "取消",
inputPlaceholder: "请输入原因",
inputType: "textarea"
inputType: "textarea",
})
.then(({ value }) => {
if (!value) {
......@@ -656,10 +872,10 @@ export default {
name: this.userName,
state: 9,
reviewerId: row.reviewerId,
reason: value
reason: value,
};
mattersHousingReviewerUpdate(params).then(res => {
mattersHousingReviewerUpdate(params).then((res) => {
console.log("res-", res);
this.$message.success(`初审驳回成功`);
......@@ -671,22 +887,22 @@ export default {
});
},
getSatusArr(state) {
return this.stateList.filter(item => {
return this.stateList.filter((item) => {
return item.state === state;
})[0];
},
getSatusArr1(state) {
return this.stateList1.filter(item => {
return this.stateList1.filter((item) => {
return item.state === state;
})[0];
}
},
},
created() {
this.userName = localStorage.getItem('userName');
this.userName = localStorage.getItem("userName");
// 10000031 财政局code 10000032 税务局code 10000033 不动产登记中心code 10000023 人社局code
this.searchForm.departmentCode = this.$route.query.departmentCode;
this.init();
}
},
};
</script>
......
<template>
<div class="policy">
<div class="search-wrapper">
<el-form :inline="true" :model="searchForm" class="search_form" style="text-align: left">
<el-form
:inline="true"
:model="searchForm"
class="search_form"
style="text-align: left"
>
<el-form-item label="姓名">
<el-input v-model="searchForm.name" size="small" placeholder="请输入姓名" @keyup.enter.native="onSubmit"></el-input>
<el-input
v-model="searchForm.name"
size="small"
placeholder="请输入姓名"
@keyup.enter.native="onSubmit"
></el-input>
</el-form-item>
<el-form-item label="手机号码">
<el-input v-model="searchForm.phone" size="small" placeholder="请输入手机号码"
@keyup.enter.native="onSubmit"></el-input>
<el-input
v-model="searchForm.phone"
size="small"
placeholder="请输入手机号码"
@keyup.enter.native="onSubmit"
></el-input>
</el-form-item>
<el-form-item>
<el-button type="primary" size="small" @click="onSubmit">查询</el-button>
<el-button type="primary" size="small" @click="onSubmit"
>查询</el-button
>
</el-form-item>
<br />
<el-form-item label="状态" style="margin-top: 10px">
<el-radio-group v-model="searchForm.state" @change="onSubmit">
<el-radio :label="item.state" v-for="item in stateList" :key="item.state">{{ item.stateName }}</el-radio>
<el-radio
:label="item.state"
v-for="item in stateList"
:key="item.state"
>{{ item.stateName }}</el-radio
>
</el-radio-group>
</el-form-item>
</el-form>
</div>
<div class="table-wrapper">
<table-template :tableData="tableData" :tableColumns="tableColumns" :loading="loading" :pagination="pagination"
@Jump="jumpPage">
<table-template
:tableData="tableData"
:tableColumns="tableColumns"
:loading="loading"
:pagination="pagination"
@Jump="jumpPage"
>
<el-table-column slot="housingType" label="事项类型" align="center">
<template slot-scope="scope">
<el-tag>{{ scope.row.housingType == 2 ? '住房' : scope.row.housingType == 3 ? '商办' : '-' }}</el-tag>
<el-tag>{{
scope.row.housingType == 2
? "住房"
: scope.row.housingType == 3
? "商办"
: "-"
}}</el-tag>
</template>
</el-table-column>
<el-table-column width="120" key="stateName" prop="stateName" label="状态" align="center">
<el-table-column
width="120"
key="stateName"
prop="stateName"
label="状态"
align="center"
>
<template slot-scope="scope">
<el-tag :type="scope.row.type">{{ scope.row.stateName }}</el-tag>
</template>
</el-table-column>
<el-table-column fixed="right" label="操作" width="380" align="left">
<template slot-scope="scope">
<el-button type="primary" size="mini" round @click="view(scope.row)">查看</el-button>
<el-button type="primary" size="mini" round @click="record(scope.row)">记录</el-button>
<el-button type="primary" size="mini" round @click="view(scope.row)"
>查看</el-button
>
<el-button
type="primary"
size="mini"
round
@click="record(scope.row)"
>记录</el-button
>
<el-button
type="danger"
size="mini"
round
v-if="
scope.row.state === 6 ||
scope.row.state === 2 ||
scope.row.state === 3 ||
scope.row.state === 4
"
@click="revocationHandle(scope.row)"
>撤回</el-button
>
<!-- 待复审的单子有通过拒绝-->
<template v-if="scope.row.state === 1">
<el-button type="success" size="mini" round @click="pass(scope.row)">复审通过</el-button>
<el-button type="danger" size="mini" round @click="deny(scope.row)">复审拒绝</el-button>
<el-button
type="success"
size="mini"
round
@click="pass(scope.row)"
>复审通过</el-button
>
<el-button
type="danger"
size="mini"
round
@click="deny(scope.row)"
>复审拒绝</el-button
>
</template>
<template v-if="scope.row.state === 2">
<el-button type="success" size="mini" round @click="passFinal(scope.row)">终审通过</el-button>
<el-button type="danger" size="mini" round @click="deny(scope.row)">终审拒绝</el-button>
<el-button
type="success"
size="mini"
round
@click="passFinal(scope.row)"
>终审通过</el-button
>
<el-button
type="danger"
size="mini"
round
@click="deny(scope.row)"
>终审拒绝</el-button
>
</template>
<el-button v-if="
scope.row.attachedFileMark === true &&
searchForm.departmentCode === '10000027'
" type="info" size="mini" round @click="viewUrl(scope.row)">查看附件</el-button>
<el-button
v-if="
scope.row.attachedFileMark === true &&
searchForm.departmentCode === '10000027'
"
type="info"
size="mini"
round
@click="viewUrl(scope.row)"
>查看附件</el-button
>
</template>
</el-table-column>
</table-template>
</div>
<el-dialog title="申报详情" :visible.sync="viewShow" width="800px" :close-on-press-escape="false">
<el-dialog
title="申报详情"
:visible.sync="viewShow"
width="800px"
:close-on-press-escape="false"
>
<div class="content">
<!-- 新增start -->
<el-table :data="totalList" style="width: 100%">
......@@ -66,18 +162,41 @@
</el-table>
<div class="cell">
<p class="label">是否享受过相关政策</p>
<p :class="['value', viewDetail.enjoyFlag == true ? 'value2' : 'value1']">{{ viewDetail.enjoyFlag ? '否' : '是'
}}</p>
<p
:class="[
'value',
viewDetail.enjoyFlag == true ? 'value2' : 'value1',
]"
>
{{ viewDetail.enjoyFlag ? "否" : "是" }}
</p>
</div>
<div class="cell">
<p class="label">市契税系统</p>
<p class="value">{{ viewDetail.tradeStatus === 0 ? '未支付' : viewDetail.tradeStatus === 1 ? '已支付' :
viewDetail.tradeStatus === 2 ? '不予发放' : '未审核' }}</p>
<p class="value">
{{
viewDetail.tradeStatus === 0
? "未支付"
: viewDetail.tradeStatus === 1
? "已支付"
: viewDetail.tradeStatus === 2
? "不予发放"
: "未审核"
}}
</p>
</div>
<!-- 新增end -->
<div class="cell">
<p class="label">事项类型</p>
<p class="value">{{ viewDetail.housingType == 2 ? '住房' : viewDetail.housingType == 3 ? '商办' : '-' }}</p>
<p class="value">
{{
viewDetail.housingType == 2
? "住房"
: viewDetail.housingType == 3
? "商办"
: "-"
}}
</p>
</div>
<div class="cell">
<p class="label">事项名称</p>
......@@ -143,61 +262,100 @@
<p class="label">所属银行</p>
<p class="value">{{ viewDetail.bank }}</p>
</div>
<div class="cell" v-if="viewDetail.bankPicture && viewDetail.bankPicture.length > 0">
<div
class="cell"
v-if="viewDetail.bankPicture && viewDetail.bankPicture.length > 0"
>
<p class="label">银行卡照片</p>
<p class="value">
<el-image v-for="(item, index) in viewDetail.bankPicture" :key="index"
style="width: 100px; height: 100px; margin-right: 10px" :src="item.picture" :z-index="7777777"
:preview-src-list="[item.picture]">
<el-image
v-for="(item, index) in viewDetail.bankPicture"
:key="index"
style="width: 100px; height: 100px; margin-right: 10px"
:src="item.picture"
:z-index="7777777"
:preview-src-list="[item.picture]"
>
</el-image>
</p>
</div>
<div class="cell" v-if="viewDetail.idCardPicture && viewDetail.idCardPicture.length > 0">
<div
class="cell"
v-if="viewDetail.idCardPicture && viewDetail.idCardPicture.length > 0"
>
<p class="label">身份证照片</p>
<p class="value">
<el-image v-for="(item, index) in viewDetail.idCardPicture" :key="index"
style="width: 100px; height: 100px; margin-right: 10px" :src="item.picture" :z-index="7777777"
:preview-src-list="[item.picture]">
<el-image
v-for="(item, index) in viewDetail.idCardPicture"
:key="index"
style="width: 100px; height: 100px; margin-right: 10px"
:src="item.picture"
:z-index="7777777"
:preview-src-list="[item.picture]"
>
</el-image>
</p>
</div>
<div class="cell">
<p class="label">商品房买卖合同3张</p>
<p class="value">
<el-image v-for="(item, index) in viewDetail.contract" :key="index"
style="width: 100px; height: 100px; margin-right: 10px" :src="item.picture" :z-index="7777777"
:preview-src-list="[item.picture]">
<el-image
v-for="(item, index) in viewDetail.contract"
:key="index"
style="width: 100px; height: 100px; margin-right: 10px"
:src="item.picture"
:z-index="7777777"
:preview-src-list="[item.picture]"
>
</el-image>
</p>
</div>
<div class="cell">
<p class="label">不动产权证书</p>
<p class="value">
<el-image style="width: 100px; height: 100px" :src="viewDetail.certificate" :z-index="7777777"
:preview-src-list="[viewDetail.certificate]">
<el-image
style="width: 100px; height: 100px"
:src="viewDetail.certificate"
:z-index="7777777"
:preview-src-list="[viewDetail.certificate]"
>
</el-image>
</p>
</div>
<div class="cell">
<p class="label">契税完税凭证</p>
<p class="value">
<el-image style="width: 100px; height: 100px" :src="viewDetail.voucher" :z-index="7777777"
:preview-src-list="[viewDetail.voucher]">
<el-image
style="width: 100px; height: 100px"
:src="viewDetail.voucher"
:z-index="7777777"
:preview-src-list="[viewDetail.voucher]"
>
</el-image>
</p>
</div>
<div class="cell" v-if="viewDetail.labour.length > 0">
<p class="label">上传一年以上劳动合同的项目</p>
<p class="value">
<el-image v-for="(item, index) in viewDetail.labour" :key="index"
style="width: 100px; height: 100px; margin-right: 10px" :src="item.picture" :z-index="7777777"
:preview-src-list="[item.picture]">
<el-image
v-for="(item, index) in viewDetail.labour"
:key="index"
style="width: 100px; height: 100px; margin-right: 10px"
:src="item.picture"
:z-index="7777777"
:preview-src-list="[item.picture]"
>
</el-image>
</p>
</div>
</div>
</el-dialog>
<el-dialog title="操作记录" :visible.sync="recordShow" width="800px" :close-on-press-escape="false">
<el-dialog
title="操作记录"
:visible.sync="recordShow"
width="800px"
:close-on-press-escape="false"
>
<div class="content">
<div class="cell" v-for="item in recordList" :key="item.createTime">
<p class="label" style="margin-right: 20px">
......@@ -212,19 +370,42 @@
<p v-if="record.length === 0">暂无记录~</p>
</div>
</el-dialog>
<el-dialog title="终审通过" :visible.sync="finalShow" width="500px" :close-on-press-escape="false">
<el-dialog
title="终审通过"
:visible.sync="finalShow"
width="500px"
:close-on-press-escape="false"
>
<div class="content">
<div class="cell1">
<p class="label" style="margin: 0 0 10px 0">请输入原因:</p>
<el-input type="textarea" placeholder="请输入通过原因" v-model="textarea" maxlength="50" show-word-limit></el-input>
<el-input
type="textarea"
placeholder="请输入通过原因"
v-model="textarea"
maxlength="50"
show-word-limit
></el-input>
</div>
<div class="cell1">
<p class="label">请上传附件:</p>
<el-upload class="upload-demo" name="file" action="string" :limit="1" :show-file-list="true"
:on-remove="handleRemove" :on-error="handleError" :on-exceed="handleExceed" ref="dmtUploadFile"
:file-list="fileList" :http-request="uploadFile">
<el-upload
class="upload-demo"
name="file"
action="string"
:limit="1"
:show-file-list="true"
:on-remove="handleRemove"
:on-error="handleError"
:on-exceed="handleExceed"
ref="dmtUploadFile"
:file-list="fileList"
:http-request="uploadFile"
>
<el-button size="small" type="primary">点击上传</el-button>
<div slot="tip" class="el-upload__tip" style="color: #F56C6C">支持上传jpg/png/doc/docx/xls/xlsx/pdf等文件</div>
<div slot="tip" class="el-upload__tip" style="color: #f56c6c">
支持上传jpg/png/doc/docx/xls/xlsx/pdf等文件
</div>
</el-upload>
</div>
</div>
......@@ -233,28 +414,66 @@
<el-button type="primary" @click="passFinal1">确 定</el-button>
</span>
</el-dialog>
<el-dialog title="查看附件" :visible.sync="showUrl" width="500px" :close-on-press-escape="false">
<div style="margin: 0 0 0 10px;font-weight: 700;">图片附件:</div>
<div class="content" style="display:flex;flex-wrap:wrap;" v-if="pictureUrlList.length > 0">
<el-dialog
title="查看附件"
:visible.sync="showUrl"
width="500px"
:close-on-press-escape="false"
>
<div style="margin: 0 0 0 10px; font-weight: 700">图片附件:</div>
<div
class="content"
style="display: flex; flex-wrap: wrap"
v-if="pictureUrlList.length > 0"
>
<div v-for="(item, index) in pictureUrlList" :key="index">
<el-image style="width: 95px; height: 95px; margin: 10px;" :src="item.file"
:preview-src-list="[item.file]"></el-image>
<el-image
style="width: 95px; height: 95px; margin: 10px"
:src="item.file"
:preview-src-list="[item.file]"
></el-image>
</div>
</div>
<div class="content" style="display:flex;justify-content: center;" v-if="pictureUrlList.length == 0">
<div
class="content"
style="display: flex; justify-content: center"
v-if="pictureUrlList.length == 0"
>
<el-empty :image-size="50"></el-empty>
</div>
<div style="margin: 0 0 0 10px;font-weight: 700;">文件附件:</div>
<div class="content" style="display:flex;flex-direction:column;flex-wrap:wrap;" v-if="fileUrlList.length > 0">
<div v-for="(item, index) in fileUrlList" :key="index"
style="margin: 10px 10px 0 10px; display:flex; align-items:center; justify-content: space-between;">
<p class="label" style="margin: 0;text-align:center;">{{ item.fileExplain }}</p>
<el-button size="mini" type="primary" @click="
download(item.file)
" class="down-text">下载附件</el-button>
<div style="margin: 0 0 0 10px; font-weight: 700">文件附件:</div>
<div
class="content"
style="display: flex; flex-direction: column; flex-wrap: wrap"
v-if="fileUrlList.length > 0"
>
<div
v-for="(item, index) in fileUrlList"
:key="index"
style="
margin: 10px 10px 0 10px;
display: flex;
align-items: center;
justify-content: space-between;
"
>
<p class="label" style="margin: 0; text-align: center">
{{ item.fileExplain }}
</p>
<el-button
size="mini"
type="primary"
@click="download(item.file)"
class="down-text"
>下载附件</el-button
>
</div>
</div>
<div class="content" style="display:flex;justify-content: center;" v-if="fileUrlList.length == 0">
<div
class="content"
style="display: flex; justify-content: center"
v-if="fileUrlList.length == 0"
>
<el-empty :image-size="50"></el-empty>
</div>
</el-dialog>
......@@ -277,7 +496,8 @@ import {
mattersHousingGet,
mattersGetReason,
mattersHousingReason,
queryAttacheFile
queryAttacheFile,
revocation,
} from "@/api/policy";
export default {
......@@ -395,7 +615,7 @@ export default {
{
state: 9,
stateName: "已驳回",
type: "danger"
type: "danger",
},
],
loading: false,
......@@ -418,7 +638,7 @@ export default {
{
key: "housingType",
label: "事项类型",
type: "slot"
type: "slot",
},
{
key: "guideName",
......@@ -442,7 +662,7 @@ export default {
},
viewShow: false,
viewDetail: {
labour: []
labour: [],
},
recordShow: false,
recordList: [],
......@@ -469,67 +689,81 @@ export default {
},
methods: {
viewUrl(row) {
console.log(row)
console.log(row);
queryAttacheFile({ code: row.code }).then((res) => {
console.log(res)
console.log(res);
if (res.success) {
this.pictureUrlList = res.data.filter((item) => {
let fileType = item.fileExplain.split(".")[item.fileExplain.split('.').length - 1]
return fileType == 'jpg' || fileType == 'jpeg' || fileType == 'png'
})
let fileType =
item.fileExplain.split(".")[
item.fileExplain.split(".").length - 1
];
return fileType == "jpg" || fileType == "jpeg" || fileType == "png";
});
this.fileUrlList = res.data.filter((item) => {
let fileType = item.fileExplain.split(".")[item.fileExplain.split('.').length - 1]
return fileType != 'jpg' && fileType != 'jpeg' && fileType != 'png'
})
console.log(this.pictureUrlList)
console.log(this.fileUrlList)
this.showUrl = true
let fileType =
item.fileExplain.split(".")[
item.fileExplain.split(".").length - 1
];
return fileType != "jpg" && fileType != "jpeg" && fileType != "png";
});
console.log(this.pictureUrlList);
console.log(this.fileUrlList);
this.showUrl = true;
} else {
this.$message.error(res.msg || '查询失败');
this.$message.error(res.msg || "查询失败");
}
})
});
},
download(url) {
console.log(url)
let fileType = url.split(".")[url.split('.').length - 1]
if (fileType == 'pdf' || fileType == 'PDF') {
window.open(url)
console.log(url);
let fileType = url.split(".")[url.split(".").length - 1];
if (fileType == "pdf" || fileType == "PDF") {
window.open(url);
} else {
window.location.href = url
window.location.href = url;
}
},
handleExceed(files, fileList) {
console.log(files, fileList)
console.log(files, fileList);
this.$message.warning(`最多上传1个文件!`);
},
handleRemove(file, fileList) {
console.log(file, fileList);
this.fileUrl1 = this.fileUrl1.filter((item) => {
return item.fileExplain != file.name
})
console.log(this.fileUrl1)
return item.fileExplain != file.name;
});
console.log(this.fileUrl1);
},
handleError(err, file, fileList) {
console.log('err,file,fileList', err, file, fileList)
console.log("err,file,fileList", err, file, fileList);
},
uploadFile(param) {
const link = document.createElement("a");
link.style.display = "none";
uploadTalentFile(param.file).then((res) => {
console.log('res', res);
if (res.success) {
this.$message.success(res.msg || "上传成功");
this.fileUrl1.push({ fileExplain: param.file.name, file: res.data })
} else {
// 上传失败删除列表展示
this.$refs.dmtUploadFile.uploadFiles.splice(this.$refs.dmtUploadFile.uploadFiles.indexOf(res), 1);
console.log(this.$refs.dmtUploadFile.uploadFiles)
this.$message.error(res.msg || "上传失败");
}
}).catch((err) => {
this.fileList = []
this.$message.error(err.msg || "上传失败");
});
uploadTalentFile(param.file)
.then((res) => {
console.log("res", res);
if (res.success) {
this.$message.success(res.msg || "上传成功");
this.fileUrl1.push({
fileExplain: param.file.name,
file: res.data,
});
} else {
// 上传失败删除列表展示
this.$refs.dmtUploadFile.uploadFiles.splice(
this.$refs.dmtUploadFile.uploadFiles.indexOf(res),
1
);
console.log(this.$refs.dmtUploadFile.uploadFiles);
this.$message.error(res.msg || "上传失败");
}
})
.catch((err) => {
this.fileList = [];
this.$message.error(err.msg || "上传失败");
});
},
init() {
this.loading = true;
......@@ -552,11 +786,11 @@ export default {
item.type = this.getSatusArr(item.state).type;
return item;
});
if (localStorage.getItem('userName') == 'admin') {
this.tableData = changeList(this.tableData)
if (localStorage.getItem("userName") == "admin") {
this.tableData = changeList(this.tableData);
}
} else {
this.tableData = []
this.tableData = [];
}
} else {
this.$message.error("网络错误");
......@@ -582,9 +816,9 @@ export default {
// name: this.userName
};
// 查询四个部门的记录 mattersHousingReason
mattersHousingReason(params2).then(res => {
mattersHousingReason(params2).then((res) => {
this.examineList = res.data;
this.examineList.forEach(item => {
this.examineList.forEach((item) => {
item.state == 8 ? (item.state = "通过") : (item.state = "拒绝");
});
this.totalList = this.examineList.concat(this.housingList);
......@@ -595,10 +829,10 @@ export default {
// console.log("this.housingList----", this.housingList);
this.housingList.forEach((item) => {
item.state == 1 ||
item.state == 2 ||
item.state == 3 ||
item.state == 6 ||
item.state == 7
item.state == 2 ||
item.state == 3 ||
item.state == 6 ||
item.state == 7
? (item.state = "通过")
: (item.state = "拒绝");
});
......@@ -612,20 +846,16 @@ export default {
this.unitName = res.data.unitName;
// });
this.viewDetail = res.data;
if (localStorage.getItem('userName') == 'admin') {
this.viewDetail.name = setName(this.viewDetail.name)
this.viewDetail.phone = setTel(this.viewDetail.phone)
this.viewDetail.idCard = setCertNo(this.viewDetail.idCard)
if (localStorage.getItem("userName") == "admin") {
this.viewDetail.name = setName(this.viewDetail.name);
this.viewDetail.phone = setTel(this.viewDetail.phone);
this.viewDetail.idCard = setCertNo(this.viewDetail.idCard);
}
this.viewDetail.idCardPicture = res.data.pictureList.filter(item => {
return (
item.pictureType === 1
)
this.viewDetail.idCardPicture = res.data.pictureList.filter((item) => {
return item.pictureType === 1;
});
this.viewDetail.bankPicture = res.data.pictureList.filter((item) => {
return (
item.pictureType === 8
);
return item.pictureType === 8;
});
this.viewDetail.contract = res.data.pictureList.filter((item) => {
return (
......@@ -643,7 +873,7 @@ export default {
return item.pictureType === 6;
}).picture;
this.viewDetail.labour = [];
res.data.pictureList.map(item => {
res.data.pictureList.map((item) => {
if (item.pictureType == 7) {
return this.viewDetail.labour.push(item);
}
......@@ -699,7 +929,7 @@ export default {
Promise.all([
mattersHousingReason(params2),
get({ talentCode: row.talentCode }),
mattersHousingGet({ appId: 1234, code: row.code })
mattersHousingGet({ appId: 1234, code: row.code }),
]).then((res) => {
console.log("res------", res);
this.realEstateAddress = res[2].data.realEstateAddress; // 住址
......@@ -738,13 +968,25 @@ export default {
"人才购房契税补贴(住宅)申请表"
);
}
})
});
// }
})
.catch(() => {
// console.log("取消审核");
});
},
revocationHandle(row) {
revocation({
code: row.code,
}).then((res) => {
if (res.success) {
this.$message.success("撤回成功");
this.init();
} else {
this.$message.warning(res.msg || "撤回失败");
}
});
},
// 填充模板代码 ---
initTemplate(res, row, value, tepname) {
// console.log('res-----',res)
......@@ -841,7 +1083,7 @@ export default {
that.$message.success(`复审通过`);
that.init();
} else {
that.$message.error(res.msg || '审核失败');
that.$message.error(res.msg || "审核失败");
}
});
});
......@@ -851,11 +1093,11 @@ export default {
});
},
passFinal(row) {
console.log(row)
this.rowDetail = row
this.fileList = []
this.fileUrl1 = []
this.finalShow = true
console.log(row);
this.rowDetail = row;
this.fileList = [];
this.fileUrl1 = [];
this.finalShow = true;
},
passFinal1() {
if (!this.textarea) {
......@@ -872,15 +1114,15 @@ export default {
state: 3,
reason: this.textarea,
reviewerId: this.rowDetail.reviewerId,
attachedPictureUploadDTO: this.fileUrl1
attachedPictureUploadDTO: this.fileUrl1,
};
mattersHousingUpdate(params).then((res) => {
if (res.success) {
this.finalShow = false
this.finalShow = false;
this.$message.success(`资料终审通过`);
this.init();
} else {
this.$message.error(res.msg || '审核失败');
this.$message.error(res.msg || "审核失败");
}
});
},
......@@ -925,7 +1167,7 @@ export default {
},
},
created() {
this.userName = localStorage.getItem('userName');
this.userName = localStorage.getItem("userName");
// this.searchForm.departmentCode = getQueryString("departmentCode") || ''; //原始
this.searchForm.departmentCode = this.$route.query.departmentCode; // 修改
this.init();
......
......@@ -79,6 +79,19 @@
@click="record(scope.row)"
>记录</el-button
>
<el-button
type="danger"
size="mini"
round
v-if="
scope.row.state === 6 ||
scope.row.state === 2 ||
scope.row.state === 3 ||
scope.row.state === 4
"
@click="revocationHandle(scope.row)"
>撤回</el-button
>
<!-- 待复审的单子有通过拒绝-->
<!-- <template v-if="scope.row.state === 1">
<el-button
......@@ -360,6 +373,7 @@ import {
mattersGetReason,
mattersHousingReason,
// dtSubsidy
revocation,
} from "@/api/policy";
export default {
......@@ -724,6 +738,18 @@ export default {
// console.log("取消审核");
});
},
revocationHandle(row) {
revocation({
code: row.code,
}).then((res) => {
if (res.success) {
this.$message.success("撤回成功");
this.init();
} else {
this.$message.warning(res.msg || "撤回失败");
}
});
},
passData(row) {
this.$prompt(`确定通过该申请的资料审核吗?`, "提示", {
confirmButtonText: "确定",
......
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