|
@@ -1,6 +1,9 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
<el-form :model="queryParams" ref="queryForm" :inline="true" @submit.native.prevent>
|
|
|
+ <el-form-item label="科室" prop="deptId">
|
|
|
+ <dtree v-model="queryParams.deptId" @handleQuery="handleQuery" :tree="false"></dtree>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="患者姓名" prop="patientName">
|
|
|
<el-input v-model="queryParams.patientName" placeholder="请输入患者姓名" @keyup.enter.native="handleQuery" clearable class="inp" />
|
|
|
</el-form-item>
|
|
@@ -16,8 +19,8 @@
|
|
|
|
|
|
<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="queryParams.type == 0 ? '提醒标题' : '模板名称'" 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">
|
|
|
<template slot-scope="scope">
|
|
|
<div v-if="queryParams.type == 0">
|
|
@@ -29,12 +32,12 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</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="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">
|
|
|
- <el-button size="mini" type="text" icon="el-icon-edit" @click="op('detail', scope.row)" v-hasPermi="['work:record:list']">查看</el-button>
|
|
|
+ <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>
|
|
|
</template>
|
|
@@ -87,13 +90,13 @@ export default {
|
|
|
},
|
|
|
op(tag, row) {
|
|
|
if (tag == 'add') {
|
|
|
- this.iframe({ obj: edit, param: { type: this.queryParams.type }, title: this.queryParams.type == 0 ? '新增提醒' : '新增回访', width: '55%', height: '75%' });
|
|
|
+ this.iframe({ obj: edit, param: { type: this.queryParams.type }, title: this.queryParams.type == 0 ? '新增提醒' : '新增回访', width: '55%', height: '77%' });
|
|
|
}
|
|
|
if (tag == 'edit') {
|
|
|
- this.iframe({ obj: edit, param: { id: row.id, type: this.queryParams.type, patientName: row.patientName }, title: '编辑', width: '55%', height: '75%' });
|
|
|
+ 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: '75%' });
|
|
|
+ this.iframe({ obj: edit, param: { id: row.id, detail: true, patientName: row.patientName }, title: '查看详情', width: '55%', height: '77%' });
|
|
|
}
|
|
|
},
|
|
|
del(row) {
|