|
@@ -1,12 +1,13 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
- <el-dialog title="企微通讯录" v-if="visible" :visible.sync="visible" :before-close="beforeClose" width="750px">
|
|
|
+ <el-dialog title="企微通讯录" v-if="visible" :visible.sync="visible" :before-close="beforeClose" width="900px">
|
|
|
<el-row :gutter="10" class="mb8" align="middle">
|
|
|
<el-col :span="1.5">
|
|
|
- <el-input v-model="queryParams.name" placeholder="企微号名称" clearable size="small"
|
|
|
- style="width: 140px" @keyup.enter.native="getList" />
|
|
|
+ <el-input v-model="queryParams.name" placeholder="企微号名称" clearable size="small" style="width: 140px"
|
|
|
+ @keyup.enter.native="getList" />
|
|
|
</el-col>
|
|
|
- <el-col :span="1.5"><el-button type="cyan" icon="el-icon-search" size="mini" @click="getList">搜索</el-button></el-col>
|
|
|
+ <el-col :span="1.5"><el-button type="cyan" icon="el-icon-search" size="mini"
|
|
|
+ @click="getList">搜索</el-button></el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<div class="grid-content">
|
|
|
<el-button type="primary" size="mini" @click="syncHandle">同步通讯录</el-button>
|
|
@@ -14,6 +15,7 @@
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-table :data="mailList" v-loading="loading" size="mini">
|
|
|
+ <el-table-column label="企微号ID" prop="corpUserId" width="140" align="center" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="企微号" prop="name" width="120" align="center" />
|
|
|
<el-table-column label="运营" prop="operUserId" align="center" width="100">
|
|
|
<template slot-scope="scope">
|