law-case-execute-procedure-config.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <div :class="$style.stageConfig">
  3. <a-card :bordered="false">
  4. <sd-business-list
  5. :module-id="this.$route.query.moduleId"
  6. :form-list-id="this.$route.query.formListId"
  7. @searchbtnClick="searchbtnClick"
  8. ></sd-business-list>
  9. </a-card>
  10. </div>
  11. </template>
  12. <script>
  13. import sdBusinessList from '@/application-manage/sd-business-list.vue'
  14. import components from './_import-components/law-case-execute-procedure-config-import'
  15. export default {
  16. name: 'LawCaseExecuteProcedureConfig',
  17. metaInfo: {
  18. title: '案件执行程序配置',
  19. },
  20. components: {
  21. ...components,
  22. sdBusinessList,
  23. },
  24. data() {
  25. return {
  26. // 模块Id
  27. moduleId: '',
  28. // 列表ID
  29. formListId: '',
  30. }
  31. },
  32. mounted() {
  33. this.moduleId = this.$route.query.moduleId
  34. this.formListId = this.$route.query.formListId
  35. },
  36. methods: {
  37. searchbtnClick() {},
  38. },
  39. }
  40. </script>
  41. <style module lang="scss">
  42. @use '@/common/design' as *;
  43. .stageConfig {
  44. :global(.ant-card-body) {
  45. padding-top: 0;
  46. }
  47. :global .header_sd-data-table_common > .ant-btn:nth-of-type(4) {
  48. display: none;
  49. }
  50. }
  51. </style>