Browse Source

Merge branch 'dev-220411' into test

shibei_master
13176889840 3 years ago
parent
commit
e42a45e29b
  1. 4
      src/views/components/editResi.vue
  2. 4
      src/views/components/resiForm.vue
  3. 30
      src/views/modules/base/resi.vue
  4. 2
      src/views/modules/shequ/cpts/people-more.vue
  5. 2
      src/views/modules/visual/basicinfo/cpts/people-more.vue

4
src/views/components/editResi.vue

@ -803,7 +803,7 @@ export default {
} }
} }
.resi-cell-value .resi-cell-input { .resi-cell-value .resi-cell-input {
max-width: 180px; max-width: 190px;
} }
</style> </style>
@ -841,7 +841,7 @@ export default {
} }
} }
.resi-cell-select { .resi-cell-select {
width: 180px; width: 190px;
box-sizing: border-box; box-sizing: border-box;
margin-right: 10px; margin-right: 10px;
&-middle { &-middle {

4
src/views/components/resiForm.vue

@ -759,7 +759,7 @@ export default {
} }
} }
.resi-cell-value .resi-cell-input { .resi-cell-value .resi-cell-input {
max-width: 180px; max-width: 190px;
} }
.resi-cell-value { .resi-cell-value {
:deep .el-col { :deep .el-col {
@ -787,7 +787,7 @@ export default {
} }
} }
.resi-cell-select { .resi-cell-select {
width: 180px; width: 190px;
box-sizing: border-box; box-sizing: border-box;
margin-right: 10px; margin-right: 10px;
&-middle { &-middle {

30
src/views/modules/base/resi.vue

@ -259,6 +259,10 @@
@closed="diaClose"> @closed="diaClose">
<resi-change-record ref="ref_changerecord"></resi-change-record> <resi-change-record ref="ref_changerecord"></resi-change-record>
</el-dialog> </el-dialog>
<people-more v-if="showedPeopleMoreInfo && lookInfo.userId"
:userId="lookInfo.userId"
:gridName="lookInfo.gridName"
@close="handleCancleLook" />
</div> </div>
</template> </template>
@ -272,6 +276,7 @@ import axios from 'axios'
import { mapGetters } from 'vuex' import { mapGetters } from 'vuex'
import resiTransfer from '../../components/resiTransfer.vue' import resiTransfer from '../../components/resiTransfer.vue'
import resiChangeRecord from '../../components/resiChangeRecord.vue' import resiChangeRecord from '../../components/resiChangeRecord.vue'
import peopleMore from "@/views/modules/shequ/cpts/people-more";
export default { export default {
components: { components: {
@ -279,7 +284,8 @@ export default {
resiForm, resiForm,
editResi, editResi,
resiTransfer, resiTransfer,
resiChangeRecord resiChangeRecord,
peopleMore
}, },
data () { data () {
return { return {
@ -297,6 +303,8 @@ export default {
isIndeterminate: false, isIndeterminate: false,
dialogEditVisible: false, dialogEditVisible: false,
dialogVisible: false, dialogVisible: false,
//
showedPeopleMoreInfo: false,
uploadUlr: window.SITE_CONFIG['apiURL'] + '/epmetuser/icresiuser/importExcel', uploadUlr: window.SITE_CONFIG['apiURL'] + '/epmetuser/icresiuser/importExcel',
currentPage: 1, currentPage: 1,
pageSize: 20, pageSize: 20,
@ -324,6 +332,10 @@ export default {
tranferShow: false, tranferShow: false,
changeRecordShow: false, changeRecordShow: false,
lookInfo: {
userId: '',
gridName: ''
}
} }
}, },
props: { props: {
@ -696,10 +708,18 @@ export default {
console.log(tab, event) console.log(tab, event)
}, },
async handleLook (row) { async handleLook (row) {
this.disabled = true this.lookInfo.userId = row.icResiUserId
this.editAgencyId = row.ORG_ID this.lookInfo.gridName = row.GRID_ID
await this.getFormList('edit') this.showedPeopleMoreInfo = true;
this.getrowInfo(row.icResiUserId) // this.disabled = true
// this.editAgencyId = row.ORG_ID
// await this.getFormList('edit')
// this.getrowInfo(row.icResiUserId)
},
handleCancleLook() {
this.lookInfo.userId = ''
this.lookInfo.gridName = ''
this.showedPeopleMoreInfo = false;
}, },
async handleEdit (row) { async handleEdit (row) {
this.disabled = false this.disabled = false

2
src/views/modules/shequ/cpts/people-more.vue

@ -23,7 +23,7 @@
<span>{{ xiaoquName }}</span> <span>{{ xiaoquName }}</span>
</div> </div>
<div class="item" v-if="index == 0"> <div class="item" v-if="index == 0">
<span class="item-field">所属楼</span> <span class="item-field">所属楼</span>
<span>{{ louName }}-{{ danyuanName }}</span> <span>{{ louName }}-{{ danyuanName }}</span>
</div> </div>
<div class="item" v-if="index == 0"> <div class="item" v-if="index == 0">

2
src/views/modules/visual/basicinfo/cpts/people-more.vue

@ -27,7 +27,7 @@
</div> </div>
<div class="item" <div class="item"
v-if="index == 0"> v-if="index == 0">
<span class="item-field">所属楼</span> <span class="item-field">所属楼</span>
<span>{{ louName }}-{{ danyuanName }}</span> <span>{{ louName }}-{{ danyuanName }}</span>
</div> </div>
<div class="item" <div class="item"

Loading…
Cancel
Save