update 0727docs

This commit is contained in:
lb
2023-07-27 15:01:42 +08:00
parent 070013b7b2
commit d35f0ba843
8 changed files with 73 additions and 92 deletions

View File

@@ -3,8 +3,7 @@
:table-config="tableConfig"
:head-config="headFormConfigs"
:dialog-configs="dialogConfigs"
:list-query-extra="[]"
/>
:list-query-extra="[{ viewType: 0 }]" />
</template>
<script>
@@ -19,20 +18,6 @@ export default {
urls: this.allUrls,
};
},
// urls: {
// type: Object,
// required: true,
// default: () => ({
// /** 列表 url **/ list: null,
// /** 分页 url **/ page: null,
// /** 编辑保存 url **/ edit: null,
// /** 删除条目 url **/ delete: null,
// /** 详情 url **/ detail: null,
// /** 导出 url **/ export: null,
// /** 导入 url **/ import: null,
// /** 其他 url **/ other: null,
// }),
// },
data() {
const { tableConfig, headFormConfigs, urls, dialogConfigs } = initConfig.call(this);
return {
@@ -42,9 +27,6 @@ export default {
dialogConfigs,
};
},
created() {},
mounted() {},
methods: {},
};
</script>