|
|
|
@ -77,6 +77,9 @@ |
|
|
|
@click="deleteBatch">批量删除</el-button> |
|
|
|
<!-- <el-button type="primary" size="small">下载人口模板</el-button> --> |
|
|
|
|
|
|
|
<el-button size="small" |
|
|
|
class="diy-button--add" |
|
|
|
@click="reportForm">智能填报</el-button> |
|
|
|
</div> |
|
|
|
<el-table ref="ref_table" |
|
|
|
:data="tableData" |
|
|
|
@ -315,7 +318,7 @@ |
|
|
|
:userId="lookInfo.userId" |
|
|
|
:gridName="lookInfo.gridName" |
|
|
|
@close="handleCancleLook" /> |
|
|
|
|
|
|
|
<baobiao ref="baobiao" /> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
@ -329,11 +332,13 @@ 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"; |
|
|
|
import baobiao from "@/views/modules/cpts/baobiao"; |
|
|
|
import diyInfo from './diyInfo.vue' |
|
|
|
import { requestPost } from "@/js/dai/request"; |
|
|
|
|
|
|
|
export default { |
|
|
|
components: { |
|
|
|
baobiao, |
|
|
|
resiSearch, |
|
|
|
resiForm, |
|
|
|
editResi, |
|
|
|
@ -394,7 +399,7 @@ export default { |
|
|
|
lookInfo: { |
|
|
|
userId: '', |
|
|
|
gridName: '' |
|
|
|
} |
|
|
|
}, |
|
|
|
} |
|
|
|
}, |
|
|
|
props: { |
|
|
|
@ -449,6 +454,18 @@ export default { |
|
|
|
console.log('document.documentElement.clientWidth', document.documentElement.clientHeight) |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
reportForm(){ |
|
|
|
this.$refs.baobiao.init({ |
|
|
|
elseParams: { |
|
|
|
categoryKeys:['resi_info'], categoryKey: 'resi_info', paramMap:{ |
|
|
|
formCode: 'resi_base_info', |
|
|
|
pageNo: this.currentPage, |
|
|
|
pageSize: this.pageSize, |
|
|
|
conditions: this.conditions |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
checkSelect (row, index) { |
|
|
|
|
|
|
|
return row.isChecked |
|
|
|
|