diff --git a/.env.development b/.env.development index 316568064..a3e8ed2df 100644 --- a/.env.development +++ b/.env.development @@ -1,6 +1,7 @@ NODE_ENV=development VUE_APP_API_SERVER = http://localhost:9001/api +# VUE_APP_API_SERVER = http://192.168.1.140/api # VUE_APP_API_SERVER = http://219.146.91.110:30801/api # VUE_APP_API_SERVER = https://epmet-yantai.elinkservice.cn/api # VUE_APP_API_SERVER = https://epmet-test.elinkservice.cn/api diff --git a/src/assets/scss/dataBoard/overview/index.scss b/src/assets/scss/dataBoard/overview/index.scss index 1878a00e1..c4537482c 100644 --- a/src/assets/scss/dataBoard/overview/index.scss +++ b/src/assets/scss/dataBoard/overview/index.scss @@ -41,7 +41,21 @@ .m-subbox { @include scrollBar; height: 334px; - overflow-y: auto; + overflow-y: hidden; +} + +.animation { + animation: move 10s linear infinite; +} + +@keyframes move { + 0% { + transform: translateY(0px); + } + + 100% { + transform: translateY(-320px); + } } .m-jdjs { diff --git a/src/assets/scss/dataBoard/renfang/index.scss b/src/assets/scss/dataBoard/renfang/index.scss index 5f277248e..d9543ccb9 100644 --- a/src/assets/scss/dataBoard/renfang/index.scss +++ b/src/assets/scss/dataBoard/renfang/index.scss @@ -325,7 +325,7 @@ .m-subbox { @include scrollBar; height: 423px; - overflow-y: auto; + // overflow-y: auto; } .m-szsq { diff --git a/src/views/components/resiForm.vue b/src/views/components/resiForm.vue index c090e11df..404e82f90 100644 --- a/src/views/components/resiForm.vue +++ b/src/views/components/resiForm.vue @@ -308,8 +308,8 @@ @@ -479,7 +479,7 @@ export default { { label: '国籍', itemType: "select", - requiredFlag: true, + rules: [{ required: true, message: '国籍不能为空' }], formName: 'nationality', opction: [], }, @@ -1222,6 +1222,8 @@ export default { label: '人群类别', itemType: "select1", formName: "specialCategoryCode", + multiple:true, + collapseTags:true, opction: [] },] }, @@ -1263,6 +1265,8 @@ export default { label: '岗位类型', itemType: "select1", formName: "jobPost", + multiple:true, + collapseTags:true, opction: [] }, ] @@ -1529,7 +1533,7 @@ export default { }, postDto: { hiredate: '',//入职时间 - jobPost: '',//岗位类型 + jobPost: [],//岗位类型 userId: '' }, birthRecordDTO: { @@ -1770,7 +1774,7 @@ export default { await this.getDictData('chronic_disease_code', 'chronicDiseaseCode') }, async getWelfareDict () { - await this.getDictData('welfare_post', 'jobPost') + await this.getDictData('public_welfare_post_type', 'jobPost') }, async getUnemployment () { await this.getDictData('unemployment_cause', 'unemploymentReason') @@ -2669,7 +2673,7 @@ export default { } else { this.form.postDto = res.data ? res.data : { hiredate: '',//入职时间 - jobPost: '', //岗位类型 + jobPost: [], //岗位类型 userId: id } diff --git a/src/views/components/resiSearch.vue b/src/views/components/resiSearch.vue index 774f1d65b..6fdf20724 100644 --- a/src/views/components/resiSearch.vue +++ b/src/views/components/resiSearch.vue @@ -833,10 +833,17 @@ export default { } else { agencyIdTemp = this.form.agencyId[this.form.agencyId.length - 1] } + var gridIdQuery = ''; + var agencyIdQuery = this.form.agencyId[0]; + if (this.form.agencyId.length >= 2) { + agencyIdQuery= this.form.agencyId[this.form.agencyId.length - 2]; + gridIdQuery = this.form.agencyId[this.form.agencyId.length - 1]; + } + this.$http .post('/actual/base/communityQuarters/listQuartersOptions', { - gridId: this.form.agencyId[1], - agencyId: this.form.agencyId[0], + gridId: gridIdQuery, + agencyId: agencyIdQuery, // agencyId: user.agencyId }) .then(({ data: res }) => { @@ -853,8 +860,8 @@ export default { }, getBuildList () { this.$http - .post('/gov/org/icbuilding/buildingoption', { - neighborHoodId: this.form.villageId + .post('/actual/base/communityBuilding/buildingoption', { + quartersId: this.form.villageId }) .then(({ data: res }) => { if (res.code !== 0) { @@ -870,7 +877,7 @@ export default { }, getUniList () { this.$http - .post('/gov/org/icbuildingunit/unitoption', { + .post('/actual/base/communityBuildingUnit/unitoption', { buildingId: this.form.buildId }) .then(({ data: res }) => { @@ -887,7 +894,7 @@ export default { }, getHouseList () { this.$http - .post('/gov/org/ichouse/houseoption', { unitId: this.form.unitId }) + .post('/actual/base/communityHouse/houseoption', { buildingId: this.form.buildId,unitId: this.form.unitId }) .then(({ data: res }) => { if (res.code !== 0) { return this.$message.error(res.msg) diff --git a/src/views/dataBoard/cpts/homeDetails/index.vue b/src/views/dataBoard/cpts/homeDetails/index.vue index 57eddbcfb..3ed7e7315 100644 --- a/src/views/dataBoard/cpts/homeDetails/index.vue +++ b/src/views/dataBoard/cpts/homeDetails/index.vue @@ -1,27 +1,28 @@