123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604 |
- <template>
- <basic-container>
- <avue-crud :option="option"
- :table-loading="loading"
- :data="data"
- :page.sync="page"
- :permission="permissionList"
- :before-open="beforeOpen"
- v-model="form"
- ref="crud"
- @row-update="rowUpdate"
- @row-save="rowSave"
- @row-del="rowDel"
- @search-change="searchChange"
- @search-reset="searchReset"
- @selection-change="selectionChange"
- @current-change="currentChange"
- @size-change="sizeChange"
- @refresh-change="refreshChange"
- @on-load="onLoad">
- <template slot="menuLeft">
- <el-button type="danger"
- size="small"
- icon="el-icon-delete"
- plain
- v-if="permission.userapp_delete"
- @click="handleDelete">删 除
- </el-button>
- </template>
- <template slot="isStore" slot-scope="scope">
- <el-tag v-if="scope.row.isStore === 1" type="success">{{ scope.row.$isStore }}</el-tag>
- <el-tag v-if="scope.row.isStore === 0" type="primary">{{ scope.row.$isStore }}</el-tag>
- </template>
- <template slot="livingHall" slot-scope="scope">
- <el-tag v-if="scope.row.livingHall === 0" type="warning">{{ scope.row.$livingHall }}</el-tag>
- <el-tag v-else-if="scope.row.livingHall === 1" type="success">{{ scope.row.$livingHall }}</el-tag>
- </template>
- <template slot-scope="{type,size,row}" slot="menu">
- <el-button v-if="row.state == 1" :size="size" :type="type" @click="forbidden(row, 2)">禁用</el-button>
- <el-button v-if="row.state == 2" :size="size" :type="type" @click="forbidden(row, 1)">启用</el-button>
- <el-button v-if="row.livingHall === 0" :size="size" :type="type" @click="setLeader(row)">设为团长</el-button>
- <el-button v-if="row.livingHall === 1" :size="size" :type="type" @click="removeLeader(row)">移除团长</el-button>
- <el-button v-if="row.isStore === 0" :size="size" :type="type" @click="handleAddTicket(row)">设为供应商</el-button>
- <el-button v-if="row.isStore === 1" :size="size" :type="type" @click="removeStore(row)">移除供应商</el-button>
- </template>
- </avue-crud>
- <el-dialog title="选择自提点" :visible.sync="dialogVisible" width="80%" :append-to-body="true" :before-close="handleClose" >
- <avue-crud :option="selfTakeOption"
- :table-loading="selfTakeLoading"
- :data="selfTakeData"
- :page.sync="selfTakePage"
- v-model="selfTakeForm"
- ref="selfTakeCrud"
- @search-change="selfTakeSearchChange"
- @search-reset="selfTakeSearchReset"
- @selection-change="selfTakeSelectionChange"
- @current-change="selfTakeCurrentChange"
- @size-change="selfTakeSizeChange"
- @refresh-change="selfTakeRefreshChange"
- @on-load="selfTakeOnLoad">
- </avue-crud>
- <span slot="footer" class="dialog-footer">
- <el-button @click="handleClose">取 消</el-button>
- <el-button type="primary" @click="addUserSelfTake">确 定</el-button>
- </span>
- </el-dialog>
- <el-dialog title="新增供应商" append-to-body :visible.sync="addUserTicketBox" width="450px" :before-close="handleClose">
- <el-form :model="store" ref="store" label-width="80px">
- <el-form-item label="会员名称" labelWidth="130" prop="userName">
- <el-input v-model="store.userName" disabled="false" />
- </el-form-item>
- <el-form-item label="供应商名称" labelWidth="130" prop="name" :rules="[{ required: true, message: '供应商名称不能为空'}]">
- <el-input v-model="store.name" placeholder="请输入供应商名称" />
- </el-form-item>
- <el-form-item label="供应商电话" labelWidth="130" prop="tel" :rules="[{ required: true, message: '电话不能为空'}]">
- <el-input v-model="store.tel" placeholder="请输入供应商名称电话" />
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button @click="addUserTicketBox = false">取 消</el-button>
- <el-button type="primary" @click="submitTicket" :loading="addTicketButLoading">确 定</el-button>
- </div>
- </el-dialog>
- </basic-container>
- </template>
- <style>
- .codeGeting{
- background: #cdcdcd;
- border-color: #cdcdcd;
- }
- </style>
- <script>
- import {getList, getDetail, add, update, remove, addStore, removeCommander, setUpCommander} from "../../api/platform/userapp";
- import {listByUserId,getList as getSelfTakeList,addUserSelfTake } from "../../api/groupon/selftake";
- import {mapGetters} from "vuex";
- import {selfTakeOption} from "../../option/platform/userapp"
- export default {
- data() {
- return {
- leaderUserId: 0,
- selfTakeOption: selfTakeOption,
- addTicketButLoading: false,
- dialogVisible: false,
- getCodeButName: '获取验证码',
- disable: false,
- isGeting: false,
- count: 60,
- addUserTicketBox: false,
- addUserTicketForm: {
- score: '',
- code: '',
- codeId: ''
- },
- store: {
- userId: '',
- userName: '',
- name: '',
- tel: ''
- },
- form: {},
- query: {},
- loading: true,
- page: {
- pageSize: 10,
- currentPage: 1,
- total: 0
- },
- selectionList: [],
- option: {
- height:'auto',
- calcHeight: 30,
- tip: false,
- searchShow: true,
- searchMenuSpan: 6,
- border: true,
- // index: true,
- viewBtn: true,
- viewBtnIcon: ' ',
- editBtnIcon: ' ',
- selection: false,
- dialogClickModal: false,
- menuAlign: 'left',
- searchLabelWidth:100,
- menuWidth: 265,
- searchIcon: true,
- searchIndex: 3,
- column: [
- {
- label: "主键ID",
- prop: "id",
- hide: true,
- display: false,
- },
- {
- label: "用户ID",
- prop: "userId",
- hide: true,
- display: false,
- },
- {
- label: "会员昵称",
- prop: "name",
- addDisplay: true,
- editDisplay: true,
- search: true,
- },
- {
- label: "会员姓名",
- prop: "realName",
- addDisplay: true,
- editDisplay: true,
- search: true,
- },
- {
- label: "手机号",
- prop: "phone",
- addDisplay: false,
- editDisplay: false,
- search: true,
- },
- {
- label: "供应商身份",
- prop: "isStore",
- type: "select",
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=is_store",
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- dataType: "number",
- hide: false,
- search: true,
- addDisplay: false,
- editDisplay: false,
- rules: [{
- required: true,
- message: "请选择状态",
- trigger: "blur"
- }]
- },
- {
- label: "团长身份",
- prop: "livingHall",
- type: "select",
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=is_captain",
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- dataType: "number",
- hide: false,
- search: true,
- addDisplay: false,
- editDisplay: false,
- rules: [{
- required: true,
- message: "请选择状态",
- trigger: "blur"
- }]
- },
- {
- label: "状态",
- prop: "state",
- type: "select",
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=user_state",
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- dataType: "number",
- hide: false,
- search: true,
- addDisplay: true,
- rules: [{
- required: true,
- message: "请选择状态",
- trigger: "blur"
- }]
- },
- {
- label: "注册时间",
- prop: "createTime",
- addDisplay: false,
- editDisplay: false,
- width: 150
- },
- ]
- },
- data: [],
- userExportShow: false,
- userExportForm: {},
- userExportLoading: false,
- selfTakeList:[],
- selfTakeListTotal:0,
- mySelfTakeList:[],
- mySelfTakeListTotal:0,
- row:{},
- selfTakePage: {
- pageSize: 10,
- currentPage: 1,
- total: 0
- },
- selfTakeData: [],
- selfTakeLoading: false,
- selfTakeForm: {},
- selfTakeQuery: {},
- selfTakeSelectionList: []
- };
- },
- computed: {
- ...mapGetters(["permission"]),
- permissionList() {
- return {
- addBtn: this.vaildData(this.permission.userapp_add, false),
- viewBtn: this.vaildData(this.permission.userapp_view, false),
- delBtn: this.vaildData(this.permission.userapp_delete, false),
- editBtn: this.vaildData(this.permission.userapp_edit, false)
- };
- },
- ids() {
- let ids = [];
- this.selectionList.forEach(ele => {
- ids.push(ele.id);
- });
- return ids.join(",");
- }
- },
- methods: {
- deleteRow(index,mySelfTakeList){
- console.log(index);
- console.log(mySelfTakeList);
- this.mySelfTakeList =[];
- },
- addUserSelfTake(){
- if (this.selfTakeSelectionList.length === 0) {
- this.$message.warning("请选择一条数据");
- return;
- }
- if (this.selfTakeSelectionList.length > 1) {
- this.$message.warning("只能选择一条数据");
- return;
- }
- setUpCommander({
- userId: this.leaderUserId,
- selfTakeId: this.selfTakeSelectionList[0].id
- }).then(res =>{
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.onLoad(this.page, this.query)
- this.handleClose();
- })
- },
- handleCurrentChange(e){
- let arr = [];
- arr.push(e);
- this.mySelfTakeList = arr;
- },
- getCurrentChange(e){
- console.log(e)
- getSelfTakeList(e,10,{status:1}).then(res =>{
- console.log(res)
- this.selfTakeListTotal = res.data.data.total
- this.selfTakeList = res.data.data.records
- })
- },
- addSelftake(row){
- this.row =row;
- this.dialogVisible = true;
- getSelfTakeList(1,10,{status:1}).then(res =>{
- console.log(res)
- this.selfTakeListTotal = res.data.data.total
- this.selfTakeList = res.data.data.records
- })
- listByUserId(row.userId).then(res =>{
- this.mySelfTakeList = res.data.data
- })
- },
- /**
- * 移除团长
- * @param row
- */
- removeLeader(row) {
- removeCommander({
- userId: row.userId
- }).then(res =>{
- this.onLoad(this.page, this.query);
- this.$message({
- type: "success",
- message: "移除成功"
- });
- })
- },
- setLeader(row) {
- this.leaderUserId = row.userId;
- this.dialogVisible = true;
- },
- /**
- * 禁用用户
- * @param row
- * @param state
- */
- forbidden(row, state) {
- let title = state == 1 ? '启用' : '禁用';
- this.$confirm('此操作将会' + title+ '该用户, 是否继续?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- row.state = state;
- this.loading = true;
- update(row).then(res => {
- if(res.data.code !== 200){
- this.$message.error(res.data.msg);
- } else{
- this.$message.success(res.data.msg);
- }
- this.loading = false;
- })
- }).catch(() => {});
- },
- rowSave(row, done, loading) {
- add(row).then(() => {
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- done();
- }, error => {
- loading();
- window.console.log(error);
- });
- },
- rowUpdate(row, index, done, loading) {
- update(row).then(() => {
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- done();
- }, error => {
- loading();
- console.log(error);
- });
- },
- rowDel(row) {
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- return remove(row.id);
- })
- .then(() => {
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- });
- },
- handleAddTicket(row) {
- this.store.userName = row.realName
- this.store.userId = row.userId
- this.store.tel = row.phone
- this.addUserTicketBox = true;
- },
- handleDelete() {
- if (this.selectionList.length === 0) {
- this.$message.warning("请选择至少一条数据");
- return;
- }
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- return remove(this.ids);
- })
- .then(() => {
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.$refs.crud.toggleSelection();
- });
- },
- beforeOpen(done, type) {
- if (["edit", "view"].includes(type)) {
- getDetail(this.form.id).then(res => {
- this.form = res.data.data;
- });
- }
- done();
- },
- searchReset() {
- this.query = {};
- this.onLoad(this.page);
- },
- searchChange(params, done) {
- this.query = params;
- this.page.currentPage = 1;
- this.onLoad(this.page, params);
- done();
- },
- selectionChange(list) {
- this.selectionList = list;
- },
- selectionClear() {
- this.selectionList = [];
- this.$refs.crud.toggleSelection();
- },
- currentChange(currentPage){
- this.page.currentPage = currentPage;
- },
- sizeChange(pageSize){
- this.page.pageSize = pageSize;
- },
- refreshChange() {
- this.onLoad(this.page, this.query);
- },
- onLoad(page, params = {}) {
- this.loading = true;
- this.query.userType = 2;
- getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
- const data = res.data.data;
- this.page.total = data.total;
- this.data = data.records;
- this.loading = false;
- this.selectionClear();
- });
- },
- submitTicket() {
- this.$refs["store"].validate((valid) => {
- if (valid) {
- const loading = this.$loading({
- lock: true,
- text: '处理中,请稍等...',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)'
- });
- this.addTicketButLoading = true;
- addStore(this.store).then(res => {
- loading.close();
- this.$message.success("增加成功");
- this.onLoad(this.page, this.query);
- }).catch(e => {
- this.addTicketButLoading = false;
- loading.close();
- })
- } else {
- return false;
- }
- });
- },
- selfTakeSearchReset() {
- this.selfTakeQuery = {};
- this.selfTakeOnLoad(this.selfTakePage);
- },
- selfTakeSearchChange(params, done) {
- this.selfTakeQuery = params;
- this.selfTakePage.currentPage = 1;
- this.selfTakeOnLoad(this.selfTakePage, params);
- done();
- },
- selfTakeSelectionChange(list) {
- this.selfTakeSelectionList = list;
- },
- selfTakeSelectionClear() {
- this.selfTakeSelectionList = [];
- this.$refs.selfTakeCrud.toggleSelection();
- },
- selfTakeCurrentChange(currentPage){
- this.selfTakePage.currentPage = currentPage;
- },
- selfTakeSizeChange(pageSize){
- this.selfTakePage.pageSize = pageSize;
- },
- selfTakeRefreshChange() {
- this.selfTakeOnLoad(this.selfTakePage, this.selfTakeQuery);
- },
- selfTakeOnLoad(page, params = {}) {
- this.selfTakeLoading = true;
- this.selfTakeQuery.status = 1;
- getSelfTakeList(page.currentPage, page.pageSize, Object.assign(params, this.selfTakeQuery)).then(res => {
- const data = res.data.data;
- this.selfTakePage.total = data.total;
- this.selfTakeData = data.records;
- this.selfTakeLoading = false;
- this.selfTakeSelectionClear();
- });
- },
- handleClose() {
- this.leaderUserId = 0;
- this.dialogVisible = false;
- this.addUserTicketBox = false
- this.store = {};
- this.addTicketButLoading = false;
- },
- /**
- * 移除供应商
- */
- removeStore(row) {
- }
- }
- };
- </script>
- <style>
- </style>
|