diff --git a/src/assets/scss/common.scss b/src/assets/scss/common.scss index a2ef7801d..1f4962d6c 100644 --- a/src/assets/scss/common.scss +++ b/src/assets/scss/common.scss @@ -420,6 +420,20 @@ img { height: 24px; vertical-align: middle; overflow: hidden; + @keyframes flicker { + /* 旋转沿x轴旋转-10度,再绕y轴旋转 */ + 0% { + opacity: 0.1; + } + + 100% { + opacity: 1; + } + } + + &.z-on { + animation: flicker 0.9s linear infinite; + } img { position: relative; display: block; diff --git a/src/views/components/resiChangeTransfer.vue b/src/views/components/resiChangeTransfer.vue index da6eeaa7f..d493fc4c5 100644 --- a/src/views/components/resiChangeTransfer.vue +++ b/src/views/components/resiChangeTransfer.vue @@ -299,6 +299,7 @@ export default { this.dataForm.oldDept = ""; this.dataForm.oldAddress = data.houseName; this.dataForm.ownerName = data.ownerName; + this.dataForm.oldHouseMergeId = data.id; } else { this.$message.error(msg); } @@ -511,12 +512,16 @@ export default { async saveForm() { // saveOutOfInfo - const url = "/epmetuser/changeRelocation/moveOutHome"; + const url = "/actual/base/residentMoveOutRecord/saveOutOfInfo"; let noData = new Date(); noData = util.dateFormatter(noData, "time"); this.dataForm.transferTime = noData; - const { data, code, msg } = await requestPost(url, this.dataForm); + const { data, code, msg } = await requestPost(url, { + ...this.dataForm, + deptId: this.dataForm.gridId, + deptName: this.dataForm.gridName, + }); if (code === 0) { this.$message.success("操作成功"); diff --git a/src/views/components/resiForm.vue b/src/views/components/resiForm.vue index 3fcc1186a..f031fb5f4 100644 --- a/src/views/components/resiForm.vue +++ b/src/views/components/resiForm.vue @@ -23,79 +23,83 @@ + label-width="100px">
- - - - - - - - - - - - - - - - - - - - - - - - - - -
+ + + + + + + + + + + + + + + + + + + + + + + + +
- +