index.vue 886 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <div>
  3. <basicLayout
  4. ref="basicLayout"
  5. :oldFormPath="{
  6. add:'HManagement/siteManage/systemRemind/components'
  7. }"
  8. tableName="systemRemindTable"
  9. idName="sys_remind_configid"
  10. :apiId="{query:20221220153101,del:''}"
  11. :options="options"
  12. :hideSearch="true">
  13. <div slot="custom"></div>
  14. <template v-slot:tbList="scope">
  15. <div>
  16. {{scope.data.column.data[[scope.data.column.columnname]]}}
  17. </div>
  18. </template>
  19. <template v-slot:tbOpreation="scope">
  20. <Edit @onSuccess="$refs.basicLayout.listData()" :data="scope.data.data"/>
  21. </template>
  22. </basicLayout>
  23. </div>
  24. </template>
  25. <script>
  26. import Edit from './components/edit'
  27. export default {
  28. data () {
  29. return {
  30. options:[]
  31. }
  32. },
  33. components: {Edit},
  34. methods:{
  35. }
  36. }
  37. </script>
  38. <style>
  39. </style>