Commit c881911b by swl

gx

parent 16a8e4ca
No preview for this file type
...@@ -62,6 +62,13 @@ const routes = [ ...@@ -62,6 +62,13 @@ const routes = [
import(/* webpackChunkName: "home" */ "@/views/Deedtax/house.vue"), import(/* webpackChunkName: "home" */ "@/views/Deedtax/house.vue"),
meta: ["80%契税补贴"], meta: ["80%契税补贴"],
}, },
{
path: "/deedtax-dyhouse",
name: "deedtaxDyHouse",
component: () =>
import(/* webpackChunkName: "home" */ "@/views/Deedtax/dy_house.vue"),
meta: ["80%契税补贴"],
},
//商业契税补贴 //商业契税补贴
{ {
path: "/commercialdeedtax", path: "/commercialdeedtax",
...@@ -81,6 +88,15 @@ const routes = [ ...@@ -81,6 +88,15 @@ const routes = [
), ),
meta: ["商业契税补贴"], meta: ["商业契税补贴"],
}, },
{
path: "/commercial-deedtax-dyhouse",
name: "commercialdeedtaxDyHouse",
component: () =>
import(
/* webpackChunkName: "home" */ "@/views/Commercialdeedtax/dy_house.vue"
),
meta: ["商业契税补贴"],
},
//多子女契税补贴 //多子女契税补贴
{ {
path: "/multipledeedtax", path: "/multipledeedtax",
...@@ -92,6 +108,15 @@ const routes = [ ...@@ -92,6 +108,15 @@ const routes = [
meta: ["多子女契税补贴"], meta: ["多子女契税补贴"],
}, },
{ {
path: "/multiple-deedtax-dyhouse",
name: "multipledeedtaxDyHouse",
component: () =>
import(
/* webpackChunkName: "home" */ "@/views/Multipledeedtax/dy_house.vue"
),
meta: ["多子女契税补贴"],
},
{
path: "/multiple-deedtax-house", path: "/multiple-deedtax-house",
name: "multipledeedtaxHouse", name: "multipledeedtaxHouse",
component: () => component: () =>
...@@ -119,6 +144,15 @@ const routes = [ ...@@ -119,6 +144,15 @@ const routes = [
), ),
meta: ["改善住房契税补贴"], meta: ["改善住房契税补贴"],
}, },
{
path: "/housingimprovement-deedtax-dyhouse",
name: "housingimprovementdeedtaxDyHouse",
component: () =>
import(
/* webpackChunkName: "home" */ "@/views/Housedeedtax/dy_house.vue"
),
meta: ["改善住房契税补贴"],
},
// 人才政策管理 // 人才政策管理
{ {
path: "/policy", path: "/policy",
......
...@@ -102,7 +102,9 @@ ...@@ -102,7 +102,9 @@
<!-- 申请的单子有通过拒绝--> <!-- 申请的单子有通过拒绝-->
<el-button <el-button
v-if=" v-if="
scope.row.state == 1 && searchForm.departmentCode == '10000027' scope.row.state == 1 &&
searchForm.departmentCode == '10000027' &&
realEstateArea !== '丹阳市'
" "
type="success" type="success"
size="mini" size="mini"
...@@ -110,6 +112,7 @@ ...@@ -110,6 +112,7 @@
@click="pass(scope.row, 'default')" @click="pass(scope.row, 'default')"
>通过 >通过
</el-button> </el-button>
<!-- 丹阳退税办理 -->
<el-button <el-button
v-if=" v-if="
scope.row.state == 2 && scope.row.state == 2 &&
...@@ -132,6 +135,19 @@ ...@@ -132,6 +135,19 @@
@click="deny(scope.row)" @click="deny(scope.row)"
>拒绝 >拒绝
</el-button> </el-button>
<!-- 退税办理丹阳拒绝 -->
<el-button
v-if="
scope.row.state == 2 &&
searchForm.departmentCode == '10000031' &&
realEstateArea == '丹阳市'
"
type="danger"
size="mini"
round
@click="deny(scope.row)"
>拒绝
</el-button>
<el-button <el-button
v-if=" v-if="
scope.row.flag == true && scope.row.flag == true &&
...@@ -1039,6 +1055,8 @@ export default { ...@@ -1039,6 +1055,8 @@ export default {
if (res.success) { if (res.success) {
this.$message.success(`复审通过`); this.$message.success(`复审通过`);
this.init(); this.init();
this.resetHandle(row);
// if (this.$route.query.realEstateArea != '句容市') { // if (this.$route.query.realEstateArea != '句容市') {
// dtSubsidy({ billType: 1, code: row.code }).then((res) => { // dtSubsidy({ billType: 1, code: row.code }).then((res) => {
// console.log(res) // console.log(res)
...@@ -1089,8 +1107,9 @@ export default { ...@@ -1089,8 +1107,9 @@ export default {
updateCommerDeedTaxState(params).then((res) => { updateCommerDeedTaxState(params).then((res) => {
if (res.success) { if (res.success) {
this.$message.success(`审批通过`); this.$message.success(`审批通过`);
this.refundShow = false;
this.init(); this.init();
this.recordShow = false;
} else { } else {
this.$message.warning( this.$message.warning(
res.msg || "审批失败,请检查审批流程是否存在问题" res.msg || "审批失败,请检查审批流程是否存在问题"
...@@ -1106,7 +1125,7 @@ export default { ...@@ -1106,7 +1125,7 @@ export default {
}); });
}, },
deny(row) { deny(row) {
this.$prompt(`确定驳回该申请的复审吗?`, "提示", { this.$prompt(`确定驳回该申请吗?`, "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
inputPlaceholder: "请输入原因", inputPlaceholder: "请输入原因",
...@@ -1134,7 +1153,7 @@ export default { ...@@ -1134,7 +1153,7 @@ export default {
updateCommerDeedTaxState(params).then((res) => { updateCommerDeedTaxState(params).then((res) => {
console.log(res); console.log(res);
this.$message.success(`复审驳回成功`); this.$message.success(res.msg || `驳回成功`);
this.init(); this.init();
}); });
} }
...@@ -1281,13 +1300,13 @@ export default { ...@@ -1281,13 +1300,13 @@ export default {
let promiseText = that.$store.state.utils.promiseText; let promiseText = that.$store.state.utils.promiseText;
let text = ""; let text = "";
if ( if (
this.realEstateArea == "丹阳市" && that.detail.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1" that.detail.commitmentType == "1"
) { ) {
// 单独所有、共同共有 // 单独所有、共同共有
text = promiseText.alone; text = promiseText.alone;
} else if ( } else if (
this.realEstateArea == "丹阳市" && that.detail.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "2" that.detail.commitmentType == "2"
) { ) {
// 按份共有 // 按份共有
......
...@@ -102,7 +102,9 @@ ...@@ -102,7 +102,9 @@
<!-- 申请的单子有通过拒绝--> <!-- 申请的单子有通过拒绝-->
<el-button <el-button
v-if=" v-if="
scope.row.state == 1 && searchForm.departmentCode == '10000027' scope.row.state == 1 &&
searchForm.departmentCode == '10000027' &&
realEstateArea !== '丹阳市'
" "
type="success" type="success"
size="mini" size="mini"
...@@ -132,6 +134,19 @@ ...@@ -132,6 +134,19 @@
@click="deny(scope.row)" @click="deny(scope.row)"
>拒绝 >拒绝
</el-button> </el-button>
<!-- 退税办理丹阳拒绝 -->
<el-button
v-if="
scope.row.state == 2 &&
searchForm.departmentCode == '10000031' &&
realEstateArea == '丹阳市'
"
type="danger"
size="mini"
round
@click="deny(scope.row)"
>拒绝
</el-button>
<el-button <el-button
v-if=" v-if="
scope.row.flag == true && scope.row.flag == true &&
...@@ -1079,7 +1094,7 @@ export default { ...@@ -1079,7 +1094,7 @@ export default {
if (res.success) { if (res.success) {
this.$message.success(`审批通过`); this.$message.success(`审批通过`);
this.init(); this.init();
this.recordShow = false; this.refundShow = false;
} else { } else {
this.$message.warning( this.$message.warning(
res.msg || "审批失败,请检查审批流程是否存在问题" res.msg || "审批失败,请检查审批流程是否存在问题"
...@@ -1095,7 +1110,7 @@ export default { ...@@ -1095,7 +1110,7 @@ export default {
}); });
}, },
deny(row) { deny(row) {
this.$prompt(`确定驳回该申请的复审吗?`, "提示", { this.$prompt(`确定驳回该申请吗?`, "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
inputPlaceholder: "请输入原因", inputPlaceholder: "请输入原因",
...@@ -1123,7 +1138,7 @@ export default { ...@@ -1123,7 +1138,7 @@ export default {
updateDeedTaxState(params).then((res) => { updateDeedTaxState(params).then((res) => {
console.log(res); console.log(res);
this.$message.success(`复审驳回成功`); this.$message.success(res.msg || `驳回成功`);
this.init(); this.init();
}); });
} }
...@@ -1272,13 +1287,13 @@ export default { ...@@ -1272,13 +1287,13 @@ export default {
let promiseText = that.$store.state.utils.promiseText; let promiseText = that.$store.state.utils.promiseText;
let text = ""; let text = "";
if ( if (
this.realEstateArea == "丹阳市" && that.detail.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1" that.detail.commitmentType == "1"
) { ) {
// 单独所有、共同共有 // 单独所有、共同共有
text = promiseText.alone; text = promiseText.alone;
} else if ( } else if (
this.realEstateArea == "丹阳市" && that.detail.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1" that.detail.commitmentType == "1"
) { ) {
// 按份共有 // 按份共有
......
...@@ -132,6 +132,19 @@ ...@@ -132,6 +132,19 @@
@click="deny(scope.row)" @click="deny(scope.row)"
>拒绝 >拒绝
</el-button> </el-button>
<!-- 退税办理丹阳拒绝 -->
<el-button
v-if="
scope.row.state == 2 &&
searchForm.departmentCode == '10000031' &&
realEstateArea == '丹阳市'
"
type="danger"
size="mini"
round
@click="deny(scope.row)"
>拒绝
</el-button>
<el-button <el-button
v-if=" v-if="
scope.row.flag == true && scope.row.flag == true &&
...@@ -1094,7 +1107,7 @@ export default { ...@@ -1094,7 +1107,7 @@ export default {
if (res.success) { if (res.success) {
this.$message.success(`审批通过`); this.$message.success(`审批通过`);
this.init(); this.init();
this.recordShow = false; this.refundShow = false;
} else { } else {
this.$message.warning( this.$message.warning(
res.msg || "审批失败,请检查审批流程是否存在问题" res.msg || "审批失败,请检查审批流程是否存在问题"
...@@ -1110,7 +1123,7 @@ export default { ...@@ -1110,7 +1123,7 @@ export default {
}); });
}, },
deny(row) { deny(row) {
this.$prompt(`确定驳回该申请的复审吗?`, "提示", { this.$prompt(`确定驳回该申请吗?`, "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
inputPlaceholder: "请输入原因", inputPlaceholder: "请输入原因",
...@@ -1137,8 +1150,7 @@ export default { ...@@ -1137,8 +1150,7 @@ export default {
}; };
updateHouseDeedTaxState(params).then((res) => { updateHouseDeedTaxState(params).then((res) => {
console.log(res); this.$message.success(res.msg || `驳回成功`);
this.$message.success(`复审驳回成功`);
this.init(); this.init();
}); });
} }
...@@ -1285,13 +1297,13 @@ export default { ...@@ -1285,13 +1297,13 @@ export default {
let promiseText = that.$store.state.utils.promiseText; let promiseText = that.$store.state.utils.promiseText;
let text = ""; let text = "";
if ( if (
this.realEstateArea == "丹阳市" && that.detail.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1" that.detail.commitmentType == "1"
) { ) {
// 单独所有、共同共有 // 单独所有、共同共有
text = promiseText.alone; text = promiseText.alone;
} else if ( } else if (
this.realEstateArea == "丹阳市" && that.detail.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "2" that.detail.commitmentType == "2"
) { ) {
// 按份共有 // 按份共有
......
...@@ -132,6 +132,19 @@ ...@@ -132,6 +132,19 @@
@click="deny(scope.row)" @click="deny(scope.row)"
>拒绝 >拒绝
</el-button> </el-button>
<!-- 退税办理丹阳拒绝 -->
<el-button
v-if="
scope.row.state == 2 &&
searchForm.departmentCode == '10000031' &&
realEstateArea == '丹阳市'
"
type="danger"
size="mini"
round
@click="deny(scope.row)"
>拒绝
</el-button>
<el-button <el-button
v-if=" v-if="
scope.row.flag == true && scope.row.flag == true &&
...@@ -143,23 +156,7 @@ ...@@ -143,23 +156,7 @@
@click="drevokeeny(scope.row)" @click="drevokeeny(scope.row)"
>撤销 >撤销
</el-button> </el-button>
<!-- <el-button
v-if="(scope.row.state == 3 || scope.row.state == 2) && searchForm.departmentCode == '10000031' && $route.query.realEstateArea == '句容市'"
type="success" size="mini" round @click="dispatch(scope.row)">退税办理</el-button> -->
<!-- <el-button
v-if="
scope.row.state != 0 &&
scope.row.state != 4 &&
scope.row.fileUrl &&
searchForm.departmentCode == '10000027'
"
type="success"
size="mini"
round
@click="download(scope.row.fileUrl)"
>下载申请表</el-button
> -->
<el-button <el-button
v-if="searchForm.departmentCode == '10000027'" v-if="searchForm.departmentCode == '10000027'"
type="warning" type="warning"
...@@ -1115,7 +1112,7 @@ export default { ...@@ -1115,7 +1112,7 @@ export default {
if (res.success) { if (res.success) {
this.$message.success(`审批通过`); this.$message.success(`审批通过`);
this.init(); this.init();
this.recordShow = false; this.refundShow = false;
} else { } else {
this.$message.warning( this.$message.warning(
res.msg || "审批失败,请检查审批流程是否存在问题" res.msg || "审批失败,请检查审批流程是否存在问题"
...@@ -1131,7 +1128,7 @@ export default { ...@@ -1131,7 +1128,7 @@ export default {
}); });
}, },
deny(row) { deny(row) {
this.$prompt(`确定驳回该申请的复审吗?`, "提示", { this.$prompt(`确定驳回该申请吗?`, "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
inputPlaceholder: "请输入原因", inputPlaceholder: "请输入原因",
...@@ -1159,7 +1156,7 @@ export default { ...@@ -1159,7 +1156,7 @@ export default {
updateMultipleDeedTaxState(params).then((res) => { updateMultipleDeedTaxState(params).then((res) => {
console.log(res); console.log(res);
this.$message.success(`复审驳回成功`); this.$message.success(res.msg || `驳回成功`);
this.init(); this.init();
}); });
} }
...@@ -1306,13 +1303,13 @@ export default { ...@@ -1306,13 +1303,13 @@ export default {
let promiseText = that.$store.state.utils.promiseText; let promiseText = that.$store.state.utils.promiseText;
let text = ""; let text = "";
if ( if (
this.realEstateArea == "丹阳市" && that.detail.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1" that.detail.commitmentType == "1"
) { ) {
// 单独所有、共同共有 // 单独所有、共同共有
text = promiseText.alone; text = promiseText.alone;
} else if ( } else if (
this.realEstateArea == "丹阳市" && that.detail.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1" that.detail.commitmentType == "1"
) { ) {
// 按份共有 // 按份共有
......
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