123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <div :class="$style.stageConfig">
- <a-card :bordered="false">
- <sd-business-list
- :module-id="this.$route.query.moduleId"
- :form-list-id="this.$route.query.formListId"
- @searchbtnClick="searchbtnClick"
- ></sd-business-list>
- </a-card>
- </div>
- </template>
- <script>
- import sdBusinessList from '@/application-manage/sd-business-list.vue'
- import components from './_import-components/law-case-execute-procedure-config-import'
- export default {
- name: 'LawCaseExecuteProcedureConfig',
- metaInfo: {
- title: '案件执行程序配置',
- },
- components: {
- ...components,
- sdBusinessList,
- },
- data() {
- return {
- // 模块Id
- moduleId: '',
- // 列表ID
- formListId: '',
- }
- },
- mounted() {
- this.moduleId = this.$route.query.moduleId
- this.formListId = this.$route.query.formListId
- },
- methods: {
- searchbtnClick() {},
- },
- }
- </script>
- <style module lang="scss">
- @use '@/common/design' as *;
- .stageConfig {
- :global(.ant-card-body) {
- padding-top: 0;
- }
- :global .header_sd-data-table_common > .ant-btn:nth-of-type(4) {
- display: none;
- }
- }
- </style>
|