Commit 6974ed40 authored by wuhao's avatar wuhao 🎯

asdr

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