Ver a proveniência

更新企业LOGO

tags/小炒逻辑变更前
yangwenhua há 2 anos
ascendente
cometimento
6907043564
2 ficheiros alterados com 4 adições e 5 eliminações
  1. +1
    -1
      src/pages/sys/sysSettings/components/EnterpriseLog.jsx
  2. +3
    -4
      src/pages/sys/sysSettings/index.jsx

+ 1
- 1
src/pages/sys/sysSettings/components/EnterpriseLog.jsx Ver ficheiro

@@ -70,7 +70,7 @@ const EnterpriseLog = (props) => {
fileData = e.target.result;
// 使用 axios 进行文件上传的请求
axios.put(action, fileData, {
withCredentials,
withCredentials,
headers,
onUploadProgress: ({ total, loaded }) => {
// 进行上传进度输出,更加直观


+ 3
- 4
src/pages/sys/sysSettings/index.jsx Ver ficheiro

@@ -72,10 +72,9 @@ const Settings = () => {
}
};

const onUpdateCompanyInfo = (companyInfo) => {
updateCompany(companyInfo).then(() => {
onFetchCompanyInfo();
});
const onUpdateCompanyInfo = async (companyInfo) => {
await updateCompany(companyInfo);
await onFetchCompanyInfo();
}

const onFetchCompanyInfo = async () => {


Carregando…
Cancelar
Guardar