|
@@ -1,11 +1,11 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
<el-form :model="queryParams" ref="queryForm" :inline="true" @submit.native.prevent>
|
|
|
- <el-form-item label="微信id" prop="openId">
|
|
|
- <el-input v-model="queryParams.openId" placeholder="请输入微信id" @keyup.enter.native="handleQuery" clearable class="inp"/>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="状态" prop="state">
|
|
|
- <el-input v-model="queryParams.state" placeholder="请输入状态" @keyup.enter.native="handleQuery" clearable class="inp"/>
|
|
|
+ <el-form-item label="账号状态" prop="state">
|
|
|
+ <el-select v-model="queryParams.state" placeholder="账号状态" class="se" clearable>
|
|
|
+ <el-option value="0" label="正常"></el-option>
|
|
|
+ <el-option value="1" label="禁用"></el-option>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
@@ -13,43 +13,57 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
- <el-button type="primary" icon="el-icon-plus" :disabled="ids.length > 0" @click="op('add')" v-hasPermi="['work:user:add']">新增</el-button>
|
|
|
- <el-button type="success" icon="el-icon-edit" :disabled="ids.length != 1" @click="op('edit',ids)" v-hasPermi="['work:user:edit']">修改</el-button>
|
|
|
- <el-button type="danger" icon="el-icon-delete" :disabled="ids.length == 0" @click="del" v-hasPermi="['work:user:remove']">删除{{ids.length>0?'('+ids.length+')':''}}</el-button>
|
|
|
+ <el-button type="primary" icon="el-icon-plus" :disabled="ids.length > 0" @click="op('add')" v-hasPermi="['work:user:add']">新增</el-button>
|
|
|
+ <el-button type="success" icon="el-icon-edit" :disabled="ids.length != 1" @click="op('edit', ids)" v-hasPermi="['work:user:edit']">修改</el-button>
|
|
|
+ <el-button type="danger" icon="el-icon-delete" :disabled="ids.length == 0" @click="del" v-hasPermi="['work:user:remove']">删除{{ ids.length > 0 ? '(' + ids.length + ')' : '' }}</el-button>
|
|
|
</el-row>
|
|
|
|
|
|
<el-table :data="response.rows" border @selection-change="selects" height="calc(100vh - 270px)">
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="id" align="center" prop="id" />
|
|
|
- <el-table-column label="微信id" align="center" prop="openId" />
|
|
|
- <el-table-column label="状态" align="center" prop="state" />
|
|
|
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
+ <el-table-column label="微信openId" align="left" prop="openId" />
|
|
|
+ <el-table-column label="绑定就诊人" align="center" width="160">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tag type="success" v-if="scope.row.patientId">已绑定</el-tag>
|
|
|
+ <el-tag type="danger" v-else>未绑定</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="当前绑定" prop="patientName" align="center" width="160" />
|
|
|
+ <el-table-column label="账号状态" align="center" prop="state" width="110">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div class="switch">
|
|
|
+ <el-switch v-model="scope.row.state" :active-value="0" :width="50" :inactive-value="1" @change="op('change', scope.row)"></el-switch>
|
|
|
+ <span class="zc" v-if="scope.row.state == 0" style="left: 22px">正常</span>
|
|
|
+ <span class="ty" v-else style="left: 35px">禁用</span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="创建时间" align="center" prop="createTime" width="160" />
|
|
|
+ <el-table-column label="操作" align="center" width="160">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button size="mini" type="text" icon="el-icon-edit" @click="op('edit',scope.row)" v-hasPermi="['work:user:edit']">修改</el-button>
|
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="del(scope.row)" v-hasPermi="['work:user:remove']">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<template slot="empty">
|
|
|
- <el-empty></el-empty>
|
|
|
+ <el-empty></el-empty>
|
|
|
</template>
|
|
|
</el-table>
|
|
|
- <pagination v-if="response.total>0" :total="response.total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList"/>
|
|
|
+ <pagination v-if="response.total > 0" :total="response.total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import edit from './edit'
|
|
|
+import edit from './edit';
|
|
|
export default {
|
|
|
- name: "User",
|
|
|
+ name: 'User',
|
|
|
data() {
|
|
|
return {
|
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
|
pageSize: 10,
|
|
|
- openId: null,
|
|
|
- state: null,
|
|
|
- orderByColumn:'id', //排序字段
|
|
|
- isAsc: 'desc' //排序方式
|
|
|
+ openId: null,
|
|
|
+ state: null,
|
|
|
+ orderByColumn: 'id', //排序字段
|
|
|
+ isAsc: 'desc' //排序方式
|
|
|
}
|
|
|
};
|
|
|
},
|
|
@@ -58,8 +72,8 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
getList() {
|
|
|
- this.ajax({ url: '/work/user/list', data: this.queryParams }).then(response => {
|
|
|
- this.response = response;
|
|
|
+ this.ajax({ url: '/work/user/list', data: this.queryParams }).then((response) => {
|
|
|
+ this.response = response;
|
|
|
});
|
|
|
},
|
|
|
handleQuery() {
|
|
@@ -67,28 +81,45 @@ export default {
|
|
|
this.getList();
|
|
|
},
|
|
|
resetQuery() {
|
|
|
- this.resetForm("queryForm");
|
|
|
+ this.resetForm('queryForm');
|
|
|
this.handleQuery();
|
|
|
},
|
|
|
selects(rows) {
|
|
|
- this.ids = rows.map(item => item.id)
|
|
|
+ this.ids = rows.map((item) => item.id);
|
|
|
},
|
|
|
op(tag, row) {
|
|
|
- if (tag == 'add') {
|
|
|
- this.iframe({ obj: edit, param: {}, title:'新增',width: '45%', height: '55%'});
|
|
|
- }
|
|
|
- if (tag == 'edit') {
|
|
|
- const id = row.id || this.ids[0];
|
|
|
- this.iframe({ obj: edit, param: {id: id}, title:'编辑',width: '50%', height: '50%'});
|
|
|
- }
|
|
|
+ if (tag == 'add') {
|
|
|
+ this.iframe({ obj: edit, param: {}, title: '新增', width: '45%', height: '55%' });
|
|
|
+ }
|
|
|
+ if (tag == 'edit') {
|
|
|
+ const id = row.id || this.ids[0];
|
|
|
+ this.iframe({ obj: edit, param: { id: id }, title: '编辑', width: '50%', height: '50%' });
|
|
|
+ }
|
|
|
+ //账号状态
|
|
|
+ if (tag == 'change') {
|
|
|
+ let text = row.state === 0 ? '启用' : '禁用';
|
|
|
+ this.$confirm('确认要' + text + '该用户吗?', '警告', { type: 'warning' })
|
|
|
+ .then(() => {
|
|
|
+ this.post({ url: '/work/user/edit', data: { id: row.id, state: row.state } })
|
|
|
+ .then((response) => {
|
|
|
+ this.$modal.msgSuccess(text + '成功');
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ row.state = row.state === 0 ? 1 : 0;
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ row.state = row.state === 0 ? 1 : 0;
|
|
|
+ });
|
|
|
+ }
|
|
|
},
|
|
|
del(row) {
|
|
|
- this.$confirm('是否确认删除选中数据?', '警告', { type: 'warning' }).then(() => {
|
|
|
- this.get({ url: '/work/user/remove/' + (row.id || this.ids) }).then(response => {
|
|
|
- this.$modal.msgSuccess('删除成功');
|
|
|
- this.getList();
|
|
|
- });
|
|
|
+ this.$confirm('是否确认删除选中数据?', '警告', { type: 'warning' }).then(() => {
|
|
|
+ this.get({ url: '/work/user/remove/' + (row.id || this.ids) }).then((response) => {
|
|
|
+ this.$modal.msgSuccess('删除成功');
|
|
|
+ this.getList();
|
|
|
});
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
};
|