123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <template>
- <div class="mod-user">
- <avue-crud ref="crud" :page="page" :data="dataList" :option="tableOption" @search-change="searchChange"
- @selection-change="selectionChange" @on-load="getDataList"
- @row-del="deleteUser">
- <!-- <template slot="menuLeft">-->
- <!-- <el-button type="danger"-->
- <!-- @click="deleteHandle()"-->
- <!-- v-if="isAuth('admin:user:delete')"-->
- <!-- size="small"-->
- <!-- :disabled="dataListSelections.length <= 0">批量删除</el-button>-->
- <!-- </template>-->
- <template slot-scope="scope" slot="pic">
- <span class="avue-crud__img" v-if="scope.row.pic">
- <i :src="scope.row.pic" class="el-icon-document"></i>
- </span>
- <span v-else>-</span>
- </template>
- <template slot-scope="scope" slot="status">
- <el-tag v-if="scope.row.status === 0" size="small" type="danger">禁用</el-tag>
- <el-tag v-else size="small">正常</el-tag>
- </template>
- </avue-crud>
- <!-- 弹窗, 新增 / 修改 -->
- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
- </div>
- </template>
- <script>
- import { tableOption } from '@/crud/user/user'
- import AddOrUpdate from './user-add-or-update'
- import Axios from 'axios'
- export default {
- data() {
- return {
- dataList: [],
- dataListLoading: false,
- dataListSelections: [],
- addOrUpdateVisible: false,
- tableOption: tableOption,
- page: {
- total: 1, // 总页数
- currentPage: 1, // 当前页数
- pageSize: 10 // 每页显示多少条
- }
- }
- },
- components: {
- AddOrUpdate
- },
- methods: {
- deleteUser(user){
- this.$confirm(`确定进行删除操作?`, '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- console.log(user.id)
- Axios.post("/user/deleteUser", {id: user.id}
- ).then(({ data }) => {
- console.log(data)
- this.$message({
- message: '操作成功',
- type: 'success',
- duration: 1500,
- onClose: () => {
- this.getDataList()
- }
- })
- })
- })
- },
- // 获取数据列表
- getDataList(page, params, done) {
- this.dataListLoading = true
- Axios.post(this.$http.adornUrl('/user/queryUserList'),
- Object.assign({
- phone: "",
- nickName: "",
- limit: page == null ? this.page.pageSize : page.pageSize,
- page: page == null ? this.page.currentPage : page.currentPage,
- },params)).then(({data})=>{
- this.dataList = data.data.userList
- this.page.total = data.data.total
- this.dataListLoading = false
- if (done) {
- done()
- }
- })
- },
- // 新增 / 修改
- addOrUpdateHandle(id) {
- this.addOrUpdateVisible = true
- this.$nextTick(() => {
- this.$refs.addOrUpdate.init(id)
- })
- },
- // 条件查询
- searchChange(params, done) {
- this.getDataList(this.page, params, done)
- },
- // 多选变化
- selectionChange(val) {
- this.dataListSelections = val
- }
- }
- }
- </script>
|