| | |
| | | * @version: |
| | | * @Date: 2024-05-30 13:28:20 |
| | | * @LastEditors: Ben Lin |
| | | * @LastEditTime: 2024-06-24 18:49:29 |
| | | * @LastEditTime: 2024-07-03 08:52:44 |
| | | --> |
| | | <template> |
| | | <div> |
| | |
| | | const custImport = ref<any>(null); |
| | | const isMounted = ref(false); |
| | | const buttons = ref([]); |
| | | const others = ref<any>(null); |
| | | const keyFieldValues = ref<any>(null); |
| | | provide<Ref<any>>('objParams', objParams.value); |
| | | provide<Ref<any[]>>('_columns', _columns); |
| | | provide<Ref<any[]>>('_searchFormSchema', _searchFormSchema); |
| | | provide<Ref<any[]>>('_crudFormSchema', _crudFormSchema); |
| | | provide<Ref<string>>('isExistSql', isExistSql); |
| | | provide<Ref<any>>('others', others); |
| | | provide<Ref<any>>('keyFieldValues', keyFieldValues); |
| | | |
| | | const [registerCust, { openModal: openCustomModal, closeModal }] = useModal(); |
| | | |