diff --git a/src/assets/scss/buttonstyle.scss b/src/assets/scss/buttonstyle.scss index dbf80ad00..51b592f90 100644 --- a/src/assets/scss/buttonstyle.scss +++ b/src/assets/scss/buttonstyle.scss @@ -39,7 +39,9 @@ border: none !important; } - +.diy-button--blue:hover{ + background: #0042a3 !important; +} //黄色 .diy-button--yellow { background: linear-gradient(0deg, #FAA700 0%, #FFBF28 100%) !important; @@ -95,15 +97,18 @@ font-size: 14px !important; font-family: PingFangSC-Regular, PingFang SC; font-weight: 400; - color: #0056D6 !important; + color: #0056d6 !important; // line-height: 22px !important; min-width: 60px !important; height: 32px !important; - // padding:0 8px !important; background: #FFFFFF !important; border-radius: 2px !important; - border: 1px solid #0056D6 !important; + border: 1px solid #0056d6 !important; +} +.diy-button--white:hover{ + border: 1px solid #0042a3 !important; + color: #0042a3 !important; } // 普通按钮 .diy-button--common { diff --git a/src/views/components/resiForm.vue b/src/views/components/resiForm.vue index 9f40b73b9..2a2cb1eee 100644 --- a/src/views/components/resiForm.vue +++ b/src/views/components/resiForm.vue @@ -195,6 +195,7 @@ :multiple="itemk.formName=='specialCategoryCode'" :collapse-tags="itemk.formName=='specialCategoryCode'" clearable + :style="{'width':itemk.formName=='specialCategoryCode'?'183px':''}" class="u-item-width-normal"> { + this.$http.post(`/actual/base/residentHealthInfo/getHealthInfoDetailById/${id}`).then(({ data: res }) => { if (res.code !== 0) { return this.$message.error(res.msg); } else { @@ -2039,6 +2045,7 @@ export default { this.newForm.healthDto = this.form.healthDto } }) + }, // 工作信息详情 residentWorkInfo(id) { @@ -2457,4 +2464,5 @@ export default { .f-bto0{ margin-bottom: 0px !important; } + diff --git a/src/views/components/resiInfo.vue b/src/views/components/resiInfo.vue index 30d13cac2..6a2dd0280 100644 --- a/src/views/components/resiInfo.vue +++ b/src/views/components/resiInfo.vue @@ -444,36 +444,6 @@ - - - -
-
死亡时间 :
- {{residentDeathRecordObj?residentDeathRecordObj.deathDate?residentDeathRecordObj.deathDate.substr(0,10):'--':'--'}} -
-
- -
-
加入原因 :
- {{residentDeathRecordObj?residentDeathRecordObj.deathReason ?residentDeathRecordObj.deathReason :'--':'--'}} -
-
- -
-
移除时间 :
- {{residentDeathRecordObj?residentDeathRecordObj.removeDate ?residentDeathRecordObj.removeDate.substr(0,10) :'--':'--'}} -
-
-
- - -
-
移除原因 :
- {{residentDeathRecordObj?residentDeathRecordObj.removeReason?residentDeathRecordObj.removeReason:'--':'--'}} -
-
-
-
@@ -856,6 +826,35 @@ -- + + + +
+
死亡时间 :
+ {{residentDeathRecordObj?residentDeathRecordObj.deathDate?residentDeathRecordObj.deathDate.substr(0,10):'--':'--'}} +
+
+ +
+
加入原因 :
+ {{residentDeathRecordObj?residentDeathRecordObj.deathReason ?residentDeathRecordObj.deathReason :'--':'--'}} +
+
+ +
+
移除时间 :
+ {{residentDeathRecordObj?residentDeathRecordObj.removeDate ?residentDeathRecordObj.removeDate.substr(0,10) :'--':'--'}} +
+
+
+ + +
+
移除原因 :
+ {{residentDeathRecordObj?residentDeathRecordObj.removeReason?residentDeathRecordObj.removeReason:'--':'--'}} +
+
+
diff --git a/src/views/components/resiSearch.vue b/src/views/components/resiSearch.vue index a47077356..9c8c1bbcd 100644 --- a/src/views/components/resiSearch.vue +++ b/src/views/components/resiSearch.vue @@ -39,10 +39,10 @@ - + - + diff --git a/src/views/modules/base/resi.vue b/src/views/modules/base/resi.vue index c6d73f8c9..28bf62b13 100644 --- a/src/views/modules/base/resi.vue +++ b/src/views/modules/base/resi.vue @@ -16,7 +16,7 @@ style="margin-left: 10px" size="small" plain - class=" f-right5" + class=" f-right5 diy-button--white" @click="resetSearchForm" >重置 导出核对批量删除 { - // if (res.code !== 0) { - // return this.$message.error(res.msg); - // } else { - // this.$refs.baseForm.old_from(res.data); - // } - // }).catch((err) => { - // return this.$message.error("网络错误"); - // }); - // }, + residentBaseInfo () { + this.$http.post(`/actual/base/residentBaseInfo/detail/${this.editUserId}`).then(({ data: res }) => { + if (res.code !== 0) { + return this.$message.error(res.msg); + } else { + this.$refs.baseForm.old_from(res.data); + } + }).catch((err) => { + return this.$message.error("网络错误"); + }); + }, handlerReset() { this.$refs.baseForm.resetForm(); },