Commit baa85b98 authored by Maofei94's avatar Maofei94

fix: 修复了一些问题

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