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