index.vue 806 B

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