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

maintain.vue 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <el-dialog
  3. title="单位维护"
  4. width="660px"
  5. :visible.sync="visible"
  6. :before-close="_close"
  7. >
  8. <el-button type="primary" :loading="submitLoading" @click="submitAction()">新增</el-button>
  9. <el-table :data="tableData" border style="width: 100%">
  10. <el-table-column label="医保类型" align="center"></el-table-column>
  11. <el-table-column label="自付比例(%)" align="center">
  12. <template slot-scope="scope">
  13. <el-input v-model="input" placeholder="请输入内容"></el-input>
  14. </template>
  15. </el-table-column>
  16. </el-table>
  17. <div slot="footer" class="dialog-footer">
  18. <el-button @click="hide">取 消</el-button>
  19. <el-button type="primary" :loading="submitLoading" @click="submitAction()">保 存</el-button>
  20. </div>
  21. </el-dialog>
  22. </template>
  23. <script>
  24. export default {
  25. data(){
  26. return{
  27. tableData:[
  28. {}
  29. ]
  30. }
  31. },
  32. methods:{
  33. _close: function(done) {
  34. // this.clear()
  35. done()
  36. },
  37. clear: function() {
  38. this.form.id = 0;
  39. this.form.name = "";
  40. this.form.intro = "";
  41. },
  42. show() {
  43. // this.clear()
  44. this.visible = true
  45. },
  46. hide() {
  47. // this.clear()
  48. this.visible = false
  49. },
  50. }
  51. }
  52. </script>