Commit 6974ed40 authored by wuhao's avatar wuhao 🎯

asdr

parent 212345b2
......@@ -138,6 +138,7 @@ pre {
justify-content: center;
}
.spread {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
......@@ -235,6 +236,12 @@ pre {
}
.logincontent {
.ant-tabs-nav-wrap{
display: inline-block !important;
}
.ant-tabs-tab-active {
font-size: 16px !important;
}
.ant-layout-footer {
background-color: #23394a !important;
.ant-pro-global-footer {
......@@ -281,6 +288,16 @@ pre {
.ant-select-clear {
background-color: transparent !important;
}
.ant-select-selection-item-content,.ant-select-selection-item-remove{
color: #000 !important;
.anticon {
color: #000 !important;
}
}
.ant-select-selection-overflow{
display: flex !important;
flex-wrap: nowrap !important;
}
}
.reg {
......@@ -296,3 +313,6 @@ pre {
.ant-pro-global-header {
padding-left: 6px !important;
}
table{
min-width: calc(100% - 6px) !important;
}
This diff is collapsed.
......@@ -52,3 +52,14 @@
color: @primary-color;
}
}
.search{
position: absolute;
left: 0;
top: 0;
z-index: 999;
background-color: #ffffff;
width: 100%;
height: 100%;
padding: 12px;
}
\ No newline at end of file
......@@ -49,6 +49,9 @@ const Logon = (props) => {
<div className={styles.main}>
<div>
<img src="./logo.svg" alt="" style={{ width: 44, marginBottom: 30 }} />
</div>
<div className={`${styles.body} logon`}>
<Tabs
......
......@@ -16,6 +16,15 @@ export async function fakeAccountLoginOut(params) {
});
}
//登录
export async function saveForRegister(params) {
return request("/wms/ngic-auth/sysAccountApply/saveForRegister", {
method: "POST",
data: params,
});
}
//个人信息
export async function queryCurrentUser(params) {
return request("/wms/ngic-auth/sysUser/query", {
......
......@@ -29,7 +29,13 @@ export async function shopSelect(params) {
data: params,
});
}
//仓库下拉
export async function storeselectionBoxAll(params) {
return request(`/wms/ngic-auth/sysStore/selectionBoxAll`, {
method: "POST",
data: params,
});
}
//根据工厂id查询车间下拉
export async function shopSelectByFactory(params) {
return request(`/wms/ngic-auth/sysShop/query/selectbox/factory`, {
......
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