|
@@ -1,14 +1,11 @@
|
|
<template>
|
|
<template>
|
|
<div class="app-container">
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" :inline="true" @submit.native.prevent>
|
|
<el-form :model="queryParams" ref="queryForm" :inline="true" @submit.native.prevent>
|
|
- <el-form-item label="问题模板id" prop="templateId">
|
|
|
|
- <el-input v-model="queryParams.templateId" placeholder="请输入问题模板id" @keyup.enter.native="handleQuery" clearable class="inp" />
|
|
|
|
|
|
+ <el-form-item label="科室" prop="deptId">
|
|
|
|
+ <dtree v-model="queryParams.deptId" @handleQuery="handleQuery" :tree="false"></dtree>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <el-form-item label="患者id" prop="userId">
|
|
|
|
- <el-input v-model="queryParams.userId" 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="patientName">
|
|
|
|
+ <el-input v-model="queryParams.patientName" placeholder="请输入患者姓名" @keyup.enter.native="handleQuery" clearable class="inp" />
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
@@ -16,25 +13,32 @@
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-form>
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-row :gutter="10" class="mb8">
|
|
- <el-button type="primary" icon="el-icon-plus" :disabled="ids.length > 0" @click="op('add')" v-hasPermi="['work:record:add']">新增</el-button>
|
|
|
|
|
|
+ <el-button type="primary" icon="el-icon-plus" :disabled="ids.length > 0" @click="op('add')" v-hasPermi="['work:record:add']">{{ queryParams.type == 0 ? '新增提醒' : '新增回访' }}</el-button>
|
|
<el-button type="danger" icon="el-icon-delete" :disabled="ids.length == 0" @click="del" v-hasPermi="['work:record:remove']">删除{{ ids.length > 0 ? '(' + ids.length + ')' : '' }}</el-button>
|
|
<el-button type="danger" icon="el-icon-delete" :disabled="ids.length == 0" @click="del" v-hasPermi="['work:record:remove']">删除{{ ids.length > 0 ? '(' + ids.length + ')' : '' }}</el-button>
|
|
</el-row>
|
|
</el-row>
|
|
|
|
|
|
<el-table :data="response.rows" border @selection-change="selects" height="calc(100vh - 270px)">
|
|
<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 type="selection" width="55" align="center" />
|
|
- <el-table-column label="回访模板" align="center" prop="templateName" />
|
|
|
|
- <el-table-column label="患者姓名" align="center" prop="patientName" />
|
|
|
|
|
|
+ <el-table-column :label="queryParams.type == 0 ? '提醒标题' : '模板名称'" align="left" prop="templateName" />
|
|
|
|
+ <el-table-column label="患者姓名" align="center" prop="patientName" width="160" />
|
|
<el-table-column label="状态" align="center" prop="state" width="140">
|
|
<el-table-column label="状态" align="center" prop="state" width="140">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <el-tag type="danger" v-if="scope.row.state == 0">待回访</el-tag>
|
|
|
|
- <el-tag type="success" v-if="scope.row.state == 1">已回访</el-tag>
|
|
|
|
|
|
+ <div v-if="queryParams.type == 0">
|
|
|
|
+ <el-tag type="success">已推送</el-tag>
|
|
|
|
+ </div>
|
|
|
|
+ <div v-else>
|
|
|
|
+ <el-tag type="danger" v-if="scope.row.state == 0">待回访</el-tag>
|
|
|
|
+ <el-tag type="success" v-if="scope.row.state == 1">已回访</el-tag>
|
|
|
|
+ </div>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="创建人" align="center" prop="createBy" width="130" />
|
|
|
|
|
|
+ <el-table-column label="创建人" align="center" prop="createBy" width="160" />
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="160" />
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="160" />
|
|
<el-table-column label="所属科室" align="center" prop="deptName" width="160" />
|
|
<el-table-column label="所属科室" align="center" prop="deptName" width="160" />
|
|
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
|
+ <el-table-column label="操作" align="center" width="180">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-view" @click="op('detail', scope.row)" v-hasPermi="['work:record:list']">查看</el-button>
|
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-edit" @click="op('edit', scope.row)" v-hasPermi="['work:knowledge:edit']">编辑</el-button>
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="del(scope.row)" v-hasPermi="['work:record:remove']">删除</el-button>
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="del(scope.row)" v-hasPermi="['work:record:remove']">删除</el-button>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
@@ -55,17 +59,16 @@ export default {
|
|
queryParams: {
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
- templateId: null,
|
|
|
|
- userId: null,
|
|
|
|
state: null,
|
|
state: null,
|
|
- doctorId: null,
|
|
|
|
deptId: null,
|
|
deptId: null,
|
|
- orderByColumn: 'id', //排序字段
|
|
|
|
|
|
+ patientName: null,
|
|
|
|
+ orderByColumn: 'k.id', //排序字段
|
|
isAsc: 'desc' //排序方式
|
|
isAsc: 'desc' //排序方式
|
|
}
|
|
}
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
|
|
+ this.queryParams.type = this.$route.path == '/follow/up' ? 0 : 1;
|
|
this.getList();
|
|
this.getList();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
@@ -87,11 +90,13 @@ export default {
|
|
},
|
|
},
|
|
op(tag, row) {
|
|
op(tag, row) {
|
|
if (tag == 'add') {
|
|
if (tag == 'add') {
|
|
- this.iframe({ obj: edit, param: {}, title: '新增', width: '45%', height: '55%' });
|
|
|
|
|
|
+ this.iframe({ obj: edit, param: { type: this.queryParams.type }, title: this.queryParams.type == 0 ? '新增提醒' : '新增回访', width: '55%', height: '77%' });
|
|
}
|
|
}
|
|
if (tag == 'edit') {
|
|
if (tag == 'edit') {
|
|
- const id = row.id || this.ids[0];
|
|
|
|
- this.iframe({ obj: edit, param: { id: id }, title: '编辑', width: '50%', height: '50%' });
|
|
|
|
|
|
+ this.iframe({ obj: edit, param: { id: row.id, type: this.queryParams.type, patientName: row.patientName }, title: '编辑', width: '55%', height: '77%' });
|
|
|
|
+ }
|
|
|
|
+ if (tag == 'detail') {
|
|
|
|
+ this.iframe({ obj: edit, param: { id: row.id, detail: true, patientName: row.patientName }, title: '查看详情', width: '55%', height: '77%' });
|
|
}
|
|
}
|
|
},
|
|
},
|
|
del(row) {
|
|
del(row) {
|