You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
3.6 KiB
129 lines
3.6 KiB
<template>
|
|
<div class="mod-user-userAddr">
|
|
<avue-crud ref="crud"
|
|
:page="page"
|
|
:data="dataList"
|
|
:table-loading="dataListLoading"
|
|
:option="tableOption"
|
|
@search-change="searchChange"
|
|
@on-load="getDataList"
|
|
@refresh-change="refreshChange"
|
|
@row-del="rowDel">
|
|
<template slot="menuLeft">
|
|
<el-button type="primary"
|
|
icon="el-icon-plus"
|
|
size="small"
|
|
v-if="isAuth('user:addr:save')"
|
|
@click="addOrUpdateHandle()">新增</el-button>
|
|
</template>
|
|
<template slot-scope="scope"
|
|
slot="menu">
|
|
<el-button type="primary"
|
|
icon="el-icon-edit"
|
|
size="small"
|
|
v-if="isAuth('user:addr:update')"
|
|
@click="addOrUpdateHandle(scope.row.addrId)">修改</el-button>
|
|
<el-button type="danger"
|
|
icon="el-icon-delete"
|
|
size="small"
|
|
v-if="isAuth('user:addr:delete')"
|
|
@click="rowDel(scope.row,scope.$index)">删除</el-button>
|
|
</template>
|
|
</avue-crud>
|
|
<add-or-update v-if="addOrUpdateVisible"
|
|
ref="addOrUpdate"
|
|
@refreshDataList="refreshChange"></add-or-update>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { tableOption } from '@/crud/user/addr'
|
|
import AddOrUpdate from './addr-add-or-update'
|
|
export default {
|
|
data () {
|
|
return {
|
|
dataList: [],
|
|
page: {
|
|
total: 0, // 总页数
|
|
currentPage: 1, // 当前页数
|
|
pageSize: 10 // 每页显示多少条
|
|
},
|
|
dataListLoading: false,
|
|
tableOption: tableOption,
|
|
permission: {
|
|
delBtn: this.isAuth('user:userAddr:delete')
|
|
},
|
|
addOrUpdateVisible: false
|
|
}
|
|
},
|
|
created () {
|
|
},
|
|
mounted () {
|
|
},
|
|
components: {
|
|
AddOrUpdate
|
|
},
|
|
methods: {
|
|
getDataList (page, params, done) {
|
|
this.dataListLoading = true
|
|
this.$http({
|
|
url: this.$http.adornUrl('/user/addr/page'),
|
|
method: 'get',
|
|
params: this.$http.adornParams(Object.assign({
|
|
current: page == null ? this.page.currentPage : page.currentPage,
|
|
size: page == null ? this.page.pageSize : page.pageSize
|
|
}, params))
|
|
}).then(({ data }) => {
|
|
this.dataList = data.records
|
|
this.page.total = data.total
|
|
this.dataListLoading = false
|
|
if (done) {
|
|
done()
|
|
}
|
|
})
|
|
},
|
|
// 新增 / 修改
|
|
addOrUpdateHandle (id) {
|
|
this.addOrUpdateVisible = true
|
|
this.$nextTick(() => {
|
|
this.$refs.addOrUpdate.init(id)
|
|
})
|
|
},
|
|
rowDel (row, index) {
|
|
this.$confirm('确定进行删除操作?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
this.$http({
|
|
url: this.$http.adornUrl('/user/addr/' + row.addrId),
|
|
method: 'delete',
|
|
data: this.$http.adornData({})
|
|
}).then(({ data }) => {
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success',
|
|
duration: 1500,
|
|
onClose: () => {
|
|
this.getDataList(this.page)
|
|
}
|
|
})
|
|
})
|
|
}).catch(() => { })
|
|
},
|
|
/**
|
|
* 刷新回调
|
|
*/
|
|
refreshChange () {
|
|
this.getDataList(this.page)
|
|
},
|
|
searchChange (params, done) {
|
|
this.getDataList(this.page, params, done)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|