|
@@ -27,7 +27,8 @@
|
|
|
<el-option :label="item.label" :value="item.value" v-for="(item, index) in select_status"
|
|
|
:key="index"></el-option>
|
|
|
</el-select>
|
|
|
- <el-input placeholder="请输入内容" v-model="screenForm.keyword" size="small" style="width: 180px;">
|
|
|
+ <el-input placeholder="商户名称" v-model="screenForm.companyWechatName" size="small" style="width: 180px;"></el-input>
|
|
|
+ <el-input placeholder="用户名" v-model="screenForm.keyword" size="small" style="width: 180px;">
|
|
|
<el-button slot="append" icon="el-icon-search" size="small" @click="getListByScreen"></el-button>
|
|
|
</el-input>
|
|
|
</div>
|
|
@@ -36,8 +37,9 @@
|
|
|
<el-table v-loading="listLoading" :data="dataList" element-loading-text="Loading" border fit
|
|
|
highlight-current-row stripe>
|
|
|
<el-table-column align="center" label="序号" type="index" width="50"></el-table-column>
|
|
|
+ <el-table-column align="center" label="商户" prop="companyName" min-width="160"></el-table-column>
|
|
|
<el-table-column align="center" label="账号" prop="userName" min-width="120"></el-table-column>
|
|
|
- <el-table-column align="center" label="用户名" prop="nickName" min-width="120"></el-table-column>
|
|
|
+ <el-table-column align="center" label="用户名" prop="nickName" min-width="160"></el-table-column>
|
|
|
<el-table-column align="center" label="角色" prop="roleName" min-width="100"></el-table-column>
|
|
|
<el-table-column align="center" label="创建时间" prop="createTime" min-width="160"></el-table-column>
|
|
|
<el-table-column align="center" label="最后登录时间" prop="lastLoginTime" min-width="160"></el-table-column>
|
|
@@ -219,6 +221,7 @@ export default {
|
|
|
role: '', // 角色
|
|
|
status: '', // 状态
|
|
|
keyword: '', // 关键词
|
|
|
+ companyWechatName: ''//商户名
|
|
|
},
|
|
|
select_status: [ // 筛选字段 - 状态
|
|
|
{ label: '正常', value: true },
|
|
@@ -311,6 +314,7 @@ export default {
|
|
|
roleId: this.screenForm.role,
|
|
|
status: this.screenForm.status,
|
|
|
userName: this.screenForm.keyword,
|
|
|
+ companyWechatName: this.screenForm.companyWechatName,
|
|
|
pageNum: this.currentPage,
|
|
|
pageSize: this.pageSize,
|
|
|
...(() => {
|