diff --git a/src/assets/scss/modules/management/edit-main.scss b/src/assets/scss/modules/management/edit-main.scss
index f5911f83b..4d507d7f0 100644
--- a/src/assets/scss/modules/management/edit-main.scss
+++ b/src/assets/scss/modules/management/edit-main.scss
@@ -98,7 +98,7 @@
line-height: 36px
}
/deep/ .el-input__inner{
- width:100%;
+ width:95%;
background-color: #F6F6F6;
border:0px;
line-height: 26px;
@@ -117,6 +117,10 @@
background:none;
}
+ /deep/ .el-input__prefix{
+ left:700px;
+ }
+
}
.edit_item_width_1{
diff --git a/src/views/components/resiChangeTransfer.vue b/src/views/components/resiChangeTransfer.vue
index 646ca924a..f4079c944 100644
--- a/src/views/components/resiChangeTransfer.vue
+++ b/src/views/components/resiChangeTransfer.vue
@@ -115,15 +115,14 @@
-
+
@@ -149,20 +148,16 @@
-
-
+
+ 取 消
取消
- 提交
+ @click="handleComfirm">提 交
+
diff --git a/src/views/modules/base/community/buildForm.vue b/src/views/modules/base/community/buildForm.vue
index da65235f3..fd914c3e8 100644
--- a/src/views/modules/base/community/buildForm.vue
+++ b/src/views/modules/base/community/buildForm.vue
@@ -173,7 +173,7 @@
取 消
取 消
取 消
迁出登记
- 死亡登记
@@ -339,11 +339,11 @@
@close="handleCancleLook" />
-
+
+
+
+
+
@@ -364,12 +376,14 @@ import { mapGetters } from "vuex";
import resiTransfer from "../../components/resiTransfer.vue";
import resiChangeRecord from "../../components/resiChangeRecord.vue";
+
import peopleMore from "@/views/modules/shequ/cpts/people-more";
import baobiao from "@/views/modules/cpts/baobiao";
import diyInfo from "./diyInfo.vue";
import { requestPost } from "@/js/dai/request";
import resiChangeTransfer from "../../components/resiChangeTransfer.vue";
+import resideathAdd from "../plugins/change/resideathAdd.vue";
export default {
components: {
@@ -383,6 +397,7 @@ export default {
diyInfo,
resiChangeTransfer,
+ resideathAdd,
},
data () {
return {
@@ -433,6 +448,7 @@ export default {
defaultCategotyKey: "",
tranferShow: false,
+ deathShow: false,
changeRecordShow: false,
lookInfo: {
userId: "",
@@ -548,6 +564,12 @@ export default {
await nextTick(200);
this.$refs.ref_change_transfer.initForm(row)
},
+ //迁出记录
+ async handleDeath (row) {
+ this.deathShow = true;
+ await nextTick(200);
+ this.$refs.ref_death.initForm(row)
+ },
//变更记录
async handleChangeRecord (row) {
@@ -558,6 +580,7 @@ export default {
diaClose () {
this.tranferShow = false;
+ this.deathShow = false;
this.changeRecordShow = false;
},
@@ -565,6 +588,10 @@ export default {
this.tranferShow = false;
this.getTableData();
},
+ deathClose () {
+ this.deathShow = false;
+ this.getTableData();
+ },
handleDiyClose () {
this.diyDialog = false;
},
diff --git a/src/views/modules/plugins/change/resideath.vue b/src/views/modules/plugins/change/resideath.vue
index 1edf4f7e4..22aa93043 100644
--- a/src/views/modules/plugins/change/resideath.vue
+++ b/src/views/modules/plugins/change/resideath.vue
@@ -1,10 +1,10 @@
@@ -299,7 +306,7 @@ import peopleMore from "@/views/modules/shequ/cpts/people-more";
export default {
components: {
- deathSearch,
+ deathSearch,
resiForm,
editResi,
resiTransfer,
@@ -359,7 +366,7 @@ export default {
blacklistReason: '', // 加入黑名单原因
welfareFlag: false,
rowData: {}, // 加入黑名单的人员信息
- deathDate: ''
+ deathDate: ''
}
},
props: {
@@ -378,7 +385,7 @@ export default {
},
computed: {
...mapGetters(['clientHeight', 'iframeHeight']),
- tableHeight() {
+ tableHeight () {
const h = this.clientHeight - this.searchH - 280 + this.iframeHeigh
const _h = this.clientHeight - 280 - this.searchH
return this.$store.state.inIframe ? h : _h
@@ -414,13 +421,13 @@ export default {
},
methods: {
searchFilter (columnName) {
- const filterName = [ 'NAME', 'MOBILE', 'ID_CARD' ]
+ const filterName = ['NAME', 'MOBILE', 'ID_CARD']
return filterName.some(item => {
return item == columnName
})
},
tableHeaderFilter (columnName) {
- const filterName = [ 'NAME', 'GRID_ID', 'HOME_ID', 'MOBILE', 'ID_CARD', 'GENDER' ]
+ const filterName = ['NAME', 'GRID_ID', 'HOME_ID', 'MOBILE', 'ID_CARD', 'GENDER']
return filterName.some(item => {
return item == columnName
})
@@ -447,7 +454,7 @@ export default {
if (this.deathDate === '') {
this.$message({
message: '请选择死亡日期',
- type:'warning'
+ type: 'warning'
})
return false
}
@@ -502,7 +509,7 @@ export default {
let wd = ''
if (type == 'input' || type == 'select') wd = 40 * label.length
- else if(type == 'radio') wd = 20 * label.length
+ else if (type == 'radio') wd = 20 * label.length
console.log('type-----wd', wd)
return wd > 80 ? wd : 80
},
@@ -794,7 +801,7 @@ export default {
// await this.getFormList('edit')
// this.getrowInfo(row.icResiUserId)
},
- handleCancleLook() {
+ handleCancleLook () {
this.lookInfo.userId = ''
this.lookInfo.gridName = ''
this.showedPeopleMoreInfo = false;
diff --git a/src/views/modules/plugins/change/resideathAdd.vue b/src/views/modules/plugins/change/resideathAdd.vue
new file mode 100644
index 000000000..388066d6c
--- /dev/null
+++ b/src/views/modules/plugins/change/resideathAdd.vue
@@ -0,0 +1,207 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取 消
+ 提 交
+
+
+
+
+
+
+