New file |
| | |
| | | /* eslint-disable */ |
| | | // @ts-ignore |
| | | import { request } from '@/utils/request'; |
| | | |
| | | /** 文件管理列表 POST /api/FileRecord/GetFileRecordList */ |
| | | export async function getFileRecordList(body: API.GetFileRecordInput, options?: API.RequestConfig) { |
| | | return request<API.GetFileRecordOutputPageOutput>('/api/FileRecord/GetFileRecordList', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 创建临时访问令牌 POST /api/User/CreateTempToken */ |
| | | export async function createTempToken(body: API.CreateTempTokenInput, options?: API.RequestConfig) { |
| | | return request<string>('/api/User/CreateTempToken', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 此处后端没有提供注释 POST /api/User/DeleteRole */ |
| | | export async function deleteRole( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | |
| | | import * as Account from './Account'; |
| | | import * as BaseModule from './BaseModule'; |
| | | import * as Features from './Features'; |
| | | import * as FileRecord from './FileRecord'; |
| | | import * as IdentityRole from './IdentityRole'; |
| | | import * as IdentityUser from './IdentityUser'; |
| | | import * as IdentityUserLookup from './IdentityUserLookup'; |
| | |
| | | Account, |
| | | BaseModule, |
| | | Features, |
| | | FileRecord, |
| | | IdentityRole, |
| | | IdentityUser, |
| | | IdentityUserLookup, |
| | |
| | | payFileUrl?: string; |
| | | /** 消费类型 */ |
| | | payRemark?: string; |
| | | access?: ParkBountyTradeAccessEnum; |
| | | } |
| | | |
| | | interface CreateTempTokenInput { |
| | | /** 用户Id */ |
| | | userId?: string; |
| | | } |
| | | |
| | | interface CurrentCultureDto { |
| | |
| | | |
| | | interface GetFeatureListResultDto { |
| | | groups?: FeatureGroupDto[]; |
| | | } |
| | | |
| | | interface GetFileRecordInput { |
| | | pageModel?: Pagination; |
| | | /** 操作起始日期 */ |
| | | creationTimeBegin?: string; |
| | | /** 操作结束日期 */ |
| | | creationTimeEnd?: string; |
| | | } |
| | | |
| | | interface GetFileRecordOutput { |
| | | /** Id */ |
| | | id?: string; |
| | | /** 用户Id */ |
| | | enterpriseId?: string; |
| | | /** 文件名称 */ |
| | | name?: string; |
| | | /** 事件 */ |
| | | event?: string; |
| | | /** 操作 */ |
| | | operate?: string; |
| | | /** 状态 */ |
| | | status?: string; |
| | | /** 源文件地址 */ |
| | | fileUrl?: string; |
| | | /** 导出数据/错误数据 JSON格式 */ |
| | | jsonData?: string; |
| | | /** 操作时间 */ |
| | | creationTime?: string; |
| | | /** 总数据量 */ |
| | | count?: number; |
| | | /** 成功数据量 */ |
| | | successCount?: number; |
| | | } |
| | | |
| | | interface GetFileRecordOutputPageOutput { |
| | | pageModel?: Pagination; |
| | | objectData?: any; |
| | | data?: GetFileRecordOutput[]; |
| | | } |
| | | |
| | | interface GetInsuranceBatchBillForCheckInput { |
| | |
| | | userName?: string; |
| | | /** 用户手机号 */ |
| | | phoneNumber?: string; |
| | | /** 密码 */ |
| | | password?: string; |
| | | /** 企业名称 */ |
| | | enterpriseName?: string; |
| | | /** 营业执照文件地址 */ |
| | |
| | | // const boleSetting = useSettingStoreHook(); |
| | | const ctx = useProvideContext(); |
| | | const loginFormTitle = getAppSetting(AppType).loginFormTitle; |
| | | const redirect = computed<string>(() => route.query?.redirect as string); |
| | | const code = computed<string>(() => route.query?.code as string); |
| | | const name = computed<string>(() => route.query?.name as string); |
| | | |
| | | const router = useRouter(); |
| | | const route = useRoute(); |
| | | |
| | | let user = ref(''); |
| | | let pwd = ref(''); |
| | | let user = ref(name.value ?? ''); |
| | | let pwd = ref(code.value ?? ''); |
| | | let loading = ref(false); |
| | | let ifDisplay = ref(false); |
| | | const userStore = useUserStore(); |
| | | |
| | | const redirect = computed<string>(() => route.query?.redirect as string); |
| | | const otherQuery = computed(() => { |
| | | const query = route.query; |
| | | if (query) { |