diff --git a/src/assets/img/yanjing1.png b/src/assets/img/yanjing1.png
new file mode 100644
index 000000000..a5a14daa1
Binary files /dev/null and b/src/assets/img/yanjing1.png differ
diff --git a/src/assets/img/yanjing2.png b/src/assets/img/yanjing2.png
new file mode 100644
index 000000000..ca591cb38
Binary files /dev/null and b/src/assets/img/yanjing2.png differ
diff --git a/src/views/business/resi-category-map.js b/src/views/business/resi-category-map.js
index 7a125a8a0..5e239c62d 100644
--- a/src/views/business/resi-category-map.js
+++ b/src/views/business/resi-category-map.js
@@ -1,8 +1,8 @@
export default {
PARTY_FLAG: "党员",
- SUBSISTENCE_ALLOWANCE_FLAG: "低保户",
- ENSURE_HOUSE_FLAG: "保障房",
- UNEMPLOYED_FLAG: "失业",
+ SUBSISTENCE_ALLOWANCE_FLAG: "低保人员",
+ ENSURE_HOUSE_FLAG: "保障房人员",
+ UNEMPLOYED_FLAG: "失业人员",
FERTILE_WOMAN_FLAG: "育龄妇女",
VETERAN_FLAG: "退役军人",
UNITED_FRONT_FLAG: "统战人员",
diff --git a/src/views/components/resiChangeTransfer.vue b/src/views/components/resiChangeTransfer.vue
index 5018b20aa..5f4f32abf 100644
--- a/src/views/components/resiChangeTransfer.vue
+++ b/src/views/components/resiChangeTransfer.vue
@@ -157,11 +157,10 @@
@@ -227,7 +227,7 @@
@click="handleDownQr(agencyObj, 'community')"
>社区二维码
-
+ -->
-->
-
-
+
+
+
查询
-
-
+
+
@@ -547,13 +548,16 @@ export default {
importLoading: false,
searchH: 0,
- tableHeight: 0,
changeRecordShow: false,
};
},
computed: {
...mapGetters(["clientHeight", "iframeHeight"]),
-
+ tableHeight(){
+ const h = this.clientHeight - 450 + this.iframeHeigh;
+ const _h = this.clientHeight - 450;
+ return this.$store.state.inIframe ? h : _h;
+ },
changeVDisabled() {
return !this.fmData.villageId;
},
@@ -563,6 +567,7 @@ export default {
changeDDisabled() {
return !this.fmData.unitId;
},
+
},
watch: {
rangeTime: function (val) {
@@ -575,15 +580,6 @@ export default {
this.fmData.endTime = "";
}
},
- searchH() {
- const h = this.clientHeight - this.searchH + this.iframeHeight;
- const _h = this.clientHeight - this.searchH;
- console.log("computed-searchH---_h", _h);
-
- this.$nextTick(() => {
- this.tableHeight = this.$store.state.inIframe ? h : _h;
- });
- },
},
mounted() {
this.getGridList();
diff --git a/src/views/modules/base/resi.vue b/src/views/modules/base/resi.vue
index ff0ba434f..8ff6492bb 100644
--- a/src/views/modules/base/resi.vue
+++ b/src/views/modules/base/resi.vue
@@ -241,7 +241,7 @@
}}
{{
scope.row.categoryInfo.ensureHouseFlag == 1
- ? "保障房 "
+ ? "保障房人员 "
: ""
}}
{{
@@ -289,7 +289,7 @@
{{
scope.row.categoryInfo
.subsistenceAllowanceFlag == 1
- ? "低保 "
+ ? "低保人员 "
: ""
}}
{{
@@ -2003,4 +2003,11 @@ export default {
margin-left: auto;
}
}
+.el-dropdown-menu {
+ ::v-deep .el-dropdown-menu__item{
+ &:hover{
+ color: #0056d6;
+ }
+ }
+}
diff --git a/src/views/modules/home/index.vue b/src/views/modules/home/index.vue
index b78ea8387..0c3e4b9d4 100644
--- a/src/views/modules/home/index.vue
+++ b/src/views/modules/home/index.vue
@@ -51,7 +51,7 @@

- 智能搜索
+ 智能查询
diff --git a/src/views/modules/home/notice.vue b/src/views/modules/home/notice.vue
index 3bfaeeb8b..9dbf7b2da 100644
--- a/src/views/modules/home/notice.vue
+++ b/src/views/modules/home/notice.vue
@@ -201,6 +201,7 @@ export default {
&:hover {
.item-title {
color: #0056d6;
+ cursor: pointer;
}
.item-btn-clear {
display: block;
diff --git a/src/views/modules/plugins/change/changedeath.vue b/src/views/modules/plugins/change/changedeath.vue
index 86a05754c..4a2159a12 100644
--- a/src/views/modules/plugins/change/changedeath.vue
+++ b/src/views/modules/plugins/change/changedeath.vue
@@ -69,8 +69,11 @@
-->
-
-
+
+
+ 重置
查询
-
-
+
+
@@ -96,6 +99,7 @@
class="m-table-item"
v-loading="dataListLoading"
:data="dataList"
+ :height="tableHeight"
border
>
@@ -277,7 +281,7 @@ import nextTick from "dai-js/tools/nextTick";
import resiChangeRecord from "@/views/components/resiChangeRecord.vue";
import { requestPost } from "@/js/dai/request";
import resiInfo from "@/views/components/resiInfo.vue";
-
+import { mapGetters } from "vuex";
export default {
mixins: [mixinViewModule],
data() {
@@ -328,6 +332,14 @@ export default {
resiInfo,
resiChangeRecord,
},
+ computed:{
+ ...mapGetters(["clientHeight", "iframeHeight"]),
+ tableHeight(){
+ const h = this.clientHeight - 410 + this.iframeHeigh;
+ const _h = this.clientHeight - 410;
+ return this.$store.state.inIframe ? h : _h;
+ },
+ },
methods: {
async handleRecovery(rowData) {
console.log("11111");
diff --git a/src/views/modules/plugins/change/changerelocation.vue b/src/views/modules/plugins/change/changerelocation.vue
index 56097448c..88c1e9ca7 100644
--- a/src/views/modules/plugins/change/changerelocation.vue
+++ b/src/views/modules/plugins/change/changerelocation.vue
@@ -164,7 +164,7 @@
查询
@@ -321,7 +321,6 @@
slot="reference"
type="text"
size="small"
- class="div-table-button--blue"
>恢复
@@ -442,7 +441,6 @@ export default {
changeRecordShow: false,
searchH: 0,
- tableHeight: 0,
};
},
components: {
@@ -452,6 +450,11 @@ export default {
},
computed: {
...mapGetters(["clientHeight", "iframeHeight"]),
+ tableHeight(){
+ const h = this.clientHeight - 420 + this.iframeHeigh;
+ const _h = this.clientHeight - 420;
+ return this.$store.state.inIframe ? h : _h;
+ },
changeVDisabled() {
return !this.dataForm.villageId;
},
@@ -480,15 +483,6 @@ export default {
this.dataForm.endTime = "";
}
},
- searchH() {
- const h = this.clientHeight - this.searchH + this.iframeHeight;
- const _h = this.clientHeight - this.searchH;
- console.log("computed-searchH---_h", _h);
-
- this.$nextTick(() => {
- this.tableHeight = this.$store.state.inIframe ? h : _h;
- });
- },
},
methods: {
async handleRecovery(rowData) {
diff --git a/src/views/modules/plugins/change/resideathAdd.vue b/src/views/modules/plugins/change/resideathAdd.vue
index 91342318a..c3d1453b0 100644
--- a/src/views/modules/plugins/change/resideathAdd.vue
+++ b/src/views/modules/plugins/change/resideathAdd.vue
@@ -56,10 +56,10 @@
- 取 消
+ 取 消
保 存