修改
This commit is contained in:
parent
bfc1dddc00
commit
32d197890d
@ -151,6 +151,7 @@
|
||||
<!-- 科室弹框 -->
|
||||
<el-dialog title="" :visible.sync="innerVisibleshow" width="1000px" append-to-body
|
||||
:before-close="innerVisiblecancel">
|
||||
<div style="padding-bottom: 23px;">
|
||||
<el-form ref="queryForm" :model="informationqueryParams" :rules="rules" label-width="80px" :inline="true">
|
||||
<el-form-item label="科室名称" prop="departmentName" label-width="120">
|
||||
<el-input v-model="informationqueryParams.departmentName" placeholder="请输入科室名称" clearable />
|
||||
@ -171,6 +172,7 @@
|
||||
<el-table-column property="departmentName" label="科室名称" align="center" :show-overflow-tooltip="true">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<myPagination v-show="totaldepartment > 0" :total="totaldepartment" :pageSize="informationqueryParams.pageSize"
|
||||
:indexFromWrap="informationqueryParams.pageNum" @updateCPage="updateCPagetwo"></myPagination>
|
||||
<!-- <pagination v-show="totaldepartment > 0" :total="totaldepartment" :page.sync="informationqueryParams.pageNum"
|
||||
@ -178,6 +180,7 @@
|
||||
</el-dialog>
|
||||
<!-- 病种弹框 -->
|
||||
<el-dialog title="" :visible.sync="diseaseshowst" width="1000px" append-to-body :before-close="canceldiseases">
|
||||
<div style="padding-bottom: 23px;">
|
||||
<el-form ref="queryForm" :model="querydisease" :rules="rules" label-width="80px" :inline="true">
|
||||
<el-form-item label="病种名称" prop="diseaseTypeName" label-width="120">
|
||||
<el-input v-model="querydisease.diseaseTypeName" placeholder="请输入病种名称" clearable />
|
||||
@ -199,6 +202,7 @@
|
||||
<el-table-column property="diseaseTypeName" label="病种名称" align="center" :show-overflow-tooltip="true">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<!-- <pagination v-show="diseasetotal > 0" :total="diseasetotal" :page.sync="querydisease.pageNum"
|
||||
:limit.sync="querydisease.pageSize" @pagination="infodisease" /> -->
|
||||
<myPagination v-show="diseasetotal > 0" :total="diseasetotal" :pageSize="querydisease.pageSize"
|
||||
|
||||
@ -2,25 +2,55 @@
|
||||
<div class="app-container" ref="layout">
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="5">
|
||||
<DepartmentList ref="DepartmentList" @clickdepartment="clickdepartment" :methods="'selectNumByDept'">
|
||||
<DepartmentList
|
||||
ref="DepartmentList"
|
||||
@clickdepartment="clickdepartment"
|
||||
:methods="'selectNumByDept'"
|
||||
>
|
||||
</DepartmentList>
|
||||
</el-col>
|
||||
<el-col :span="19" :xs="24">
|
||||
<div ref="topform" class="form">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"
|
||||
label-width="68px">
|
||||
<el-form
|
||||
:model="queryParams"
|
||||
ref="queryForm"
|
||||
size="small"
|
||||
:inline="true"
|
||||
v-show="showSearch"
|
||||
label-width="68px"
|
||||
>
|
||||
<el-form-item label="创建时间" prop="">
|
||||
<el-date-picker v-model="queryParams.createTimeStart" type="date" value-format="yyyy-MM-dd"
|
||||
placeholder="选择日期" @change="changecreateTimeStart" :picker-options="pickerStartTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.createTimeStart"
|
||||
type="date"
|
||||
value-format="yyyy-MM-dd"
|
||||
placeholder="选择日期"
|
||||
@change="changecreateTimeStart"
|
||||
:picker-options="pickerStartTime"
|
||||
>
|
||||
</el-date-picker>
|
||||
-
|
||||
<el-date-picker v-model="queryParams.createTimeEnd" type="date" value-format="yyyy-MM-dd"
|
||||
placeholder="选择日期" @change="changecreateTimeEnd" :picker-options="pickerEndTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.createTimeEnd"
|
||||
type="date"
|
||||
value-format="yyyy-MM-dd"
|
||||
placeholder="选择日期"
|
||||
@change="changecreateTimeEnd"
|
||||
:picker-options="pickerEndTime"
|
||||
>
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="宣教类型" prop="propagandaType">
|
||||
<el-select v-model="queryParams.propagandaType" placeholder="请选择">
|
||||
<el-option v-for="item in optionstype" :key="item.value" :label="item.label" :value="item.value">
|
||||
<el-select
|
||||
v-model="queryParams.propagandaType"
|
||||
placeholder="请选择"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in optionstype"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
@ -32,8 +62,16 @@
|
||||
</el-select>
|
||||
</el-form-item> -->
|
||||
<el-form-item label="宣教状态" prop="propagandaStatus">
|
||||
<el-select v-model="queryParams.propagandaStatus" placeholder="请选择">
|
||||
<el-option v-for="item in optionsstate" :key="item.value" :label="item.label" :value="item.value">
|
||||
<el-select
|
||||
v-model="queryParams.propagandaStatus"
|
||||
placeholder="请选择"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in optionsstate"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
<!-- <el-input
|
||||
@ -44,92 +82,195 @@
|
||||
/> -->
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-search"
|
||||
size="mini"
|
||||
@click="handleQuery"
|
||||
>搜索</el-button
|
||||
>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
|
||||
>重置</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<div ref="mb8" class="mb8">
|
||||
<el-row :gutter="10" class="">
|
||||
<el-col :span="1.5">
|
||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
icon="el-icon-plus"
|
||||
size="mini"
|
||||
@click="handleAdd"
|
||||
:disabled="queryParams.hospitalAgencyId ? false : true"
|
||||
v-hasPermi="['manage:propaganda:add']">新增</el-button>
|
||||
<el-button type="warning" plain icon="el-icon-upload2" size="mini" @click="handleUpload">导入</el-button>
|
||||
v-hasPermi="['manage:propaganda:add']"
|
||||
>新增</el-button
|
||||
>
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
icon="el-icon-upload2"
|
||||
size="mini"
|
||||
@click="handleUpload"
|
||||
>导入</el-button
|
||||
>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
<right-toolbar
|
||||
:showSearch.sync="showSearch"
|
||||
@queryTable="getList"
|
||||
></right-toolbar>
|
||||
</el-row>
|
||||
</div>
|
||||
<div ref="table">
|
||||
<el-table :max-height="maxTableHeight" v-loading="loading" :data="propagandaList"
|
||||
@selection-change="handleSelectionChange">
|
||||
<el-table
|
||||
:max-height="maxTableHeight"
|
||||
v-loading="loading"
|
||||
:data="propagandaList"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<!-- <el-table-column type="selection" width="55" align="center" /> -->
|
||||
<el-table-column label="序号" align="center" prop="id" type="index" />
|
||||
<el-table-column label="宣教名称" align="center" prop="propagandaTitle" :show-overflow-tooltip="true">
|
||||
<el-table-column
|
||||
label="序号"
|
||||
align="center"
|
||||
prop="id"
|
||||
type="index"
|
||||
/>
|
||||
<el-table-column
|
||||
label="宣教名称"
|
||||
align="center"
|
||||
prop="propagandaTitle"
|
||||
:show-overflow-tooltip="true"
|
||||
>
|
||||
</el-table-column>
|
||||
<el-table-column label="宣教类型" align="center" prop="propagandaType">
|
||||
<el-table-column
|
||||
label="宣教类型"
|
||||
align="center"
|
||||
prop="propagandaType"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
{{
|
||||
scope.row.propagandaType == "MEDICATION_KNOWLEDGE"
|
||||
? "用药知识"
|
||||
: ""
|
||||
}}
|
||||
scope.row.propagandaType == "MEDICATION_KNOWLEDGE"
|
||||
? "用药知识"
|
||||
: ""
|
||||
}}
|
||||
{{
|
||||
scope.row.propagandaType == "DISEASE_POPULARIZATION"
|
||||
? "疾病科普"
|
||||
: ""
|
||||
}}
|
||||
scope.row.propagandaType == "DISEASE_POPULARIZATION"
|
||||
? "疾病科普"
|
||||
: ""
|
||||
}}
|
||||
{{
|
||||
scope.row.propagandaType == "SPORT_NUTRITION"
|
||||
? "运动营养"
|
||||
: ""
|
||||
}}
|
||||
scope.row.propagandaType == "SPORT_NUTRITION"
|
||||
? "运动营养"
|
||||
: ""
|
||||
}}
|
||||
{{
|
||||
scope.row.propagandaType == "OTHER_KNOWLEDGE"
|
||||
? "其他知识"
|
||||
: ""
|
||||
}}
|
||||
scope.row.propagandaType == "OTHER_KNOWLEDGE"
|
||||
? "其他知识"
|
||||
: ""
|
||||
}}
|
||||
{{
|
||||
scope.row.propagandaType == "CUSTOMIZED_CONTENT"
|
||||
? "定制内容"
|
||||
: ""
|
||||
}}
|
||||
scope.row.propagandaType == "CUSTOMIZED_CONTENT"
|
||||
? "定制内容"
|
||||
: ""
|
||||
}}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="宣教ID" align="center" prop="propagandaCode" :show-overflow-tooltip="true" />
|
||||
<el-table-column label="宣教状态" align="center" prop="propagandaStatus">
|
||||
<el-table-column
|
||||
label="宣教ID"
|
||||
align="center"
|
||||
prop="propagandaCode"
|
||||
:show-overflow-tooltip="true"
|
||||
/>
|
||||
<el-table-column
|
||||
label="宣教状态"
|
||||
align="center"
|
||||
prop="propagandaStatus"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
{{
|
||||
scope.row.propagandaStatus == "CREATE_PROCESS" ? "创作中" : ""
|
||||
}}
|
||||
scope.row.propagandaStatus == "CREATE_PROCESS" ? "创作中" : ""
|
||||
}}
|
||||
{{
|
||||
scope.row.propagandaStatus == "CREATE_COMPLETE"
|
||||
? "创作完成"
|
||||
: ""
|
||||
}}
|
||||
scope.row.propagandaStatus == "CREATE_COMPLETE"
|
||||
? "创作完成"
|
||||
: ""
|
||||
}}
|
||||
{{ scope.row.propagandaStatus == "IN_REVIEW" ? "审核中" : "" }}
|
||||
{{ scope.row.propagandaStatus == "APPROVED" ? "审核通过" : "" }}
|
||||
{{
|
||||
scope.row.propagandaStatus == "REVIEW_FAILED"
|
||||
? "审核不通过"
|
||||
: ""
|
||||
}}
|
||||
scope.row.propagandaStatus == "REVIEW_FAILED"
|
||||
? "审核不通过"
|
||||
: ""
|
||||
}}
|
||||
<div></div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="宣教来源" align="center" prop="hospitalAgencyName" />
|
||||
<el-table-column label="创建时间" align="center" prop="createTime" />
|
||||
<el-table-column label="更新时间" align="center" prop="updateTime" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="300%">
|
||||
<el-table-column
|
||||
label="宣教来源"
|
||||
align="center"
|
||||
prop="hospitalAgencyName"
|
||||
/>
|
||||
<el-table-column
|
||||
label="创建时间"
|
||||
align="center"
|
||||
prop="createTime"
|
||||
/>
|
||||
<el-table-column
|
||||
label="更新时间"
|
||||
align="center"
|
||||
prop="updateTime"
|
||||
/>
|
||||
<el-table-column
|
||||
label="操作"
|
||||
align="center"
|
||||
class-name="small-padding fixed-width"
|
||||
width="300%"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<el-button type="text" icon="el-icon-zoom-in" size="mini" @click="Preview(scope.row)">预览</el-button>
|
||||
<el-button type="text" icon="el-icon-tickets" size="mini" @click="copyUrl(scope.row)">复制</el-button>
|
||||
<el-button size="mini" type="text" icon="el-icon-aim"
|
||||
v-if="scope.row.propagandaStatus == 'CREATE_COMPLETE'" @click="examine(scope.row)">审核</el-button>
|
||||
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
||||
v-hasPermi="['manage:propaganda:edit']" v-if="!scope.row.sourceTemplateId ||scope.row.sourceTemplateId==0">修改</el-button>
|
||||
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
||||
v-hasPermi="['manage:propaganda:remove']">删除</el-button>
|
||||
<el-button
|
||||
type="text"
|
||||
icon="el-icon-zoom-in"
|
||||
size="mini"
|
||||
@click="Preview(scope.row)"
|
||||
>预览</el-button
|
||||
>
|
||||
<el-button
|
||||
type="text"
|
||||
icon="el-icon-tickets"
|
||||
size="mini"
|
||||
@click="copyUrl(scope.row)"
|
||||
>复制</el-button
|
||||
>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-aim"
|
||||
v-if="scope.row.propagandaStatus == 'CREATE_COMPLETE'"
|
||||
@click="examine(scope.row)"
|
||||
>审核</el-button
|
||||
>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
v-hasPermi="['manage:propaganda:edit']"
|
||||
v-if="
|
||||
!scope.row.sourceTemplateId ||
|
||||
scope.row.sourceTemplateId == 0
|
||||
"
|
||||
>修改</el-button
|
||||
>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['manage:propaganda:remove']"
|
||||
>删除</el-button
|
||||
>
|
||||
<!-- <el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
@ -143,15 +284,34 @@
|
||||
</div>
|
||||
<!-- <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize" @pagination="getList" /> -->
|
||||
<myPagination v-show="total > 0" :total="total" :pageSize="queryParams.pageSize"
|
||||
:indexFromWrap="queryParams.pageNum" @updateCPage="updateCPage"></myPagination>
|
||||
<myPagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:pageSize="queryParams.pageSize"
|
||||
:indexFromWrap="queryParams.pageNum"
|
||||
@updateCPage="updateCPage"
|
||||
></myPagination>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<!-- 添加或修改患者宣教信息对话框 -->
|
||||
<el-dialog :title="title" :visible.sync="open" width="1000px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="100px" :inline="true">
|
||||
<el-dialog
|
||||
:title="title"
|
||||
:visible.sync="open"
|
||||
width="1000px"
|
||||
append-to-body
|
||||
>
|
||||
<el-form
|
||||
ref="form"
|
||||
:model="form"
|
||||
:rules="rules"
|
||||
label-width="100px"
|
||||
:inline="true"
|
||||
>
|
||||
<el-form-item label="宣教标题" prop="propagandaTitle">
|
||||
<el-input v-model="form.propagandaTitle" placeholder="请输入宣教标题" />
|
||||
<el-input
|
||||
v-model="form.propagandaTitle"
|
||||
placeholder="请输入宣教标题"
|
||||
/>
|
||||
</el-form-item>
|
||||
<!-- <el-form-item label="宣教ID" prop="propagandaCode">
|
||||
<el-input
|
||||
@ -161,8 +321,17 @@
|
||||
/>
|
||||
</el-form-item> -->
|
||||
<el-form-item label="宣教类型" prop="propagandaType">
|
||||
<el-select v-model="form.propagandaType" placeholder="请选择" style="width: 206px">
|
||||
<el-option v-for="item in optionstype" :key="item.value" :label="item.label" :value="item.value">
|
||||
<el-select
|
||||
v-model="form.propagandaType"
|
||||
placeholder="请选择"
|
||||
style="width: 206px"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in optionstype"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
@ -181,47 +350,98 @@
|
||||
</el-select>
|
||||
</el-form-item>-->
|
||||
<el-form-item label="科室名称" prop="departmentId">
|
||||
<el-button type="" @click="clickinnerVisible()" :style="form.departmentName == '请选择科室' ? 'color: #c0c4cc;' : ''
|
||||
" style="
|
||||
<el-button
|
||||
type=""
|
||||
@click="clickinnerVisible()"
|
||||
:style="
|
||||
form.departmentName == '请选择科室' ? 'color: #c0c4cc;' : ''
|
||||
"
|
||||
style="
|
||||
width: 206px;
|
||||
text-align: left;
|
||||
height: 36px;
|
||||
overflow: hidden;
|
||||
">{{ form.departmentName }}</el-button>
|
||||
"
|
||||
>{{ form.departmentName }}</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
<el-form-item label="病种名称" prop="diseaseTypeName">
|
||||
<el-button type="" @click="clickdisease()" :style="form.diseaseTypeName == '请选择病种' ? 'color: #c0c4cc;' : ''
|
||||
" style="
|
||||
<el-button
|
||||
type=""
|
||||
@click="clickdisease()"
|
||||
:style="
|
||||
form.diseaseTypeName == '请选择病种' ? 'color: #c0c4cc;' : ''
|
||||
"
|
||||
style="
|
||||
width: 206px;
|
||||
text-align: left;
|
||||
height: 36px;
|
||||
overflow: hidden;
|
||||
">{{ form.diseaseTypeName }}</el-button>
|
||||
"
|
||||
>{{ form.diseaseTypeName }}</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
<el-form-item label="语音播报" prop="voicebroadcast">
|
||||
<el-input v-model="form.voicebroadcast" type="textarea" style="width: 206px" placeholder="请输入语音播报" />
|
||||
<el-input
|
||||
v-model="form.voicebroadcast"
|
||||
type="textarea"
|
||||
style="width: 206px"
|
||||
placeholder="请输入语音播报"
|
||||
/>
|
||||
</el-form-item>
|
||||
<br>
|
||||
<br />
|
||||
<el-form-item label="添加封面" prop="propagandaCoverPath">
|
||||
<stationAcatar v-if="open" @imgUrl="imgUrl" :img="form.propagandaCoverPath" :type="'propagandaCoverUrl'" />
|
||||
<stationAcatar
|
||||
v-if="open"
|
||||
@imgUrl="imgUrl"
|
||||
:img="form.propagandaCoverPath"
|
||||
:type="'propagandaCoverUrl'"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="素材选择" prop="imgPath">
|
||||
<div class="propagandaselect" @click="material" v-if="!form.imgPath">
|
||||
<div class="add">+</div>
|
||||
</div>
|
||||
<img @click="material" class="propagandaselect" :src="baseUrl + form.imgPath" alt="" v-else-if="form.imgPath && querymaterial.materialsType == 'IMAGE_TEXT'
|
||||
" />
|
||||
<video @click="material" style="height: 200px; width: 300px"
|
||||
v-else-if="form.imgPath && querymaterial.materialsType == 'VIDEO'" ref="myVideo"
|
||||
:src="baseUrl + form.imgPath" controls></video>
|
||||
<img
|
||||
@click="material"
|
||||
class="propagandaselect"
|
||||
:src="baseUrl + form.imgPath"
|
||||
alt=""
|
||||
v-else-if="
|
||||
form.imgPath && querymaterial.materialsType == 'IMAGE_TEXT'
|
||||
"
|
||||
/>
|
||||
<video
|
||||
@click="material"
|
||||
style="height: 200px; width: 300px"
|
||||
v-else-if="form.imgPath && querymaterial.materialsType == 'VIDEO'"
|
||||
ref="myVideo"
|
||||
:src="baseUrl + form.imgPath"
|
||||
controls
|
||||
></video>
|
||||
</el-form-item>
|
||||
<el-form-item label="文章摘要" prop="articleSummary" class="articleSummary">
|
||||
<el-input v-model="form.articleSummary" type="textarea" style="width: 800px" placeholder="请输入文章摘要"
|
||||
maxlength="300" />
|
||||
<el-form-item
|
||||
label="文章摘要"
|
||||
prop="articleSummary"
|
||||
class="articleSummary"
|
||||
>
|
||||
<el-input
|
||||
v-model="form.articleSummary"
|
||||
type="textarea"
|
||||
style="width: 800px"
|
||||
placeholder="请输入文章摘要"
|
||||
maxlength="300"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="正文内容" prop="propagandaContent" v-if="open">
|
||||
<editor id="id" ref="myTextarea" v-model="form.propagandaContent" :min-height="192" style="width: 800px"
|
||||
@paste.native.prevent="handlePaste" />
|
||||
<editor
|
||||
id="id"
|
||||
ref="myTextarea"
|
||||
v-model="form.propagandaContent"
|
||||
:min-height="192"
|
||||
style="width: 800px"
|
||||
@paste.native.prevent="handlePaste"
|
||||
/>
|
||||
<!-- <editor
|
||||
v-model="form.propagandaContent"
|
||||
:min-height="192"
|
||||
@ -235,63 +455,174 @@
|
||||
</div>
|
||||
</el-dialog>
|
||||
<!-- 科室弹框 -->
|
||||
<el-dialog title="" :visible.sync="innerVisibleshow" width="1000px" append-to-body
|
||||
:before-close="innerVisiblecancel">
|
||||
<el-form ref="queryForm" :model="informationqueryParams" :rules="rules" label-width="80px" :inline="true">
|
||||
<el-form-item label="科室名称" prop="departmentName" label-width="120">
|
||||
<el-input v-model="informationqueryParams.departmentName" placeholder="请输入科室名称" clearable />
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="informationInfoinfo">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="addresetQuerylist">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<el-table :data="infolist" @cell-dblclick="nurseclick" v-loading="loading">
|
||||
<el-table-column label="请选择" width="100" align="center">
|
||||
<template slot-scope="scope">
|
||||
<el-button type="primary" style="width: 15px; height: 15px" v-if="form.departmentId == scope.row.id" circle
|
||||
@click="nurseclick(scope.row)"></el-button>
|
||||
<el-button v-else style="width: 15px; height: 15px" circle @click="nurseclick(scope.row)"></el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column property="departmentName" label="科室名称" align="center" :show-overflow-tooltip="true">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<myPagination v-show="totaldepartment > 0" :total="totaldepartment" :pageSize="informationqueryParams.pageSize"
|
||||
:indexFromWrap="informationqueryParams.pageNum" @updateCPage="updateCPagetwo"></myPagination>
|
||||
<el-dialog
|
||||
title=""
|
||||
:visible.sync="innerVisibleshow"
|
||||
width="1000px"
|
||||
append-to-body
|
||||
:before-close="innerVisiblecancel"
|
||||
>
|
||||
<div style="padding-bottom: 23px">
|
||||
<el-form
|
||||
ref="queryForm"
|
||||
:model="informationqueryParams"
|
||||
:rules="rules"
|
||||
label-width="80px"
|
||||
:inline="true"
|
||||
>
|
||||
<el-form-item
|
||||
label="科室名称"
|
||||
prop="departmentName"
|
||||
label-width="120"
|
||||
>
|
||||
<el-input
|
||||
v-model="informationqueryParams.departmentName"
|
||||
placeholder="请输入科室名称"
|
||||
clearable
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-search"
|
||||
size="mini"
|
||||
@click="informationInfoinfo"
|
||||
>搜索</el-button
|
||||
>
|
||||
<el-button
|
||||
icon="el-icon-refresh"
|
||||
size="mini"
|
||||
@click="addresetQuerylist"
|
||||
>重置</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<el-table
|
||||
:data="infolist"
|
||||
@cell-dblclick="nurseclick"
|
||||
v-loading="loading"
|
||||
>
|
||||
<el-table-column label="请选择" width="100" align="center">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
type="primary"
|
||||
style="width: 15px; height: 15px"
|
||||
v-if="form.departmentId == scope.row.id"
|
||||
circle
|
||||
@click="nurseclick(scope.row)"
|
||||
></el-button>
|
||||
<el-button
|
||||
v-else
|
||||
style="width: 15px; height: 15px"
|
||||
circle
|
||||
@click="nurseclick(scope.row)"
|
||||
></el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
property="departmentName"
|
||||
label="科室名称"
|
||||
align="center"
|
||||
:show-overflow-tooltip="true"
|
||||
>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<myPagination
|
||||
v-show="totaldepartment > 0"
|
||||
:total="totaldepartment"
|
||||
:pageSize="informationqueryParams.pageSize"
|
||||
:indexFromWrap="informationqueryParams.pageNum"
|
||||
@updateCPage="updateCPagetwo"
|
||||
></myPagination>
|
||||
<!-- <pagination v-show="totaldepartment > 0" :total="totaldepartment" :page.sync="informationqueryParams.pageNum"
|
||||
:limit.sync="informationqueryParams.pageSize" @pagination="informationInfoinfo" /> -->
|
||||
</el-dialog>
|
||||
<!-- 病种弹框 -->
|
||||
<el-dialog title="" :visible.sync="diseaseshowst" width="1000px" append-to-body :before-close="canceldiseases">
|
||||
<el-form ref="queryForm" :model="querydisease" :rules="rules" label-width="80px" :inline="true">
|
||||
<el-dialog
|
||||
title=""
|
||||
:visible.sync="diseaseshowst"
|
||||
width="1000px"
|
||||
append-to-body
|
||||
:before-close="canceldiseases"
|
||||
>
|
||||
<div style="padding-bottom: 23px;">
|
||||
<el-form
|
||||
ref="queryForm"
|
||||
:model="querydisease"
|
||||
:rules="rules"
|
||||
label-width="80px"
|
||||
:inline="true"
|
||||
>
|
||||
<el-form-item label="病种名称" prop="diseaseTypeName" label-width="120">
|
||||
<el-input v-model="querydisease.diseaseTypeName" placeholder="请输入病种名称" clearable />
|
||||
<el-input
|
||||
v-model="querydisease.diseaseTypeName"
|
||||
placeholder="请输入病种名称"
|
||||
clearable
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="infodisease">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetdisease">重置</el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-search"
|
||||
size="mini"
|
||||
@click="infodisease"
|
||||
>搜索</el-button
|
||||
>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetdisease"
|
||||
>重置</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<el-table :data="listdisease" @cell-dblclick="nurseclickdisease" v-loading="loading">
|
||||
<el-table
|
||||
:data="listdisease"
|
||||
@cell-dblclick="nurseclickdisease"
|
||||
v-loading="loading"
|
||||
>
|
||||
<el-table-column label="请选择" width="100" align="center">
|
||||
<template slot-scope="scope">
|
||||
<el-button type="primary" style="width: 15px; height: 15px" v-if="form.diseaseTypeId == scope.row.id" circle
|
||||
@click="nurseclickdisease(scope.row)"></el-button>
|
||||
<el-button v-else style="width: 15px; height: 15px" circle
|
||||
@click="nurseclickdisease(scope.row)"></el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
style="width: 15px; height: 15px"
|
||||
v-if="form.diseaseTypeId == scope.row.id"
|
||||
circle
|
||||
@click="nurseclickdisease(scope.row)"
|
||||
></el-button>
|
||||
<el-button
|
||||
v-else
|
||||
style="width: 15px; height: 15px"
|
||||
circle
|
||||
@click="nurseclickdisease(scope.row)"
|
||||
></el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column property="diseaseTypeName" label="病种名称" align="center" :show-overflow-tooltip="true">
|
||||
<el-table-column
|
||||
property="diseaseTypeName"
|
||||
label="病种名称"
|
||||
align="center"
|
||||
:show-overflow-tooltip="true"
|
||||
>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<!-- <pagination v-show="diseasetotal > 0" :total="diseasetotal" :page.sync="querydisease.pageNum"
|
||||
:limit.sync="querydisease.pageSize" @pagination="infodisease" /> -->
|
||||
<myPagination v-show="diseasetotal > 0" :total="diseasetotal" :pageSize="querydisease.pageSize"
|
||||
:indexFromWrap="querydisease.pageNum" @updateCPage="updateCPagethree"></myPagination>
|
||||
<myPagination
|
||||
v-show="diseasetotal > 0"
|
||||
:total="diseasetotal"
|
||||
:pageSize="querydisease.pageSize"
|
||||
:indexFromWrap="querydisease.pageNum"
|
||||
@updateCPage="updateCPagethree"
|
||||
></myPagination>
|
||||
</el-dialog>
|
||||
<!-- 审核弹框 -->
|
||||
<el-dialog title="提示" :visible.sync="dialogexamine" width="30%" :before-close="handleClose" center>
|
||||
<el-dialog
|
||||
title="提示"
|
||||
:visible.sync="dialogexamine"
|
||||
width="30%"
|
||||
:before-close="handleClose"
|
||||
center
|
||||
>
|
||||
<span style="font-size: 18px; margin-left: 55px">是否同意审核?</span>
|
||||
<span slot="footer" class="dialog-footer">
|
||||
<el-button @click="cancelamine">同意</el-button>
|
||||
@ -299,7 +630,12 @@
|
||||
</span>
|
||||
</el-dialog>
|
||||
<!-- 预览弹框 -->
|
||||
<el-dialog title="预览" :visible.sync="dialogview" width="50%" :before-close="handleview">
|
||||
<el-dialog
|
||||
title="预览"
|
||||
:visible.sync="dialogview"
|
||||
width="50%"
|
||||
:before-close="handleview"
|
||||
>
|
||||
<div class="titletop">文章模板:{{ formview.propagandaTitle }}</div>
|
||||
<div class="bodytop">
|
||||
<div class="titledata">{{ formview.propagandaTitle }}</div>
|
||||
@ -316,18 +652,46 @@
|
||||
</div>
|
||||
</el-dialog>
|
||||
<!-- 素材选择弹框 -->
|
||||
<el-dialog title="请选择素材" :visible.sync="dialogmaterial" width="900px" :before-close="materialClose">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-dialog
|
||||
title="请选择素材"
|
||||
:visible.sync="dialogmaterial"
|
||||
width="900px"
|
||||
:before-close="materialClose"
|
||||
>
|
||||
<el-form
|
||||
:model="queryParams"
|
||||
ref="queryForm"
|
||||
size="small"
|
||||
:inline="true"
|
||||
v-show="showSearch"
|
||||
label-width="68px"
|
||||
>
|
||||
<el-form-item label="素材名称" prop="materialsName">
|
||||
<el-input v-model="querymaterial.materialsName" placeholder="请输入素材名称" clearable
|
||||
@keyup.enter.native="handleQuerysc" />
|
||||
<el-input
|
||||
v-model="querymaterial.materialsName"
|
||||
placeholder="请输入素材名称"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuerysc"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuerysc">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuerysc">重置</el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-search"
|
||||
size="mini"
|
||||
@click="handleQuerysc"
|
||||
>搜索</el-button
|
||||
>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuerysc"
|
||||
>重置</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<el-tabs v-model="querymaterial.materialsType" type="card" @tab-click="handleClick">
|
||||
<el-tabs
|
||||
v-model="querymaterial.materialsType"
|
||||
type="card"
|
||||
@tab-click="handleClick"
|
||||
>
|
||||
<el-tab-pane label="图片" name="IMAGE_TEXT"></el-tab-pane>
|
||||
<el-tab-pane label="视频" name="VIDEO"></el-tab-pane>
|
||||
</el-tabs>
|
||||
@ -338,29 +702,44 @@
|
||||
@change="changecheck($event, item)"
|
||||
></el-checkbox> -->
|
||||
<div @click.stop="viewshow(item)">
|
||||
<img :src="baseUrl + item.materialsFilePath" alt=""
|
||||
v-if="item.materialsFilePath && !item.videoCoverFilePath" />
|
||||
<img :src="baseUrl + item.videoCoverFilePath" alt=""
|
||||
v-if="item.videoCoverFilePath && item.materialsFilePath" />
|
||||
<img
|
||||
:src="baseUrl + item.materialsFilePath"
|
||||
alt=""
|
||||
v-if="item.materialsFilePath && !item.videoCoverFilePath"
|
||||
/>
|
||||
<img
|
||||
:src="baseUrl + item.videoCoverFilePath"
|
||||
alt=""
|
||||
v-if="item.videoCoverFilePath && item.materialsFilePath"
|
||||
/>
|
||||
<div class="texttitle">{{ item.materialsName }}</div>
|
||||
<div class="dataliat">
|
||||
创建人/创建时间:<span>{{ item.createBy }}</span>/<span>{{ item.createTime }}</span>
|
||||
创建人/创建时间:<span>{{ item.createBy }}</span
|
||||
>/<span>{{ item.createTime }}</span>
|
||||
</div>
|
||||
<!-- <div class="dataliat">素材来源:</div> -->
|
||||
<!-- <div class="dataliat">标签:暂无</div> -->
|
||||
<div class="dataliat bq" v-if="item.indications ||
|
||||
item.drugName ||
|
||||
item.applicableDiseases ||
|
||||
item.surgicalName ||
|
||||
item.inspectionItems ||
|
||||
item.checkItems
|
||||
">
|
||||
<div
|
||||
class="dataliat bq"
|
||||
v-if="
|
||||
item.indications ||
|
||||
item.drugName ||
|
||||
item.applicableDiseases ||
|
||||
item.surgicalName ||
|
||||
item.inspectionItems ||
|
||||
item.checkItems
|
||||
"
|
||||
>
|
||||
标签:
|
||||
<span v-if="item.indications">{{ item.indications }},</span>
|
||||
<span v-if="item.drugName">{{ item.drugName }},</span>
|
||||
<span v-if="item.applicableDiseases">{{ item.applicableDiseases }},</span>
|
||||
<span v-if="item.applicableDiseases"
|
||||
>{{ item.applicableDiseases }},</span
|
||||
>
|
||||
<span v-if="item.surgicalName">{{ item.surgicalName }},</span>
|
||||
<span v-if="item.inspectionItems">{{ item.inspectionItems }},</span>
|
||||
<span v-if="item.inspectionItems"
|
||||
>{{ item.inspectionItems }},</span
|
||||
>
|
||||
<span v-if="item.checkItems">{{ item.checkItems }},</span>
|
||||
</div>
|
||||
<div class="dataliat bq" v-else>标签:暂无</div>
|
||||
@ -370,16 +749,29 @@
|
||||
</div>
|
||||
<!-- <pagination v-show="totalmaterial > 0" :total="totalmaterial" :page.sync="querymaterial.pageNum"
|
||||
:limit.sync="querymaterial.pageSize" @pagination="getmaterial" /> -->
|
||||
<myPagination v-show="totalmaterial > 0" :total="totalmaterial" :pageSize="querymaterial.pageSize"
|
||||
:indexFromWrap="querymaterial.pageNum" @updateCPage="updateCPagefour"></myPagination>
|
||||
<myPagination
|
||||
v-show="totalmaterial > 0"
|
||||
:total="totalmaterial"
|
||||
:pageSize="querymaterial.pageSize"
|
||||
:indexFromWrap="querymaterial.pageNum"
|
||||
@updateCPage="updateCPagefour"
|
||||
></myPagination>
|
||||
</el-dialog>
|
||||
<!-- 预览弹框 -->
|
||||
<el-dialog title="预览" :visible.sync="openview" width="60%">
|
||||
<div class="viewbody">
|
||||
<div class="left">
|
||||
<video v-if="querymaterial.materialsType == 'VIDEO'" ref="myVideo" :src="baseUrl + viewform.materialsFilePath"
|
||||
controls></video>
|
||||
<img :src="baseUrl + viewform.materialsFilePath" alt="" v-if="querymaterial.materialsType == 'IMAGE_TEXT'" />
|
||||
<video
|
||||
v-if="querymaterial.materialsType == 'VIDEO'"
|
||||
ref="myVideo"
|
||||
:src="baseUrl + viewform.materialsFilePath"
|
||||
controls
|
||||
></video>
|
||||
<img
|
||||
:src="baseUrl + viewform.materialsFilePath"
|
||||
alt=""
|
||||
v-if="querymaterial.materialsType == 'IMAGE_TEXT'"
|
||||
/>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="nametitle">素材名称</div>
|
||||
@ -404,9 +796,18 @@
|
||||
</div>
|
||||
</el-dialog>
|
||||
<!-- 导入弹框 -->
|
||||
<el-dialog title="" :visible.sync="innerexport" width="1000px" append-to-body :before-close="exportcancel">
|
||||
<propagandaexport @submit="submit" ref="childComponent"></propagandaexport>
|
||||
<div slot="footer" class="dialog-footer" style="margin-top:20px">
|
||||
<el-dialog
|
||||
title=""
|
||||
:visible.sync="innerexport"
|
||||
width="1000px"
|
||||
append-to-body
|
||||
:before-close="exportcancel"
|
||||
>
|
||||
<propagandaexport
|
||||
@submit="submit"
|
||||
ref="childComponent"
|
||||
></propagandaexport>
|
||||
<div slot="footer" class="dialog-footer" style="margin-top: 20px">
|
||||
<el-button type="primary" @click="submitexport">确 定</el-button>
|
||||
<el-button @click="innerexport = false">取 消</el-button>
|
||||
</div>
|
||||
@ -824,7 +1225,7 @@ export default {
|
||||
message: "复制成功"
|
||||
});
|
||||
this.getList()
|
||||
this.$refs.DepartmentList.Departmentlist()
|
||||
this.$refs.DepartmentList.Departmentlist()
|
||||
|
||||
});
|
||||
}).catch(() => {
|
||||
|
||||
@ -155,6 +155,7 @@
|
||||
<!-- 科室弹框 -->
|
||||
<el-dialog title="" :visible.sync="innerVisibleshow" width="1000px" append-to-body
|
||||
:before-close="innerVisiblecancel">
|
||||
<div style="padding-bottom: 23px;">
|
||||
<el-form ref="queryForm" :model="informationqueryParams" :rules="rules" label-width="80px" :inline="true">
|
||||
<el-form-item label="科室名称" prop="departmentName" label-width="120">
|
||||
<el-input v-model="informationqueryParams.departmentName" placeholder="请输入科室名称" clearable />
|
||||
@ -175,6 +176,7 @@
|
||||
<el-table-column property="departmentName" label="科室名称" align="center" :show-overflow-tooltip="true">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<myPagination v-show="totaldepartment > 0" :total="totaldepartment" :pageSize="informationqueryParams.pageSize"
|
||||
:indexFromWrap="informationqueryParams.pageNum" @updateCPage="updateCPagetwo"></myPagination>
|
||||
<!-- <pagination v-show="totaldepartment > 0" :total="totaldepartment" :page.sync="informationqueryParams.pageNum"
|
||||
@ -182,6 +184,7 @@
|
||||
</el-dialog>
|
||||
<!-- 病种弹框 -->
|
||||
<el-dialog title="" :visible.sync="diseaseshowst" width="1000px" append-to-body :before-close="canceldiseases">
|
||||
<div style="padding-bottom: 23px;">
|
||||
<el-form ref="queryForm" :model="querydisease" :rules="rules" label-width="80px" :inline="true">
|
||||
<el-form-item label="病种名称" prop="diseaseTypeName" label-width="120">
|
||||
<el-input v-model="querydisease.diseaseTypeName" placeholder="请输入病种名称" clearable />
|
||||
@ -203,6 +206,7 @@
|
||||
<el-table-column property="diseaseTypeName" label="病种名称" align="center" :show-overflow-tooltip="true">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<!-- <pagination v-show="diseasetotal > 0" :total="diseasetotal" :page.sync="querydisease.pageNum"
|
||||
:limit.sync="querydisease.pageSize" @pagination="infodisease" /> -->
|
||||
<myPagination v-show="diseasetotal > 0" :total="diseasetotal" :pageSize="querydisease.pageSize"
|
||||
|
||||
@ -181,6 +181,7 @@
|
||||
<!-- 科室弹框 -->
|
||||
<el-dialog title="" :visible.sync="innerVisibleshow" width="1000px" append-to-body
|
||||
:before-close="innerVisiblecancel">
|
||||
<div style="padding-bottom: 23px;">
|
||||
<el-form ref="queryForm" :model="informationqueryParams" :rules="rules" label-width="80px" :inline="true">
|
||||
<el-form-item label="科室名称" prop="departmentName" label-width="120">
|
||||
<el-input v-model="informationqueryParams.departmentName" placeholder="请输入科室名称" clearable />
|
||||
@ -201,6 +202,7 @@
|
||||
<el-table-column property="departmentName" label="科室名称" align="center" :show-overflow-tooltip="true">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<myPagination v-show="totaldepartment > 0" :total="totaldepartment" :pageSize="informationqueryParams.pageSize"
|
||||
:indexFromWrap="informationqueryParams.pageNum" @updateCPage="updateCPagetwo"></myPagination>
|
||||
<!-- <pagination v-show="totaldepartment > 0" :total="totaldepartment" :page.sync="informationqueryParams.pageNum"
|
||||
@ -208,6 +210,7 @@
|
||||
</el-dialog>
|
||||
<!-- 病种弹框 -->
|
||||
<el-dialog title="" :visible.sync="diseaseshowst" width="1000px" append-to-body :before-close="canceldiseases">
|
||||
<div style="padding-bottom: 23px;">
|
||||
<el-form ref="queryForm" :model="querydisease" :rules="rules" label-width="80px" :inline="true">
|
||||
<el-form-item label="病种名称" prop="diseaseTypeName" label-width="120">
|
||||
<el-input v-model="querydisease.diseaseTypeName" placeholder="请输入病种名称" clearable />
|
||||
@ -229,6 +232,7 @@
|
||||
<el-table-column property="diseaseTypeName" label="病种名称" align="center" :show-overflow-tooltip="true">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<!-- <pagination v-show="diseasetotal > 0" :total="diseasetotal" :page.sync="querydisease.pageNum"
|
||||
:limit.sync="querydisease.pageSize" @pagination="infodisease" /> -->
|
||||
<myPagination v-show="diseasetotal > 0" :total="diseasetotal" :pageSize="querydisease.pageSize"
|
||||
|
||||
@ -140,6 +140,7 @@
|
||||
<!-- 科室弹框 -->
|
||||
<el-dialog title="" :visible.sync="innerVisibleshow" width="1000px" append-to-body
|
||||
:before-close="innerVisiblecancel">
|
||||
<div style="padding-bottom: 23px;">
|
||||
<el-form ref="queryForm" :model="informationqueryParams" :rules="rules" label-width="80px" :inline="true">
|
||||
<el-form-item label="科室名称" prop="departmentName" label-width="120">
|
||||
<el-input v-model="informationqueryParams.departmentName" placeholder="请输入科室名称" clearable />
|
||||
@ -160,6 +161,7 @@
|
||||
<el-table-column property="departmentName" label="科室名称" align="center" :show-overflow-tooltip="true">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<myPagination v-show="totaldepartment > 0" :total="totaldepartment" :pageSize="informationqueryParams.pageSize"
|
||||
:indexFromWrap="informationqueryParams.pageNum" @updateCPage="updateCPagetwo"></myPagination>
|
||||
<!-- <pagination v-show="totaldepartment > 0" :total="totaldepartment" :page.sync="informationqueryParams.pageNum"
|
||||
@ -167,6 +169,7 @@
|
||||
</el-dialog>
|
||||
<!-- 病种弹框 -->
|
||||
<el-dialog title="" :visible.sync="diseaseshowst" width="1000px" append-to-body :before-close="canceldiseases">
|
||||
<div style="padding-bottom: 23px;">
|
||||
<el-form ref="queryForm" :model="querydisease" :rules="rules" label-width="80px" :inline="true">
|
||||
<el-form-item label="病种名称" prop="diseaseTypeName" label-width="120">
|
||||
<el-input v-model="querydisease.diseaseTypeName" placeholder="请输入病种名称" clearable />
|
||||
@ -188,6 +191,7 @@
|
||||
<el-table-column property="diseaseTypeName" label="病种名称" align="center" :show-overflow-tooltip="true">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<!-- <pagination v-show="diseasetotal > 0" :total="diseasetotal" :page.sync="querydisease.pageNum"
|
||||
:limit.sync="querydisease.pageSize" @pagination="infodisease" /> -->
|
||||
<myPagination
|
||||
|
||||
@ -83,6 +83,7 @@
|
||||
<!-- 科室弹框 -->
|
||||
<el-dialog title="" :visible.sync="innerVisibleshow" width="1000px" append-to-body
|
||||
:before-close="innerVisiblecancel">
|
||||
<div style="padding-bottom: 23px;">
|
||||
<el-form ref="queryForm" :model="informationqueryParams" :rules="rules" label-width="80px" :inline="true">
|
||||
<el-form-item label="科室名称" prop="departmentName" label-width="120">
|
||||
<el-input v-model="informationqueryParams.departmentName" placeholder="请输入科室名称" clearable />
|
||||
@ -103,6 +104,7 @@
|
||||
<el-table-column property="departmentName" label="科室名称" align="center" :show-overflow-tooltip="true">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<!-- <pagination v-show="totaldepartment > 0" :total="totaldepartment" :page.sync="informationqueryParams.pageNum"
|
||||
:limit.sync="informationqueryParams.pageSize" @pagination="informationInfoinfo" /> -->
|
||||
<myPagination v-show="totaldepartment > 0" :total="totaldepartment" :pageSize="informationqueryParams.pageSize"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user