血透系统PC前端

ExportCountry.vue 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <div class="main-contain">
  3. <div class="cell clearfix">
  4. <label class="title"><span class="name">导出时间</span> : </label>
  5. <el-date-picker size="small" v-model="start_time" prefix-icon="el-icon-date" @change="changeTime"
  6. :editable="false" style="width: 196px;" type="date" placeholder="选择日期时间" align="right"
  7. format="yyyy-MM-dd" value-format="yyyy-MM-dd" :picker-options="pickerOptions1"></el-date-picker>
  8. <span class="cellLine"> - </span>
  9. <el-date-picker size="small" v-model="end_time" prefix-icon="el-icon-date" @change="changeTime"
  10. :editable="false" style="width: 196px;" type="date" placeholder="选择日期时间" align="right"
  11. format="yyyy-MM-dd" value-format="yyyy-MM-dd" :picker-options="pickerOptions1"></el-date-picker>
  12. </div>
  13. <div class="cell clearfix">
  14. <el-row>
  15. <el-col :span="4">
  16. <el-button type="primary">机构信息导出</el-button>
  17. </el-col>
  18. <el-col :span="4" style="margin-left: 20px">
  19. <el-button type="primary">病人信息导出</el-button>
  20. </el-col>
  21. <el-col :span="4" style="margin-left: 20px">
  22. <el-button type="primary">检验检查导出</el-button>
  23. </el-col>
  24. <el-col :span="4" style="margin-left: 20px">
  25. <el-button type="primary">设备信息导出</el-button>
  26. </el-col>
  27. <el-col :span="4" style="margin-left: 20px">
  28. <el-button type="primary">血透信息导出</el-button>
  29. </el-col>
  30. </el-row>
  31. </div>
  32. <div class="cell clearfix">
  33. <el-row>
  34. <el-col :span="4" >
  35. <el-button type="primary" >异常信息导出</el-button>
  36. </el-col>
  37. <el-col :span="4" style="margin-left: 20px">
  38. <el-button type="primary" >消毒信息导出</el-button>
  39. </el-col>
  40. <el-col :span="4" style="margin-left: 20px">
  41. <el-button type="primary" >迁出信息导出</el-button>
  42. </el-col>
  43. <el-col :span="4" style="margin-left: 20px">
  44. <el-button type="primary" >全部信息导出</el-button>
  45. </el-col>
  46. <el-col :span="4" style="margin-left: 20px">
  47. <el-button type="primary">一键信息导出</el-button>
  48. </el-col>
  49. </el-row>
  50. </div>
  51. </div>
  52. </template>
  53. <script>
  54. export default {
  55. name: 'ExportCountry',
  56. data() {
  57. return {
  58. signAndWeighBoxPatients: 'sign-and-weigh-box-patients',
  59. start_time: '',
  60. end_time: ''
  61. }
  62. }
  63. }
  64. </script>
  65. <style scoped>
  66. </style>