|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div class="dashboard-container">
|
|
|
<div class="block">
|
|
|
- <div class="barBtn-title">医嘱查询</div>
|
|
|
+ <div class="barBtn-title"></div>
|
|
|
<div class="bnh"></div>
|
|
|
<div class="barBtn">
|
|
|
<el-form ref="form" :model="formData1" label-width="100px">
|
|
@@ -119,7 +119,7 @@
|
|
|
</el-select>
|
|
|
</span>
|
|
|
<span v-else>
|
|
|
- <el-input class="width150" v-model="item.value" placeholder=""></el-input>
|
|
|
+ <el-input class="width150" v-model="item.value" placeholder="请输入"></el-input>
|
|
|
</span>
|
|
|
|
|
|
<!-- 中间选择输入框结束 -->
|
|
@@ -217,7 +217,8 @@
|
|
|
例
|
|
|
</span>
|
|
|
</div>
|
|
|
- <el-button class="title-left-btn" @click="funExport()">导出Excel</el-button>
|
|
|
+ <!-- 不登陆访问没有导出 -->
|
|
|
+ <el-button v-if="!isWhitelist" class="title-left-btn" @click="funExport()">导出Excel</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -271,6 +272,14 @@ import { doctorAdviceExport } from '@/api/excel';
|
|
|
|
|
|
export default {
|
|
|
name: 'adviceSearch',
|
|
|
+ props: {
|
|
|
+ isWhitelist: {
|
|
|
+ type: Boolean,
|
|
|
+ default() {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
components: {
|
|
|
Title,
|
|
|
mPagination,
|