| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="用户昵称" prop="nickName">
- <el-input
- style="width:220px"
- v-model="queryParams.nickName"
- placeholder="请输入用户昵称"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="手机号码" prop="phone">
- <el-input
- style="width:220px"
- v-model="queryParams.phone"
- placeholder="请输入手机号码"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item>
- <el-button type="cyan" 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-table height="500" border v-loading="loading" :data="customerList" ref="customerList" >
- <el-table-column label="用户ID" align="center" prop="userId" />
- <el-table-column label="企微客户头像" align="center" prop="avatar" width="100px">
- <template slot-scope="scope">
- <el-popover
- placement="right"
- title=""
- trigger="hover">
- <img slot="reference" :src="scope.row.avatar" width="60px">
- <img :src="scope.row.avatar" style="max-width: 200px;">
- </el-popover>
- </template>
- </el-table-column>
- <el-table-column label="用户昵称" align="center" prop="nickName" />
- <el-table-column label="手机号码" align="center" prop="phone" />
- <el-table-column label="操作" align="center" fixed="right" width="120px" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="medium"
- type="primary"
- plain
- @click="handleBind(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"
- />
- </div>
- </template>
- <script>
- import { getMiniProgramCustomer} from "@/api/qw/externalContact";
- export default {
- name: "miniCustomer",
- components: {},
- data() {
- return {
- // 遮罩层
- loading: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 客户表格数据
- customerList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- userId: null,
- nickName: null,
- phone: null,
- },
- // 表单参数
- form: {
- },
- // 表单校验
- rules: {
- },
- };
- },
- created() {
- this.getList();
- },
- methods: {
- /** 查询客户列表 */
- getList() {
- this.loading = true;
- getMiniProgramCustomer(this.queryParams).then(response => {
- this.customerList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- //绑定选择
- handleBind(row){
- this.$emit("bindMiniCustomerId",row.userId)
- this.$refs.customerList.clearSelection();
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- this.handleQuery();
- },
- }
- };
- </script>
- <style>
- .el-tag + .el-tag {
- margin-left: 10px;
- }
- .button-new-tag {
- margin-left: 10px;
- height: 32px;
- line-height: 30px;
- padding-top: 0;
- padding-bottom: 0;
- }
- .input-new-tag {
- width: 90px;
- margin-left: 10px;
- vertical-align: bottom;
- }
- .el-dialog__wrapper{
- z-index: 100000;
- }
- </style>
|