123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- import { getSetting } from '@/services/api/system'
- import { useRequest } from 'umi'
- import { PageContainer } from '@ant-design/pro-layout'
- import { Card, Form, Input, Button, Upload } from 'antd'
- import { UploadOutlined } from '@ant-design/icons'
- import React, { useEffect, useState } from 'react'
- const Setting = () => {
- const [state, setState] = useState({
- contentValue: ''
- })
- const [form] = Form.useForm()
- const { run: tryGetSetting } = useRequest(
- () => {
- return getSetting()
- },
- {
- manual: true,
- onSuccess: (result: API.GetSettingParams) => {
- setState({ ...state, contentVlue: result })
- form.current?.setFieldsValue({ name: result.name, backstageName: result.backstageName })
- }
- }
- )
- useEffect(() => {
- tryGetSetting()
- form.current?.setFieldsValue(...state.contentValue)
- }, [])
- return (
- <PageContainer title={false}>
- <Card>
- <div className="text-2xl mb-7">系统设置</div>
- <Form
- labelCol={{ span: 2 }}
- wrapperCol={{ span: 8 }}
- layout="horizontal"
- form={form}
- // initialValues={{ name: 'admin' }}
- onFinish={async values => {
- console.log(values)
- }}>
- <Form.Item label="系统名称" name="name">
- <Input />
- </Form.Item>
- <Form.Item
- name="logo"
- label="系统LOGO"
- valuePropName="logo"
- // getValueFromEvent={normFile}
- // extra="大小"
- >
- <Upload name="logo" action="/upload.do" listType="picture">
- <Button icon={<UploadOutlined />}>上传</Button>
- </Upload>
- </Form.Item>
- <Form.Item label="后台名称" name="backstageName">
- <Input />
- </Form.Item>
- <Form.Item
- name="backstageLogo"
- label="后台LOGO"
- valuePropName="backstageLogo"
- // getValueFromEvent={normFile}
- // extra="大小"
- >
- <Upload name="logo" action="/upload.do" listType="picture">
- <Button icon={<UploadOutlined />}>上传</Button>
- </Upload>
- </Form.Item>
- <Form.Item wrapperCol={{ offset: 2, span: 8 }}>
- <Button type="primary" htmlType="submit">
- 确认
- </Button>
- </Form.Item>
- </Form>
- </Card>
- </PageContainer>
- )
- }
- export default Setting
|