|
@@ -0,0 +1,665 @@
|
|
|
|
|
+<template>
|
|
|
|
|
+ <div class="app-container">
|
|
|
|
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
|
+ <el-form-item label="会员ID" prop="userId">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.userId"
|
|
|
|
|
+ placeholder="请输入会员ID"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="用户昵称" prop="nickName">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.nickName"
|
|
|
|
|
+ placeholder="请输入用户昵称"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="手机号码" prop="phone">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.phone"
|
|
|
|
|
+ placeholder="请输入手机号码"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="加密号码" prop="phoneMk">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.phoneMk"
|
|
|
|
|
+ placeholder="请输入手机号码"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="用户状态" prop="status">
|
|
|
|
|
+ <el-select v-model="queryParams.status" placeholder="请选择用户状态" clearable size="small">
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="dict in userOptions"
|
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
|
+ :value="dict.dictValue"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="是否购药" prop="isBuy">
|
|
|
|
|
+ <el-select v-model="queryParams.isBuy" placeholder="请选择用户状态" clearable size="small">
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="dict in orOptions"
|
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
|
+ :value="dict.dictValue"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="直播归属销售" prop="bindCompanyUserId" label-width="110px">
|
|
|
|
|
+ <el-select
|
|
|
|
|
+ v-model="queryParams.bindCompanyUserId"
|
|
|
|
|
+ placeholder="请选择直播归属销售"
|
|
|
|
|
+ filterable
|
|
|
|
|
+ clearable
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ style="width: 200px"
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="item in companyUserList"
|
|
|
|
|
+ :key="item.userId"
|
|
|
|
|
+ :label="`${item.nickName}-${item.userName}`"
|
|
|
|
|
+ :value="item.userId"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="注册时间" prop="createTime">
|
|
|
|
|
+ <el-date-picker v-model="createTime" size="small" style="width: 220px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" @change="change"></el-date-picker>
|
|
|
|
|
+ </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="warning"
|
|
|
|
|
+ plain
|
|
|
|
|
+ icon="el-icon-download"
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ :loading="exportLoading"
|
|
|
|
|
+ @click="handleExport"
|
|
|
|
|
+ v-hasPermi="['his:user:export']"
|
|
|
|
|
+ >导出</el-button>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ plain
|
|
|
|
|
+ icon="el-icon-d-arrow-right"
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ :disabled="multiple"
|
|
|
|
|
+ @click="handleTransfer"
|
|
|
|
|
+ >转移直播归属销售</el-button>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
+ </el-row>
|
|
|
|
|
+
|
|
|
|
|
+ <el-table v-loading="loading" border :data="userList" @selection-change="handleSelectionChange" >
|
|
|
|
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
+
|
|
|
|
|
+ <el-table-column label="用户昵称" align="center" prop="nickName" width="150px"/>
|
|
|
|
|
+ <el-table-column label="用户头像" align="center" prop="avatar" >
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-image v-if="scope.row.avatar!=null"
|
|
|
|
|
+ style="width: 50px;"
|
|
|
|
|
+ :src="scope.row.avatar"
|
|
|
|
|
+ >
|
|
|
|
|
+ </el-image>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column label="手机号码" align="center" prop="phone" width="150px" />
|
|
|
|
|
+ <el-table-column label="用户积分" align="center" prop="integral" />
|
|
|
|
|
+ <el-table-column label="用户状态" align="center" prop="status" >
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <dict-tag :options="userOptions" :value="scope.row.status"/>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column label="直播归属销售" align="center" prop="bindCompanyUserNickName" min-width="120" />
|
|
|
|
|
+ <el-table-column label="注册时间" align="center" prop="createTime" width="150px" />
|
|
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right" width="150px">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ type="text"
|
|
|
|
|
+ @click="handledetails(scope.row)"
|
|
|
|
|
+ >详情</el-button>
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ type="text"
|
|
|
|
|
+ @click="handleNickName(scope.row)"
|
|
|
|
|
+ >修改昵称</el-button>
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ type="text"
|
|
|
|
|
+ v-if="scope.row.phone==null || scope.row.phone==''"
|
|
|
|
|
+ @click="handleBindPhone(scope.row)"
|
|
|
|
|
+ >绑定手机号</el-button>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ </el-table>
|
|
|
|
|
+
|
|
|
|
|
+ <pagination
|
|
|
|
|
+ v-show="total>0"
|
|
|
|
|
+ :total="total"
|
|
|
|
|
+ :page.sync="queryParams.pageNum"
|
|
|
|
|
+ :limit.sync="queryParams.pageSize"
|
|
|
|
|
+ @pagination="getList"
|
|
|
|
|
+ />
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 添加或修改用户对话框 -->
|
|
|
|
|
+ <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
|
|
+ <el-form-item label="用户昵称" prop="nickName">
|
|
|
|
|
+ <el-input v-model="form.nickName" placeholder="请输入用户昵称" />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <!-- <el-form-item label="用户状态" prop="status">
|
|
|
|
|
+ <el-select v-model="form.status" placeholder="请选择状态" clearable size="small">
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="dict in userOptions"
|
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
|
+ :value="dict.dictValue"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="用户备注" prop="remark" >
|
|
|
|
|
+ <el-input v-model="form.remark" placeholder="请输入用户备注" type="textarea"/>
|
|
|
|
|
+ </el-form-item> -->
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </el-dialog>
|
|
|
|
|
+
|
|
|
|
|
+ <el-drawer
|
|
|
|
|
+ :with-header="false"
|
|
|
|
|
+ size="75%"
|
|
|
|
|
+ :title="show.title" :visible.sync="show.open">
|
|
|
|
|
+ <userDetails ref="userDetails" />
|
|
|
|
|
+ </el-drawer>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 绑定用户手机号 -->
|
|
|
|
|
+ <el-dialog :title="bindPhone.title" :visible.sync="bindPhone.open" width="500px" append-to-body>
|
|
|
|
|
+ <el-form ref="bindPhoneForm" :model="bindPhoneForm" :rules="bindRules" label-width="80px">
|
|
|
|
|
+ <el-form-item label="用户昵称" prop="nickName" label-width="100px">
|
|
|
|
|
+ <el-input v-model="bindPhoneForm.nickName" placeholder="请输入用户昵称" :disabled="true"/>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="用户手机号" prop="phone" label-width="100px">
|
|
|
|
|
+ <el-input v-model="bindPhoneForm.phone" placeholder="请输入用户手机号">
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ slot="append"
|
|
|
|
|
+ @click="sendCode"
|
|
|
|
|
+ :disabled="bindPhone.isCountingDown || bindPhone.countdown > 120"
|
|
|
|
|
+ :loading="bindPhone.sendCodeLoading"
|
|
|
|
|
+ >
|
|
|
|
|
+ {{ countdownText }}
|
|
|
|
|
+ </el-button>
|
|
|
|
|
+ </el-input>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <el-form-item label="验证码" prop="code" label-width="100px">
|
|
|
|
|
+ <el-input v-model="bindPhoneForm.code" placeholder="请输入验证码"/>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
|
+ <el-button type="primary" @click="submitBindPhoneForm">确 定</el-button>
|
|
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </el-dialog>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 转移直播归属销售 -->
|
|
|
|
|
+ <el-dialog title="转移直播归属销售" :visible.sync="openTransferDialog" width="500px" append-to-body>
|
|
|
|
|
+ <el-form ref="transferForm" :model="transferForm" :rules="transferRules" label-width="120px">
|
|
|
|
|
+ <el-form-item label="转移至销售" prop="companyUserId">
|
|
|
|
|
+ <el-select
|
|
|
|
|
+ v-model="transferForm.companyUserId"
|
|
|
|
|
+ placeholder="请选择销售"
|
|
|
|
|
+ filterable
|
|
|
|
|
+ clearable
|
|
|
|
|
+ style="width: 100%"
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="item in companyUserList"
|
|
|
|
|
+ :key="item.userId"
|
|
|
|
|
+ :label="`${item.nickName}-${item.userName}`"
|
|
|
|
|
+ :value="item.userId"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <p>确定将选中的 <strong>{{ ids.length }}</strong> 个用户的直播归属销售进行转移吗?</p>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
|
+ <el-button type="primary" @click="submitTransfer">确 定</el-button>
|
|
|
|
|
+ <el-button @click="cancelTransfer">取 消</el-button>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </el-dialog>
|
|
|
|
|
+
|
|
|
|
|
+ </div>
|
|
|
|
|
+</template>
|
|
|
|
|
+
|
|
|
|
|
+<script>
|
|
|
|
|
+import { listUser, getUser, delUser, addUser, updateUser, exportUser,sendCode,bindPhone } from "@/api/store/user";
|
|
|
|
|
+import {getUserList, batchBindCompanyUserId} from "@/api/company/companyUser";
|
|
|
|
|
+import userDetails from '../components/userDetails.vue';
|
|
|
|
|
+export default {
|
|
|
|
|
+ name: "LiveBindUser",
|
|
|
|
|
+ components: {userDetails},
|
|
|
|
|
+ data() {
|
|
|
|
|
+ return {
|
|
|
|
|
+ orOptions:[],
|
|
|
|
|
+ companyUserList: [],
|
|
|
|
|
+ openTransferDialog: false,
|
|
|
|
|
+ transferForm: {
|
|
|
|
|
+ companyUserId: null
|
|
|
|
|
+ },
|
|
|
|
|
+ transferRules: {
|
|
|
|
|
+ companyUserId: [
|
|
|
|
|
+ { required: true, message: "请选择转移至销售", trigger: "change" }
|
|
|
|
|
+ ]
|
|
|
|
|
+ },
|
|
|
|
|
+ bindRules: {
|
|
|
|
|
+ phone: [
|
|
|
|
|
+ { required: true, message: '请输入手机号', trigger: 'blur' },
|
|
|
|
|
+ { pattern: /^1[3-9]\d{9}$/, message: '请输入正确的手机号', trigger: 'blur' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ code: [
|
|
|
|
|
+ { required: true, message: '请输入验证码', trigger: 'blur' }
|
|
|
|
|
+ ]
|
|
|
|
|
+ },
|
|
|
|
|
+ bindPhoneForm:{
|
|
|
|
|
+ nickName: '',
|
|
|
|
|
+ userId: null,
|
|
|
|
|
+ phone: '',
|
|
|
|
|
+ code: ''
|
|
|
|
|
+ },
|
|
|
|
|
+ bindPhone:{
|
|
|
|
|
+ // 弹出层标题
|
|
|
|
|
+ title: "",
|
|
|
|
|
+ // 是否显示弹出层
|
|
|
|
|
+ open: false,
|
|
|
|
|
+ // 发送验证码相关
|
|
|
|
|
+ countdown: 0, // 当前倒计时秒数
|
|
|
|
|
+ isCountingDown: false, // 是否正在倒计时
|
|
|
|
|
+ sendCodeLoading: false, // 发送中loading
|
|
|
|
|
+ countdownTimer: null, // 定时器引用
|
|
|
|
|
+ },
|
|
|
|
|
+ show:{
|
|
|
|
|
+ title:"用户详情",
|
|
|
|
|
+ open:false,
|
|
|
|
|
+ },
|
|
|
|
|
+ userOptions: [],
|
|
|
|
|
+ // 遮罩层
|
|
|
|
|
+ loading: true,
|
|
|
|
|
+ // 导出遮罩层
|
|
|
|
|
+ exportLoading: false,
|
|
|
|
|
+ // 选中数组
|
|
|
|
|
+ ids: [],
|
|
|
|
|
+ // 非单个禁用
|
|
|
|
|
+ single: true,
|
|
|
|
|
+ // 非多个禁用
|
|
|
|
|
+ multiple: true,
|
|
|
|
|
+ // 显示搜索条件
|
|
|
|
|
+ showSearch: true,
|
|
|
|
|
+ // 总条数
|
|
|
|
|
+ total: 0,
|
|
|
|
|
+ // 用户表格数据
|
|
|
|
|
+ userList: [],
|
|
|
|
|
+ // 弹出层标题
|
|
|
|
|
+ title: "",
|
|
|
|
|
+ // 是否显示弹出层
|
|
|
|
|
+ open: false,
|
|
|
|
|
+ createTime:null,
|
|
|
|
|
+ // 查询参数
|
|
|
|
|
+ queryParams: {
|
|
|
|
|
+ pageNum: 1,
|
|
|
|
|
+ pageSize: 10,
|
|
|
|
|
+ nickName: null,
|
|
|
|
|
+ avatar: null,
|
|
|
|
|
+ phone: null,
|
|
|
|
|
+ phoneMk: null,
|
|
|
|
|
+ integral: null,
|
|
|
|
|
+ status: null,
|
|
|
|
|
+ tuiUserId: null,
|
|
|
|
|
+ tuiTime: null,
|
|
|
|
|
+ tuiUserCount: null,
|
|
|
|
|
+ maOpenId: null,
|
|
|
|
|
+ mpOpenId: null,
|
|
|
|
|
+ unionId: null,
|
|
|
|
|
+ isDel: null,
|
|
|
|
|
+ userCode: null,
|
|
|
|
|
+ lastIp: null,
|
|
|
|
|
+ balance: null,
|
|
|
|
|
+ sTime:null,
|
|
|
|
|
+ eTime:null,
|
|
|
|
|
+ isBuy:null,
|
|
|
|
|
+ bindCompanyUserId: null,
|
|
|
|
|
+ // 仅展示有直播归属销售的用户
|
|
|
|
|
+ hasBindCompanyUser: 1,
|
|
|
|
|
+ },
|
|
|
|
|
+ // 表单参数
|
|
|
|
|
+ form: {},
|
|
|
|
|
+ // 表单校验
|
|
|
|
|
+ rules: {
|
|
|
|
|
+ nickName: [
|
|
|
|
|
+ { required: true, message: "昵称不能为空", trigger: "blur" }
|
|
|
|
|
+ ],
|
|
|
|
|
+ status: [
|
|
|
|
|
+ { required: true, message: "用户状态不能为空", trigger: "blur" }
|
|
|
|
|
+ ],
|
|
|
|
|
+ integral: [
|
|
|
|
|
+ { required: true, message: "用户积分不能为空", trigger: "blur" }
|
|
|
|
|
+ ],
|
|
|
|
|
+ }
|
|
|
|
|
+ };
|
|
|
|
|
+ },
|
|
|
|
|
+ computed: {
|
|
|
|
|
+ // 倒计时按钮文字
|
|
|
|
|
+ countdownText() {
|
|
|
|
|
+ if (this.bindPhone.sendCodeLoading) {
|
|
|
|
|
+ return '发送中...';
|
|
|
|
|
+ }
|
|
|
|
|
+ if (this.bindPhone.isCountingDown) {
|
|
|
|
|
+ return `${this.bindPhone.countdown}s后重发`;
|
|
|
|
|
+ }
|
|
|
|
|
+ return '发送验证码';
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ // 页面销毁时清除定时器
|
|
|
|
|
+ beforeDestroy() {
|
|
|
|
|
+ this.clearCountdown();
|
|
|
|
|
+ },
|
|
|
|
|
+ created() {
|
|
|
|
|
+ getUserList().then(res => {
|
|
|
|
|
+ if (res.code === 200) {
|
|
|
|
|
+ this.companyUserList = res.data;
|
|
|
|
|
+ }
|
|
|
|
|
+ });
|
|
|
|
|
+ this.getList();
|
|
|
|
|
+ this.getDicts("sys_user_status").then(response => {
|
|
|
|
|
+ this.userOptions = response.data;
|
|
|
|
|
+ });
|
|
|
|
|
+ this.getDicts("sys_company_or").then(response => {
|
|
|
|
|
+ this.orOptions = response.data;
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ methods: {
|
|
|
|
|
+ change(){
|
|
|
|
|
+ if(this.createTime!=null){
|
|
|
|
|
+ this.queryParams.sTime=this.createTime[0];
|
|
|
|
|
+ this.queryParams.eTime=this.createTime[1];
|
|
|
|
|
+ }else{
|
|
|
|
|
+ this.queryParams.sTime=null;
|
|
|
|
|
+ this.queryParams.eTime=null;
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ handledetails(row){
|
|
|
|
|
+ this.show.open=true;
|
|
|
|
|
+ setTimeout(() => {
|
|
|
|
|
+ this.$refs.userDetails.getDetails(row.userId);
|
|
|
|
|
+ }, 1);
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 查询用户列表 */
|
|
|
|
|
+ getList() {
|
|
|
|
|
+ this.loading = true;
|
|
|
|
|
+ listUser(this.queryParams).then(response => {
|
|
|
|
|
+ this.userList = response.rows;
|
|
|
|
|
+ this.total = response.total;
|
|
|
|
|
+ this.loading = false;
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ // 取消按钮
|
|
|
|
|
+ cancel() {
|
|
|
|
|
+ this.open = false;
|
|
|
|
|
+ this.reset();
|
|
|
|
|
+ },
|
|
|
|
|
+ // 表单重置
|
|
|
|
|
+ reset() {
|
|
|
|
|
+ this.form = {
|
|
|
|
|
+ userId: null,
|
|
|
|
|
+ nickName: null,
|
|
|
|
|
+ avatar: null,
|
|
|
|
|
+ phone: null,
|
|
|
|
|
+ integral: null,
|
|
|
|
|
+ status: null,
|
|
|
|
|
+ tuiUserId: null,
|
|
|
|
|
+ tuiTime: null,
|
|
|
|
|
+ tuiUserCount: null,
|
|
|
|
|
+ maOpenId: null,
|
|
|
|
|
+ mpOpenId: null,
|
|
|
|
|
+ unionId: null,
|
|
|
|
|
+ isDel: null,
|
|
|
|
|
+ userCode: null,
|
|
|
|
|
+ remark: null,
|
|
|
|
|
+ createTime: null,
|
|
|
|
|
+ updateTime: null,
|
|
|
|
|
+ lastIp: null,
|
|
|
|
|
+ balance: null
|
|
|
|
|
+ };
|
|
|
|
|
+ this.resetForm("form");
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 搜索按钮操作 */
|
|
|
|
|
+ handleQuery() {
|
|
|
|
|
+ this.queryParams.pageNum = 1;
|
|
|
|
|
+ this.getList();
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 重置按钮操作 */
|
|
|
|
|
+ resetQuery() {
|
|
|
|
|
+ this.resetForm("queryForm");
|
|
|
|
|
+ this.createTime=null;
|
|
|
|
|
+ this.queryParams.sTime=null;
|
|
|
|
|
+ this.queryParams.eTime=null;
|
|
|
|
|
+ this.queryParams.hasBindCompanyUser = 1;
|
|
|
|
|
+ this.handleQuery();
|
|
|
|
|
+ },
|
|
|
|
|
+ // 多选框选中数据
|
|
|
|
|
+ handleSelectionChange(selection) {
|
|
|
|
|
+ this.ids = selection.map(item => item.userId)
|
|
|
|
|
+ this.single = selection.length!==1
|
|
|
|
|
+ this.multiple = !selection.length
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 转移直播归属销售 */
|
|
|
|
|
+ handleTransfer() {
|
|
|
|
|
+ if (this.ids.length === 0) {
|
|
|
|
|
+ this.$message.warning("请至少选择一个用户进行转移");
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+ this.transferForm = {
|
|
|
|
|
+ companyUserId: null
|
|
|
|
|
+ };
|
|
|
|
|
+ this.openTransferDialog = true;
|
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
|
+ if (this.$refs.transferForm) {
|
|
|
|
|
+ this.$refs.transferForm.clearValidate();
|
|
|
|
|
+ }
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ cancelTransfer() {
|
|
|
|
|
+ this.openTransferDialog = false;
|
|
|
|
|
+ this.transferForm = {
|
|
|
|
|
+ companyUserId: null
|
|
|
|
|
+ };
|
|
|
|
|
+ },
|
|
|
|
|
+ submitTransfer() {
|
|
|
|
|
+ this.$refs["transferForm"].validate(valid => {
|
|
|
|
|
+ if (!valid) {
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+ batchBindCompanyUserId({
|
|
|
|
|
+ companyUserId: this.transferForm.companyUserId,
|
|
|
|
|
+ fsUserIds: this.ids
|
|
|
|
|
+ }).then(response => {
|
|
|
|
|
+ if (response.code === 200) {
|
|
|
|
|
+ this.$message.success("转移成功");
|
|
|
|
|
+ this.openTransferDialog = false;
|
|
|
|
|
+ this.getList();
|
|
|
|
|
+ }
|
|
|
|
|
+ });
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 开始倒计时 */
|
|
|
|
|
+ startCountdown(seconds) {
|
|
|
|
|
+ this.bindPhone.countdown = seconds;
|
|
|
|
|
+ this.bindPhone.isCountingDown = true;
|
|
|
|
|
+
|
|
|
|
|
+ this.clearCountdown();
|
|
|
|
|
+ this.bindPhone.countdownTimer = setInterval(() => {
|
|
|
|
|
+ this.bindPhone.countdown--;
|
|
|
|
|
+ if (this.bindPhone.countdown <= 0) {
|
|
|
|
|
+ this.clearCountdown();
|
|
|
|
|
+ }
|
|
|
|
|
+ }, 1000);
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ /** 清除倒计时 */
|
|
|
|
|
+ clearCountdown() {
|
|
|
|
|
+ if (this.bindPhone.countdownTimer) {
|
|
|
|
|
+ clearInterval(this.bindPhone.countdownTimer);
|
|
|
|
|
+ this.bindPhone.countdownTimer = null;
|
|
|
|
|
+ }
|
|
|
|
|
+ if (this.bindPhone.countdown <= 0) {
|
|
|
|
|
+ this.bindPhone.isCountingDown = false;
|
|
|
|
|
+ this.bindPhone.countdown = 0;
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 发送验证码 */
|
|
|
|
|
+ sendCode(){
|
|
|
|
|
+ const phone = this.bindPhoneForm.phone
|
|
|
|
|
+ if (phone === null || phone === "") {
|
|
|
|
|
+ this.$message.error("请输入正确手机号");
|
|
|
|
|
+ }
|
|
|
|
|
+ console.log("-----------------",phone);
|
|
|
|
|
+ // 60秒内不能重复点击(倒计时 > 120 时禁止,即180-60=120)
|
|
|
|
|
+ if (this.bindPhone.countdown > 120) {
|
|
|
|
|
+ this.$message.warning(`请${this.bindPhone.countdown - 120}秒后再试`);
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ // 表单验证
|
|
|
|
|
+ this.$refs.bindPhoneForm.validateField('phone', (errorMessage) => {
|
|
|
|
|
+ if (errorMessage) {
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ const phone = this.bindPhoneForm.phone;
|
|
|
|
|
+ this.sendCodeLoading = true;
|
|
|
|
|
+
|
|
|
|
|
+ sendCode(phone).then(response => {
|
|
|
|
|
+ this.sendCodeLoading = false;
|
|
|
|
|
+ if (response.code === 200) {
|
|
|
|
|
+ this.$message.success('验证码已发送,有效期180秒');
|
|
|
|
|
+ // 开始180秒倒计时
|
|
|
|
|
+ this.startCountdown(180);
|
|
|
|
|
+ } else {
|
|
|
|
|
+ this.$message.error(response.msg || '发送失败');
|
|
|
|
|
+ }
|
|
|
|
|
+ }).catch(() => {
|
|
|
|
|
+ this.sendCodeLoading = false;
|
|
|
|
|
+ });
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 绑定手机按钮操作 */
|
|
|
|
|
+ handleBindPhone(row){
|
|
|
|
|
+ this.bindPhoneForm.nickName = row.nickName;
|
|
|
|
|
+ this.bindPhoneForm.userId = row.userId;
|
|
|
|
|
+ this.bindPhone.title = "绑定用户手机";
|
|
|
|
|
+ this.bindPhone.open = true;
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 新增按钮操作 */
|
|
|
|
|
+ handleNickName(row) {
|
|
|
|
|
+ this.reset();
|
|
|
|
|
+ this.open = true;
|
|
|
|
|
+ this.form.nickName = row.nickname;
|
|
|
|
|
+ this.form.userId = row.userId;
|
|
|
|
|
+ this.title = "修改用户昵称";
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 修改按钮操作 */
|
|
|
|
|
+ handleUpdate(row) {
|
|
|
|
|
+ this.reset();
|
|
|
|
|
+ const userId = row.userId || this.ids
|
|
|
|
|
+ getUser(userId).then(response => {
|
|
|
|
|
+ this.form = response.data;
|
|
|
|
|
+ this.open = true;
|
|
|
|
|
+ this.title = "修改用户";
|
|
|
|
|
+ this.form.status = String(this.form.status)
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ submitBindPhoneForm(){
|
|
|
|
|
+ this.$refs["bindPhoneForm"].validate(valid => {
|
|
|
|
|
+ if (valid) {
|
|
|
|
|
+ bindPhone(this.bindPhoneForm).then(response => {
|
|
|
|
|
+ this.msgSuccess("绑定成功");
|
|
|
|
|
+ this.bindPhone.open = false;
|
|
|
|
|
+ this.clearCountdown();
|
|
|
|
|
+ this.bindPhone.open = false;
|
|
|
|
|
+ this.getList();
|
|
|
|
|
+ });
|
|
|
|
|
+ }
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 提交按钮 */
|
|
|
|
|
+ submitForm() {
|
|
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
|
|
+ if (valid) {
|
|
|
|
|
+ if (this.form.userId != null) {
|
|
|
|
|
+ updateUser(this.form).then(response => {
|
|
|
|
|
+ this.msgSuccess("修改成功");
|
|
|
|
|
+ this.open = false;
|
|
|
|
|
+ this.getList();
|
|
|
|
|
+ });
|
|
|
|
|
+ } else {
|
|
|
|
|
+ addUser(this.form).then(response => {
|
|
|
|
|
+ this.msgSuccess("新增成功");
|
|
|
|
|
+ this.open = false;
|
|
|
|
|
+ this.getList();
|
|
|
|
|
+ });
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 删除按钮操作 */
|
|
|
|
|
+ handleDelete(row) {
|
|
|
|
|
+ const userIds = row.userId || this.ids;
|
|
|
|
|
+ this.$confirm('是否确认删除用户编号为"' + userIds + '"的数据项?', "警告", {
|
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
|
+ type: "warning"
|
|
|
|
|
+ }).then(function() {
|
|
|
|
|
+ return delUser(userIds);
|
|
|
|
|
+ }).then(() => {
|
|
|
|
|
+ this.getList();
|
|
|
|
|
+ this.msgSuccess("删除成功");
|
|
|
|
|
+ }).catch(() => {});
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 导出按钮操作 */
|
|
|
|
|
+ handleExport() {
|
|
|
|
|
+ const queryParams = this.queryParams;
|
|
|
|
|
+ this.$confirm('是否确认导出所有用户数据项?', "警告", {
|
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
|
+ type: "warning"
|
|
|
|
|
+ }).then(() => {
|
|
|
|
|
+ this.exportLoading = true;
|
|
|
|
|
+ return exportUser(queryParams);
|
|
|
|
|
+ }).then(response => {
|
|
|
|
|
+ this.download(response.msg);
|
|
|
|
|
+ this.exportLoading = false;
|
|
|
|
|
+ }).catch(() => {});
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+};
|
|
|
|
|
+</script>
|