|
@@ -12,8 +12,6 @@
|
|
:page-size="pageSize"
|
|
:page-size="pageSize"
|
|
:total-records="totalRecords"
|
|
:total-records="totalRecords"
|
|
@currentChange="pageHandle"
|
|
@currentChange="pageHandle"
|
|
- :isAdd="true"
|
|
|
|
- @add="openPopup"
|
|
|
|
/>
|
|
/>
|
|
<popup-edit
|
|
<popup-edit
|
|
:isShow="isDtlShow"
|
|
:isShow="isDtlShow"
|
|
@@ -25,7 +23,7 @@
|
|
<script>
|
|
<script>
|
|
import { arrToObj } from '@/utils'
|
|
import { arrToObj } from '@/utils'
|
|
import SearchForm from './components/searchForm/AppSale'
|
|
import SearchForm from './components/searchForm/AppSale'
|
|
-import PopupEdit from './components/popup/IREdit'
|
|
|
|
|
|
+import PopupEdit from './components/popup/AppSaleEdit'
|
|
import baseTable from '_m/baseTable.js'
|
|
import baseTable from '_m/baseTable.js'
|
|
export default {
|
|
export default {
|
|
name: 'index',
|
|
name: 'index',
|
|
@@ -67,9 +65,9 @@ export default {
|
|
{ label: '微信头像', prop: 'avatar', type: 'img' },
|
|
{ label: '微信头像', prop: 'avatar', type: 'img' },
|
|
{ label: '微信电话', prop: 'phone' },
|
|
{ label: '微信电话', prop: 'phone' },
|
|
{ label: '更新时间', prop: 'update_at' },
|
|
{ label: '更新时间', prop: 'update_at' },
|
|
- { label: '操作', width: 100, type: 'handle2', operations:
|
|
|
|
|
|
+ { label: '操作', width: 200, type: 'handle2', operations:
|
|
[
|
|
[
|
|
- // { label: '编辑', func: this.openPopup, btnType: 'primary' },
|
|
|
|
|
|
+ { label: '编辑', func: this.openPopup, btnType: 'primary' },
|
|
{ label: '删除', func: this.delHandle, btnType: 'danger' },
|
|
{ label: '删除', func: this.delHandle, btnType: 'danger' },
|
|
]
|
|
]
|
|
}
|
|
}
|