123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <template>
- <div class="app-container">
- <search-form
- :list-loading="listLoading"
- @change="searchHandle"
- />
- <table-list
- :list-loading="listLoading"
- :data="tableData2"
- :columns="listConfig"
- :current-page="currentPage"
- :page-size="pageSize"
- :total-records="totalRecords"
- @currentChange="pageHandle"
- @sizeChange="sizeChange"
- :isAdd="true"
- @add="openPopup"
- />
- <popup-edit
- :isShow="isDtlShow"
- :curObj="curObj"
- @close="closePopup"
- />
- </div>
- </template>
- <script>
- import { arrToObj } from '@/utils'
- import SearchForm from './components/searchForm/Admin'
- import PopupEdit from './components/popup/AdminEdit'
- import baseTable from '_m/baseTable.js'
- export default {
- name: 'admin',
- components: {
- SearchForm,
- PopupEdit,
- },
- provide() {
- return {
- parentData: this
- }
- },
- mixins: [baseTable],
- data() {
- return {
- apiStr: 'house.admestatemanagelist',
- searchForm: {},
- isDtlShow: false,
- // noCreated: true,
- curObj: {},
- }
- },
- computed: {
- tableData2() {
- const arr = [...this.tableData]
- arr.map(item => {
- })
- return arr
- }
- },
- created() {
- const query = this.$route.query
- this.searchForm.estate_id = query.id || ''
- },
- mounted() {
- this.listConfig = {
- rows: [
- { label: '管理员', prop: 'nickname'},
- { label: '手机号', prop: 'phone'},
- { label: '更新人', prop: 'update_by' },
- { label: '更新时间', prop: 'update_at' },
- { label: '操作', width: 120, type: 'handle2', operations:
- [
- // { label: '编辑', func: this.openPopup, btnType: 'primary' },
- { label: '删除', func: this.delHandle, btnType: 'danger' },
- ]
- }
- ]
- }
- },
- methods: {
- delHandle(row) {
- this.$msg(`您确定要删除该管理员吗?`, 'confirm', () => {
- this.$api.house.admestatemanagedel({
- id: row.id,
- }).then(data => {
- this.$msgs(`已删除!`)
- this.fetchData()
- })
- }, null, true)
- },
- openPopup(row) {
- if (row && row.id) {
- this.curObj = row
- } else {
- this.curObj = {}
- }
- this.isDtlShow = true
- },
- closePopup(obj) {
- this.isDtlShow = false
- if (obj) {
- this.fetchData()
- }
- }
- }
- }
- </script>
|