123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <template>
- <div class="main-contain">
- <div class="cell clearfix">
- <label class="title"><span class="name">导出时间</span> : </label>
- <el-date-picker size="small" v-model="start_time" prefix-icon="el-icon-date" @change="changeTime"
- :editable="false" style="width: 196px;" type="date" placeholder="选择日期时间" align="right"
- format="yyyy-MM-dd" value-format="yyyy-MM-dd" :picker-options="pickerOptions1"></el-date-picker>
- <span class="cellLine"> - </span>
- <el-date-picker size="small" v-model="end_time" prefix-icon="el-icon-date" @change="changeTime"
- :editable="false" style="width: 196px;" type="date" placeholder="选择日期时间" align="right"
- format="yyyy-MM-dd" value-format="yyyy-MM-dd" :picker-options="pickerOptions1"></el-date-picker>
- </div>
- <div class="cell clearfix">
- <el-row>
- <el-col :span="4">
- <el-button type="primary">机构信息导出</el-button>
- </el-col>
- <el-col :span="4" style="margin-left: 20px">
- <el-button type="primary">病人信息导出</el-button>
-
- </el-col>
- <el-col :span="4" style="margin-left: 20px">
- <el-button type="primary">检验检查导出</el-button>
-
- </el-col>
- <el-col :span="4" style="margin-left: 20px">
- <el-button type="primary">设备信息导出</el-button>
- </el-col>
-
- <el-col :span="4" style="margin-left: 20px">
- <el-button type="primary">血透信息导出</el-button>
- </el-col>
- </el-row>
- </div>
-
- <div class="cell clearfix">
- <el-row>
- <el-col :span="4" >
- <el-button type="primary" >异常信息导出</el-button>
- </el-col>
- <el-col :span="4" style="margin-left: 20px">
- <el-button type="primary" >消毒信息导出</el-button>
-
- </el-col>
- <el-col :span="4" style="margin-left: 20px">
- <el-button type="primary" >迁出信息导出</el-button>
-
- </el-col>
- <el-col :span="4" style="margin-left: 20px">
- <el-button type="primary" >全部信息导出</el-button>
- </el-col>
-
- <el-col :span="4" style="margin-left: 20px">
- <el-button type="primary">一键信息导出</el-button>
- </el-col>
- </el-row>
- </div>
-
-
- </div>
-
- </template>
-
- <script>
- export default {
- name: 'ExportCountry',
- data() {
- return {
- signAndWeighBoxPatients: 'sign-and-weigh-box-patients',
- start_time: '',
- end_time: ''
-
- }
- }
- }
- </script>
-
- <style scoped>
-
- </style>
|