Commit 249dbfbd by swl

feat: gx

parent 630b06c5
No preview for this file type
No preview for this file type
...@@ -153,7 +153,7 @@ ...@@ -153,7 +153,7 @@
<el-table-column prop="createTime" label="审核时间"> <el-table-column prop="createTime" label="审核时间">
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="cell"> <!-- <div class="cell">
<p class="label">是否享受过相关政策</p> <p class="label">是否享受过相关政策</p>
<p <p
:class="[ :class="[
...@@ -163,7 +163,7 @@ ...@@ -163,7 +163,7 @@
> >
{{ viewDetail.enjoyFlag ? "否" : "是" }} {{ viewDetail.enjoyFlag ? "否" : "是" }}
</p> </p>
</div> </div> -->
<!-- 新增功能end --> <!-- 新增功能end -->
<div class="cell"> <div class="cell">
<p class="label">事项名称</p> <p class="label">事项名称</p>
...@@ -1039,7 +1039,7 @@ export default { ...@@ -1039,7 +1039,7 @@ export default {
this.arrList = res[1].data; this.arrList = res[1].data;
this.detail.recordVos.forEach((item) => { this.detail.recordVos.forEach((item) => {
item.departmentName.search("财政复审") != -1 item.departmentName.search("财政") != -1
? (this.arr1 = item.reason) ? (this.arr1 = item.reason)
: ""; : "";
item.departmentName.search("不动产") != -1 item.departmentName.search("不动产") != -1
...@@ -1063,13 +1063,13 @@ export default { ...@@ -1063,13 +1063,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.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1" that.detail.commitmentType == "1"
) { ) {
// 单独所有、共同共有 // 单独所有、共同共有
text = promiseText.alone; text = promiseText.alone;
} else if ( } else if (
this.realEstateArea == "丹阳市" && that.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "2" that.detail.commitmentType == "2"
) { ) {
// 按份共有 // 按份共有
...@@ -1081,6 +1081,10 @@ export default { ...@@ -1081,6 +1081,10 @@ export default {
let arr = {}; let arr = {};
arr.promiseText = text; arr.promiseText = text;
arr.time = that.detail.createTime.split(" ")[0];
arr.commitmentTypeName =
that.detail.commitmentType == 1 ? "单独所有、共同共有" : "按份共有";
arr.name = that.detail.name; arr.name = that.detail.name;
arr.idCard = that.detail.idCard; arr.idCard = that.detail.idCard;
arr.title = "商办用房"; arr.title = "商办用房";
......
...@@ -174,7 +174,7 @@ ...@@ -174,7 +174,7 @@
<el-table-column prop="createTime" label="审核时间"> <el-table-column prop="createTime" label="审核时间">
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="cell"> <div class="cell" v-if="viewDetail.checkArea != '丹阳市'">
<p class="label">是否享受过相关政策</p> <p class="label">是否享受过相关政策</p>
<p <p
:class="[ :class="[
...@@ -967,14 +967,14 @@ export default { ...@@ -967,14 +967,14 @@ 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.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1" that.detail.commitmentType == "1"
) { ) {
// 单独所有、共同共有 // 单独所有、共同共有
text = promiseText.alone; text = promiseText.alone;
} else if ( } else if (
this.realEstateArea == "丹阳市" && that.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1" that.detail.commitmentType == "2"
) { ) {
// 按份共有 // 按份共有
...@@ -984,6 +984,10 @@ export default { ...@@ -984,6 +984,10 @@ export default {
} }
let arr = {}; let arr = {};
arr.promiseText = text; arr.promiseText = text;
arr.time = that.detail.createTime.split(" ")[0];
arr.commitmentTypeName =
that.detail.commitmentType == 1 ? "单独所有、共同共有" : "按份共有";
arr.name = that.detail.name; arr.name = that.detail.name;
arr.idCard = that.detail.idCard; arr.idCard = that.detail.idCard;
arr.title = "商办用房"; arr.title = "商办用房";
......
...@@ -153,7 +153,7 @@ ...@@ -153,7 +153,7 @@
<el-table-column prop="createTime" label="审核时间"> <el-table-column prop="createTime" label="审核时间">
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="cell"> <!-- <div class="cell">
<p class="label">是否享受过相关政策</p> <p class="label">是否享受过相关政策</p>
<p <p
:class="[ :class="[
...@@ -163,7 +163,7 @@ ...@@ -163,7 +163,7 @@
> >
{{ viewDetail.enjoyFlag ? "否" : "是" }} {{ viewDetail.enjoyFlag ? "否" : "是" }}
</p> </p>
</div> </div> -->
<!-- 新增功能end --> <!-- 新增功能end -->
<div class="cell"> <div class="cell">
<p class="label">事项名称</p> <p class="label">事项名称</p>
...@@ -1039,7 +1039,7 @@ export default { ...@@ -1039,7 +1039,7 @@ export default {
this.arrList = res[1].data; this.arrList = res[1].data;
this.detail.recordVos.forEach((item) => { this.detail.recordVos.forEach((item) => {
item.departmentName.search("财政复审") != -1 item.departmentName.search("财政") != -1
? (this.arr1 = item.reason) ? (this.arr1 = item.reason)
: ""; : "";
item.departmentName.search("不动产") != -1 item.departmentName.search("不动产") != -1
...@@ -1063,13 +1063,13 @@ export default { ...@@ -1063,13 +1063,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.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1" that.detail.commitmentType == "1"
) { ) {
// 单独所有、共同共有 // 单独所有、共同共有
text = promiseText.alone; text = promiseText.alone;
} else if ( } else if (
this.realEstateArea == "丹阳市" && that.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "2" that.detail.commitmentType == "2"
) { ) {
// 按份共有 // 按份共有
...@@ -1081,9 +1081,13 @@ export default { ...@@ -1081,9 +1081,13 @@ export default {
let arr = {}; let arr = {};
arr.promiseText = text; arr.promiseText = text;
arr.time = that.detail.createTime.split(" ")[0];
arr.commitmentTypeName =
that.detail.commitmentType == 1 ? "单独所有、共同共有" : "按份共有";
arr.name = that.detail.name; arr.name = that.detail.name;
arr.idCard = that.detail.idCard; arr.idCard = that.detail.idCard;
arr.title = "商办用房"; arr.title = "首套商品住房";
arr.birthDate = arr.birthDate =
that.detail.idCard.substring(6, 10) + that.detail.idCard.substring(6, 10) +
"-" + "-" +
......
...@@ -174,7 +174,7 @@ ...@@ -174,7 +174,7 @@
<el-table-column prop="createTime" label="审核时间"> <el-table-column prop="createTime" label="审核时间">
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="cell"> <div class="cell" v-if="viewDetail.checkArea != '丹阳市'">
<p class="label">是否享受过相关政策</p> <p class="label">是否享受过相关政策</p>
<p <p
:class="[ :class="[
...@@ -964,14 +964,14 @@ export default { ...@@ -964,14 +964,14 @@ 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.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1" that.detail.commitmentType == "1"
) { ) {
// 单独所有、共同共有 // 单独所有、共同共有
text = promiseText.alone; text = promiseText.alone;
} else if ( } else if (
this.realEstateArea == "丹阳市" && that.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1" that.detail.commitmentType == "2"
) { ) {
// 按份共有 // 按份共有
...@@ -981,10 +981,15 @@ export default { ...@@ -981,10 +981,15 @@ export default {
} }
let arr = {}; let arr = {};
arr.promiseText = text; arr.promiseText = text;
arr.time = that.detail.createTime.split(" ")[0];
arr.commitmentTypeName =
that.detail.commitmentType == 1 ? "单独所有、共同共有" : "按份共有";
arr.name = that.detail.name; arr.name = that.detail.name;
arr.idCard = that.detail.idCard; arr.idCard = that.detail.idCard;
arr.title = "首套商品住房"; arr.title = "首套商品住房";
arr.birthDate = arr.birthDate =
that.detail.idCard.substring(6, 10) + that.detail.idCard.substring(6, 10) +
"-" + "-" +
......
...@@ -153,7 +153,7 @@ ...@@ -153,7 +153,7 @@
<el-table-column prop="createTime" label="审核时间"> <el-table-column prop="createTime" label="审核时间">
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="cell"> <!-- <div class="cell">
<p class="label">是否享受过相关政策</p> <p class="label">是否享受过相关政策</p>
<p <p
:class="[ :class="[
...@@ -163,7 +163,7 @@ ...@@ -163,7 +163,7 @@
> >
{{ viewDetail.enjoyFlag ? "否" : "是" }} {{ viewDetail.enjoyFlag ? "否" : "是" }}
</p> </p>
</div> </div> -->
<!-- 新增功能end --> <!-- 新增功能end -->
<div class="cell"> <div class="cell">
<p class="label">事项名称</p> <p class="label">事项名称</p>
...@@ -1039,7 +1039,7 @@ export default { ...@@ -1039,7 +1039,7 @@ export default {
this.arrList = res[1].data; this.arrList = res[1].data;
this.detail.recordVos.forEach((item) => { this.detail.recordVos.forEach((item) => {
item.departmentName.search("财政复审") != -1 item.departmentName.search("财政") != -1
? (this.arr1 = item.reason) ? (this.arr1 = item.reason)
: ""; : "";
item.departmentName.search("不动产") != -1 item.departmentName.search("不动产") != -1
...@@ -1081,9 +1081,14 @@ export default { ...@@ -1081,9 +1081,14 @@ export default {
let arr = {}; let arr = {};
arr.promiseText = text; arr.promiseText = text;
arr.time = that.detail.createTime.split(" ")[0];
arr.commitmentTypeName =
that.detail.commitmentType == 1 ? "单独所有、共同共有" : "按份共有";
arr.name = that.detail.name; arr.name = that.detail.name;
arr.idCard = that.detail.idCard; arr.idCard = that.detail.idCard;
arr.title = "商办用房"; arr.title = "改善型住房";
arr.birthDate = arr.birthDate =
that.detail.idCard.substring(6, 10) + that.detail.idCard.substring(6, 10) +
"-" + "-" +
......
...@@ -174,7 +174,7 @@ ...@@ -174,7 +174,7 @@
<el-table-column prop="createTime" label="审核时间"> <el-table-column prop="createTime" label="审核时间">
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="cell"> <div class="cell" v-if="viewDetail.checkArea != '丹阳市'">
<p class="label">是否享受过相关政策</p> <p class="label">是否享受过相关政策</p>
<p <p
:class="[ :class="[
...@@ -982,7 +982,7 @@ export default { ...@@ -982,7 +982,7 @@ export default {
text = promiseText.alone; text = promiseText.alone;
} else if ( } else if (
this.realEstateArea == "丹阳市" && this.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1" that.detail.commitmentType == "2"
) { ) {
// 按份共有 // 按份共有
...@@ -992,6 +992,11 @@ export default { ...@@ -992,6 +992,11 @@ export default {
} }
let arr = {}; let arr = {};
arr.promiseText = text; arr.promiseText = text;
arr.time = that.detail.createTime.split(" ")[0];
arr.commitmentTypeName =
that.detail.commitmentType == 1 ? "单独所有、共同共有" : "按份共有";
arr.name = that.detail.name; arr.name = that.detail.name;
arr.idCard = that.detail.idCard; arr.idCard = that.detail.idCard;
arr.title = "改善型住房"; arr.title = "改善型住房";
......
...@@ -153,7 +153,7 @@ ...@@ -153,7 +153,7 @@
<el-table-column prop="createTime" label="审核时间"> <el-table-column prop="createTime" label="审核时间">
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="cell"> <!-- <div class="cell">
<p class="label">是否享受过相关政策</p> <p class="label">是否享受过相关政策</p>
<p <p
:class="[ :class="[
...@@ -163,7 +163,7 @@ ...@@ -163,7 +163,7 @@
> >
{{ viewDetail.enjoyFlag ? "否" : "是" }} {{ viewDetail.enjoyFlag ? "否" : "是" }}
</p> </p>
</div> </div> -->
<!-- 新增功能end --> <!-- 新增功能end -->
<div class="cell"> <div class="cell">
<p class="label">事项名称</p> <p class="label">事项名称</p>
...@@ -1039,7 +1039,7 @@ export default { ...@@ -1039,7 +1039,7 @@ export default {
this.arrList = res[1].data; this.arrList = res[1].data;
this.detail.recordVos.forEach((item) => { this.detail.recordVos.forEach((item) => {
item.departmentName.search("财政复审") != -1 item.departmentName.search("财政") != -1
? (this.arr1 = item.reason) ? (this.arr1 = item.reason)
: ""; : "";
item.departmentName.search("不动产") != -1 item.departmentName.search("不动产") != -1
...@@ -1081,9 +1081,14 @@ export default { ...@@ -1081,9 +1081,14 @@ export default {
let arr = {}; let arr = {};
arr.promiseText = text; arr.promiseText = text;
arr.time = that.detail.createTime.split(" ")[0];
arr.commitmentTypeName =
that.detail.commitmentType == 1 ? "单独所有、共同共有" : "按份共有";
arr.name = that.detail.name; arr.name = that.detail.name;
arr.idCard = that.detail.idCard; arr.idCard = that.detail.idCard;
arr.title = "商办用房"; arr.title = "多子女家庭";
arr.birthDate = arr.birthDate =
that.detail.idCard.substring(6, 10) + that.detail.idCard.substring(6, 10) +
"-" + "-" +
......
...@@ -174,7 +174,7 @@ ...@@ -174,7 +174,7 @@
<el-table-column prop="createTime" label="审核时间"> <el-table-column prop="createTime" label="审核时间">
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="cell"> <div class="cell" v-if="viewDetail.checkArea != '丹阳市'">
<p class="label">是否享受过相关政策</p> <p class="label">是否享受过相关政策</p>
<p <p
:class="[ :class="[
...@@ -966,10 +966,16 @@ export default { ...@@ -966,10 +966,16 @@ export default {
let promiseText = that.$store.state.utils.promiseText; let promiseText = that.$store.state.utils.promiseText;
let text = ""; let text = "";
if (this.realEstateArea == "丹阳市" && that.detail.key1 == "1") { if (
this.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "1"
) {
// 单独所有、共同共有 // 单独所有、共同共有
text = promiseText.alone; text = promiseText.alone;
} else if (this.realEstateArea == "丹阳市" && that.detail.key1 == "1") { } else if (
this.realEstateArea == "丹阳市" &&
that.detail.commitmentType == "2"
) {
// 按份共有 // 按份共有
text = promiseText.together; text = promiseText.together;
...@@ -978,6 +984,11 @@ export default { ...@@ -978,6 +984,11 @@ export default {
} }
let arr = {}; let arr = {};
arr.promiseText = text; arr.promiseText = text;
arr.time = that.detail.createTime.split(" ")[0];
arr.commitmentTypeName =
that.detail.commitmentType == 1 ? "单独所有、共同共有" : "按份共有";
arr.name = that.detail.name; arr.name = that.detail.name;
arr.idCard = that.detail.idCard; arr.idCard = that.detail.idCard;
arr.title = "多子女家庭"; arr.title = "多子女家庭";
......
...@@ -169,7 +169,7 @@ ...@@ -169,7 +169,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="reason" label="审核意见"> </el-table-column> <el-table-column prop="reason" label="审核意见"> </el-table-column>
</el-table> </el-table>
<div class="cell"> <div class="cell" v-if="viewDetail.checkArea != '丹阳市'">
<p class="label">是否享受过相关政策</p> <p class="label">是否享受过相关政策</p>
<p <p
:class="[ :class="[
......
...@@ -160,7 +160,7 @@ ...@@ -160,7 +160,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="reason" label="审核意见"> </el-table-column> <el-table-column prop="reason" label="审核意见"> </el-table-column>
</el-table> </el-table>
<div class="cell"> <div class="cell" v-if="viewDetail.checkArea != '丹阳市'">
<p class="label">是否享受过相关政策</p> <p class="label">是否享受过相关政策</p>
<p <p
:class="[ :class="[
......
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