Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

outpatientInvoice.vue 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <div class="main-contain outpatientChargesManagement">
  3. <div class="position">
  4. <bread-crumb :crumbs='crumbs'></bread-crumb>
  5. </div>
  6. <div class="app-container">
  7. <div style="display: flex;justify-content: space-between;margin-bottom:10px;">
  8. <div>
  9. <el-input size="small" style="width:150px;" @keyup.enter.native='searchAction' v-model.trim="search_input" class="filter-item"/>
  10. <el-button size="small" style="margin-left:10px;" class="filter-item" type="primary" @click="searchAction">搜索</el-button>
  11. </div>
  12. <el-button size="small" type="danger">删除</el-button>
  13. </div>
  14. <el-table :data="tableData" border height="500" style="width: 100%;" :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
  15. <el-table-column type="selection" width="55" align="center"></el-table-column>
  16. <el-table-column align="center" prop="name" label="序号">
  17. <template slot-scope="scope">{{ scope.row.date }}</template>
  18. </el-table-column>
  19. <el-table-column align="center" prop="name" label="操作员">
  20. <template slot-scope="scope">{{ scope.row.date }}</template>
  21. </el-table-column>
  22. <el-table-column align="center" prop="name" label="发票起">
  23. <template slot-scope="scope">{{ scope.row.date }}</template>
  24. </el-table-column>
  25. <el-table-column align="center" prop="name" label="发票止">
  26. <template slot-scope="scope">{{ scope.row.date }}</template>
  27. </el-table-column>
  28. <el-table-column align="center" prop="name" label="状态">
  29. <template slot-scope="scope">{{ scope.row.date }}</template>
  30. </el-table-column>
  31. <el-table-column align="center" prop="name" label="备注">
  32. <template slot-scope="scope">{{ scope.row.date }}</template>
  33. </el-table-column>
  34. <el-table-column align="center" prop="name" label="操作">
  35. <template slot-scope="scope">
  36. <el-button size="mini" type="danger">删除</el-button>
  37. </template>
  38. </el-table-column>
  39. </el-table>
  40. </div>
  41. </div>
  42. </template>
  43. <script>
  44. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  45. export default {
  46. components:{
  47. BreadCrumb,
  48. },
  49. data(){
  50. return{
  51. crumbs: [
  52. { path: false, name: '门诊收费' },
  53. { path: false, name: '门诊发票' }
  54. ],
  55. tableData: [{
  56. date: '2016-05-02',
  57. name: '王小虎',
  58. address: '上海市普陀区金沙江路 1518 弄'
  59. }, {
  60. date: '2016-05-04',
  61. name: '王小虎',
  62. address: '上海市普陀区金沙江路 1517 弄'
  63. }, {
  64. date: '2016-05-01',
  65. name: '王小虎',
  66. address: '上海市普陀区金沙江路 1519 弄'
  67. }, {
  68. date: '2016-05-03',
  69. name: '王小虎',
  70. address: '上海市普陀区金沙江路 1516 弄'
  71. }]
  72. }
  73. }
  74. }
  75. </script>