219 lines
7.4 KiB
Vue
219 lines
7.4 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
<el-form-item :label="systemName+'号'" prop="usercode">
|
|
<el-input
|
|
v-model="queryParams.usercode"
|
|
:placeholder="'请输入'+systemName+'号'"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="手机号" prop="mobile">
|
|
<el-input
|
|
v-model="queryParams.mobile"
|
|
placeholder="请输入手机号"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="primary"
|
|
plain
|
|
icon="el-icon-plus"
|
|
size="mini"
|
|
@click="handleAdd"
|
|
v-hasPermi="['cai:userUnion:add']"
|
|
>新增</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="userUnionList" @selection-change="handleSelectionChange">
|
|
<!-- <el-table-column type="selection" width="55" align="center"/>-->
|
|
<el-table-column :label="systemName+'号'" align="center" prop="usercode" width="60"/>
|
|
<el-table-column label="工会名" align="center" prop="name" />
|
|
<el-table-column label="开启提成" align="center" prop="enableRate" width="80">
|
|
<template v-slot="scope">
|
|
<cai-dict-tag :options="booleanList" :value="scope.row.enableRate"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="创建时间" align="center" prop="unionTime" width="150"/>
|
|
<el-table-column label="工会人数" align="center" prop="allNum"/>
|
|
<el-table-column label="主播人数" align="center" prop="anchorNum"/>
|
|
<!-- <el-table-column label="分成人数" align="center" prop="inDivideNum"/>-->
|
|
<!-- <el-table-column label="不分成人数" align="center" prop="notDivideNum"/>-->
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
<template v-slot="scope">
|
|
<cai-dict-tag :options="userStatusList" :value="scope.row.status"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" width="160" class-name="small-padding fixed-width" fixed="right">
|
|
<template v-slot="scope">
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
@click="handleUpdate(scope.row)"
|
|
v-hasPermi="['cai:userUnion:remove']"
|
|
>修改
|
|
</el-button>
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
@click="handleDetail(scope.row)"
|
|
>详情
|
|
</el-button>
|
|
<el-dropdown size="mini" @command="(command) => handleCommand(command, scope.row)" v-hasPermi="['cai:userUnion:remove']">
|
|
<el-button size="mini" type="text" icon="el-icon-d-arrow-right">更多</el-button>
|
|
<el-dropdown-menu slot="dropdown">
|
|
<el-dropdown-item command="handleDelete" icon="el-icon-delete" v-hasPermi="['cai:userUnion:remove']">解散</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</el-dropdown>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<pagination
|
|
v-show="total>0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
|
|
<union-update-dialog v-if="unionUpdateDialogVisible" ref="unionUpdateDialog" @refreshDataList="getList"/>
|
|
<add-union-dialog v-if="addUnionDialogVisible" ref="addUnionDialog" @refreshDataList="getList" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {delUserUnion, listUserUnion} from '@/api/cai/userUnion'
|
|
import {booleanList, genderList, userStatusList} from '@/constant/statusMap'
|
|
import UnionUpdateDialog from "@/views/cai/userUnion/union-update-dialog";
|
|
import AddUnionDialog from "@/views/cai/userUnion/add-union-dialog";
|
|
|
|
export default {
|
|
name: 'UserUnion',
|
|
components: {
|
|
UnionUpdateDialog,AddUnionDialog
|
|
},
|
|
data() {
|
|
return {
|
|
systemName: process.env.VUE_APP_SYSTEM_HOME,
|
|
genderList, booleanList, userStatusList,
|
|
unionUpdateDialogVisible: false,
|
|
addUnionDialogVisible: false,
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 工会列表表格数据
|
|
userUnionList: [],
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
usercode: undefined,
|
|
mobile: undefined,
|
|
},
|
|
}
|
|
},
|
|
created() {
|
|
this.getList()
|
|
},
|
|
methods: {
|
|
/** 查询工会列表列表 */
|
|
getList() {
|
|
this.loading = true
|
|
listUserUnion(this.queryParams).then(response => {
|
|
this.userUnionList = response.rows
|
|
this.total = response.total
|
|
this.loading = false
|
|
})
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1
|
|
this.getList()
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm('queryForm')
|
|
this.handleQuery()
|
|
},
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
this.ids = selection.map(item => item.id)
|
|
this.single = selection.length !== 1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.unionUpdateDialogVisible = true
|
|
this.$nextTick(() => {
|
|
this.$refs.unionUpdateDialog.init(row)
|
|
})
|
|
},
|
|
handleAdd(row){
|
|
this.addUnionDialogVisible = true
|
|
this.$nextTick(() => {
|
|
this.$refs.addUnionDialog.init(row)
|
|
})
|
|
},
|
|
handleDetail(row){
|
|
const params = { unionId: row.id };
|
|
this.$tab.openPage("["+row.name+"]工会详情", '/tool/union-user/index', params);
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
// '是否确认删除商家名称为"' + row.nickName + '"的数据项?删除后无法回归!'
|
|
const html = `<p>确认解散【<span style="color: red">` + row.name + `</span>】工会 吗?</p>`
|
|
+ `<p>该工会共有:<span style="color: red">` + row.allNum + `</span>人</p>`
|
|
+ `<p>工会解散后,会长的一级好友提成比例也会回归默认值</p>`
|
|
+ `<p style="color: red">删除后将无法撤回,请谨慎操作</p>`
|
|
this.$confirm(html, '警告', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
dangerouslyUseHTMLString: true,
|
|
type: 'warning'
|
|
}).then(() => {
|
|
this.loading = true
|
|
return delUserUnion(row.id)
|
|
}).then(() => {
|
|
this.loading = false
|
|
this.getList()
|
|
this.$modal.msgSuccess('解散成功')
|
|
}).catch(() => {
|
|
}).finally(() => {
|
|
this.loading = false
|
|
})
|
|
},
|
|
handleCommand(command, row) {
|
|
switch (command) {
|
|
case "handleDelete":
|
|
this.handleDelete(row);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
},
|
|
}
|
|
}
|
|
</script>
|