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
0645992e
Commit
0645992e
authored
Dec 14, 2020
by
Sixiang_Zzb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改翻译
parent
64029eb2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
TableShow.tsx
src/components/TableShow/TableShow.tsx
+2
-2
menu.ts
src/locales/en-US/menu.ts
+1
-1
menu.ts
src/locales/zh-CN/menu.ts
+1
-1
AccoutingContent.tsx
...Management/ServiceProviderManagement/AccoutingContent.tsx
+5
-5
No files found.
src/components/TableShow/TableShow.tsx
View file @
0645992e
...
@@ -38,8 +38,8 @@ const TableShow = (props: any) => {
...
@@ -38,8 +38,8 @@ const TableShow = (props: any) => {
const
key
=
objectColumns
([
const
key
=
objectColumns
([
[
'User Name'
,
'owner_family_name'
],
[
'User Name'
,
'owner_family_name'
],
[
'Contact Number'
,
'owner_family_phone'
,
(
text
:
string
,
record
:
any
)
=>
text
||
'--'
],
[
'Contact Number'
,
'owner_family_phone'
,
(
text
:
string
,
record
:
any
)
=>
text
],
[
'Email'
,
'owner_family_email'
,
(
text
:
string
,
record
:
any
)
=>
text
||
'--'
],
[
'Email'
,
'owner_family_email'
,
(
text
:
string
,
record
:
any
)
=>
text
],
[
[
'User Type'
,
'User Type'
,
null
,
null
,
...
...
src/locales/en-US/menu.ts
View file @
0645992e
...
@@ -52,7 +52,7 @@ export default {
...
@@ -52,7 +52,7 @@ export default {
'menu.usemanagement'
:
'User Management'
,
'menu.usemanagement'
:
'User Management'
,
'menu.monitoringcenter'
:
'Monitoring Center'
,
'menu.monitoringcenter'
:
'Monitoring Center'
,
'menu.usemanagement.lifeusers'
:
'L
IFE
User Management'
,
'menu.usemanagement.lifeusers'
:
'L
ife
User Management'
,
'menu.usemanagement.serviceproviders'
:
'Service Provider Management'
,
'menu.usemanagement.serviceproviders'
:
'Service Provider Management'
,
'menu.propertymanagement'
:
'Property Fee Management'
,
'menu.propertymanagement'
:
'Property Fee Management'
,
'menu.commercialservice'
:
'Commercial Service'
,
'menu.commercialservice'
:
'Commercial Service'
,
...
...
src/locales/zh-CN/menu.ts
View file @
0645992e
...
@@ -52,7 +52,7 @@ export default {
...
@@ -52,7 +52,7 @@ export default {
'menu.usemanagement'
:
'用户管理'
,
'menu.usemanagement'
:
'用户管理'
,
'menu.monitoringcenter'
:
'监控中心'
,
'menu.monitoringcenter'
:
'监控中心'
,
'menu.usemanagement.lifeusers'
:
'L
IFE
用户管理'
,
'menu.usemanagement.lifeusers'
:
'L
ife
用户管理'
,
'menu.usemanagement.serviceproviders'
:
'服务商管理'
,
'menu.usemanagement.serviceproviders'
:
'服务商管理'
,
'menu.propertymanagement'
:
'物业费管理'
,
'menu.propertymanagement'
:
'物业费管理'
,
'menu.commercialservice'
:
'物业服务'
,
'menu.commercialservice'
:
'物业服务'
,
...
...
src/pages/UserManagement/ServiceProviderManagement/AccoutingContent.tsx
View file @
0645992e
...
@@ -73,7 +73,7 @@ const AccoutingContent = (props: {
...
@@ -73,7 +73,7 @@ const AccoutingContent = (props: {
const
copyStatus
=
document
.
execCommand
(
'Copy'
);
// 执行copy操作
const
copyStatus
=
document
.
execCommand
(
'Copy'
);
// 执行copy操作
// 对成功与否定进行提示
// 对成功与否定进行提示
if
(
copyStatus
)
{
if
(
copyStatus
)
{
message
.
success
(
'
Copy Success
'
);
message
.
success
(
'
URL copy successfully!
'
);
}
else
{
}
else
{
message
.
error
(
'Copy Failure,Please copy manually'
);
message
.
error
(
'Copy Failure,Please copy manually'
);
}
}
...
@@ -104,8 +104,8 @@ const AccoutingContent = (props: {
...
@@ -104,8 +104,8 @@ const AccoutingContent = (props: {
</
Button
>
</
Button
>
</
div
>
</
div
>
)
:
(
)
:
(
<
div
/>
<
div
/>
)
}
)
}
<
div
className=
{
styles
.
box1
}
>
<
div
className=
{
styles
.
box1
}
>
<
div
className=
{
styles
.
box1item1
}
>
Company Name
</
div
>
<
div
className=
{
styles
.
box1item1
}
>
Company Name
</
div
>
...
@@ -142,8 +142,8 @@ const AccoutingContent = (props: {
...
@@ -142,8 +142,8 @@ const AccoutingContent = (props: {
</
div
>
</
div
>
</
Spin
>
</
Spin
>
)
:
(
)
:
(
<></>
<></>
)
}
)
}
</
div
>
</
div
>
);
);
};
};
...
...
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