Commit baa85b98 authored by Maofei94's avatar Maofei94

fix: 修复了一些问题

parent 4c283b20
......@@ -57,7 +57,7 @@ const arr = [
</li>
<li>[+] 新增了版本记录模块</li>
<li>[^] 登录页面修改了动画效果</li>
<li>[^] 移动应用配置模块进行了翻新</li>
<li>[^] 移动应用配置模块进行了部分翻新</li>
<li>[^] 业务平台模块修改了交互方式</li>
</ul>
</div>
......
......@@ -41,7 +41,7 @@ const JumpContainer = props => {
[styles.imgs]: true,
})}
/>
<p className={styles.desc}>业务平台建设中,点击链接跳转运维平台</p>
<p className={styles.desc}>业务平台建设中,点击链接跳转旧版运维平台</p>
{/* <Empty
image={Empty.PRESENTED_IMAGE_SIMPLE}
description="业务平台建设中,点击链接跳转老运维平台"
......
......@@ -20,9 +20,11 @@ const wallCateName: any = {
};
const tabNames:any = {
CityTemp: '用户上传',
icon: '图标',
icon: 'icon图标',
androidMenu: '安卓图标',
menuNew: '应用图标'
menuNew: '应用图标',
logo:'项目logo',
menu:'菜单图标'
}
function getBase64(file: File | Blob) {
......
......@@ -38,7 +38,7 @@
.top {
margin-top: 20vh;
text-align: center;
animation: drop 0.8s;
animation: drop 1s;
}
.header {
......
......@@ -79,6 +79,7 @@ export default () => {
formData.set('description', describe);
formData.set('isRefresh', !!forceUpdate);
formData.set('file', file);
formData.set('client', 'miniapp');
setProgress(true);
SaveMobileApk(formData).then(res => {
console.log(res);
......@@ -178,7 +179,7 @@ export default () => {
</div>
</div>
<Button
style={{ marginLeft: '40px' }}
style={{ marginLeft: '115px' }}
type="primary"
onClick={() => setShowModal(true)}
>
......@@ -191,7 +192,7 @@ export default () => {
<Modal
visible={showModal}
closable={false}
maskClosable
maskClosable={false}
onCancel={() => setShowModal(false)}
onOk={submitForm}
>
......
......@@ -20,7 +20,8 @@
display: flex;
align-items: flex-start;
margin-bottom: 15px;
padding-left: 40px;
// padding-left: 40px;
margin-left: 16px;
}
.label {
......
......@@ -20,7 +20,9 @@
color: @primary-color;
}
}
.ant-input {
padding-left: 10px!important;
}
.other {
margin-top: 24px;
line-height: 22px;
......
......@@ -195,9 +195,9 @@ const SiteManage = () => {
// item.icon = <span className="iconfont iconanzhuo1" />;
// newArr[0] = item;
// }
if (item.visibleTitle === '小程序') {
if (item.type === 'mobile') {
item.icon = <MobileOutlined />;
newArr[0] = item;
// newArr[0] = item;
} else {
item.icon = <DesktopOutlined />;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment