Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TOSTUMI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Maple
TOSTUMI
Commits
e2a09c8a
Commit
e2a09c8a
authored
Nov 11, 2020
by
Sixiang_Zzb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
服务商模块测试问题处理
parent
b883be92
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
4 additions
and
74 deletions
+4
-74
config.ts
config/config.ts
+0
-4
AccoutingContent.tsx
...Management/ServiceProviderManagement/AccoutingContent.tsx
+2
-2
Detail.tsx
...pages/UserManagement/ServiceProviderManagement/Detail.tsx
+2
-1
UploadAccount.css
...serManagement/ServiceProviderManagement/UploadAccount.css
+0
-18
UploadAccount.less
...erManagement/ServiceProviderManagement/UploadAccount.less
+0
-21
UploadAccount.tsx
...serManagement/ServiceProviderManagement/UploadAccount.tsx
+0
-28
No files found.
config/config.ts
View file @
e2a09c8a
...
...
@@ -149,10 +149,6 @@ export default defineConfig({
{},
],
},
{
path
:
'UploadAccount'
,
component
:
'./UserManagement/ServiceProviderManagement/UploadAccount'
,
},
{
path
:
'/PropertyManagement'
,
name
:
'propertymanagement'
,
...
...
src/pages/UserManagement/ServiceProviderManagement/AccoutingContent.tsx
View file @
e2a09c8a
...
...
@@ -66,8 +66,8 @@ const AccoutingContent = (props: {
Back
</
button
>
</
div
>
{
SaveChooseData
.
enable
}
{
SaveChooseData
.
enable
===
'
n
ormal'
?
(
{
SaveChooseData
.
enable
===
'
N
ormal'
?
(
<
div
className=
{
styles
.
writeOff
}
>
<
Button
icon=
{
<
PoweroffOutlined
/>
}
...
...
src/pages/UserManagement/ServiceProviderManagement/Detail.tsx
View file @
e2a09c8a
...
...
@@ -22,6 +22,7 @@ const Detail = (props: any) => {
};
useEffect
(()
=>
{
console
.
log
(
SaveChooseData
);
if
(
SaveChooseData
)
{
TosSecurityGuarderGet
({
companyName
:
SaveChooseData
.
providerName
});
}
else
{
...
...
@@ -88,7 +89,7 @@ const Detail = (props: any) => {
{
SaveChooseData
!==
null
?
(
<>
<
TitleBack
title=
"Service Provider Details"
/>
{
SaveChooseData
.
enable
===
'
n
ormal'
?
(
{
SaveChooseData
.
enable
===
'
N
ormal'
?
(
<
div
className=
{
styles
.
writeOff
}
>
<
Button
icon=
{
<
PoweroffOutlined
/>
}
...
...
src/pages/UserManagement/ServiceProviderManagement/UploadAccount.css
deleted
100644 → 0
View file @
b883be92
.container
{
width
:
100vw
;
height
:
100vh
;
}
.box
{
position
:
absolute
;
top
:
40%
;
left
:
50%
;
transform
:
translate
(
-50%
,
-50%
);
}
.btn
{
position
:
absolute
;
right
:
0px
;
bottom
:
-50px
;
}
.ant-btn
{
width
:
100px
;
}
src/pages/UserManagement/ServiceProviderManagement/UploadAccount.less
deleted
100644 → 0
View file @
b883be92
.container {
width: 100vw;
height: 100vh;
}
.box {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
}
.btn {
position: absolute;
right: 0px;
bottom: -50px;
}
.ant-btn {
width: 100px;
}
src/pages/UserManagement/ServiceProviderManagement/UploadAccount.tsx
deleted
100644 → 0
View file @
b883be92
import
React
from
'react'
;
import
{
Form
,
Input
,
Button
,
Divider
}
from
'antd'
;
import
styles
from
'./UploadAccount.less'
;
const
UploadAccount
=
()
=>
{
const
handleLogin
=
(
value
:
string
)
=>
{
console
.
log
(
value
);
};
return
(
<
div
className=
{
styles
.
container
}
>
<
Form
className=
{
styles
.
box
}
onFinish=
{
handleLogin
}
>
<
Form
.
Item
name=
{
'password'
}
>
<
Input
.
Password
style=
{
{
width
:
220
}
}
placeholder=
{
'Please enter your password'
}
></
Input
.
Password
>
</
Form
.
Item
>
<
Divider
/>
<
Form
.
Item
className=
{
styles
.
btn
}
>
<
Button
htmlType=
{
'submit'
}
>
登录
</
Button
>
</
Form
.
Item
>
</
Form
>
</
div
>
);
};
export
default
UploadAccount
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment