Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
Starter Web Vue
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
product
kim3-web-vue
Starter Web Vue
Commits
d7d2f4bf
Commit
d7d2f4bf
authored
Jul 23, 2021
by
shuiluo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 国际化完善
parent
6a65bd8b
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
93 additions
and
68 deletions
+93
-68
src/components/Acron/ACron.vue
src/components/Acron/ACron.vue
+10
-3
src/local/acron.js
src/local/acron.js
+3
-0
src/local/index.js
src/local/index.js
+5
-0
src/local/input.js
src/local/input.js
+1
-0
src/local/system.js
src/local/system.js
+6
-0
src/local/table.js
src/local/table.js
+0
-1
src/pages/system/task/form.vue
src/pages/system/task/form.vue
+46
-22
src/pages/system/task/index.vue
src/pages/system/task/index.vue
+22
-42
No files found.
src/components/Acron/ACron.vue
View file @
d7d2f4bf
<
template
>
<
template
>
<div
class=
"components-input-demo-presuffix"
>
<div
class=
"components-input-demo-presuffix"
>
<a-input
:placeholder=
"placeholder"
:value=
"cron"
@
input=
"handleinput"
:disabled=
"disabled"
>
<a-input
:placeholder=
"placeholder"
:value=
"cron"
@
input=
"handleinput"
:disabled=
"disabled"
>
<a-icon
slot=
"prefix"
type=
"schedule"
title=
"corn控件"
@
click=
"openModal"
/>
<a-icon
slot=
"prefix"
type=
"schedule"
:title=
"$t('corn.title')"
@
click=
"openModal"
/>
<a-icon
v-if=
"cron"
slot=
"suffix"
type=
"close-circle"
@
click=
"handleEmpty"
title=
"清空"
/>
<a-icon
v-if=
"cron"
slot=
"suffix"
type=
"close-circle"
@
click=
"handleEmpty"
:title=
"$t('input.clear')"
/>
</a-input>
</a-input>
<AntCron
ref=
"innerVueCron"
:data=
"afterCron"
@
ok=
"handleOK"
></AntCron
>
<AntCron
ref=
"innerVueCron"
:data=
"afterCron"
@
ok=
"handleOK"
/
>
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
...
@@ -73,6 +79,7 @@ export default {
...
@@ -73,6 +79,7 @@ export default {
},
},
};
};
</
script
>
</
script
>
<
style
scoped
>
<
style
scoped
>
.components-input-demo-presuffix
.anticon-close-circle
{
.components-input-demo-presuffix
.anticon-close-circle
{
cursor
:
pointer
;
cursor
:
pointer
;
...
...
src/local/acron.js
0 → 100644
View file @
d7d2f4bf
export
default
{
'
corn.title
'
:
[
'
Cron 控件
'
,
'
Cron Component
'
],
};
src/local/index.js
View file @
d7d2f4bf
...
@@ -4,6 +4,7 @@ import userLang from './user';
...
@@ -4,6 +4,7 @@ import userLang from './user';
import
systemLang
from
'
./system
'
;
import
systemLang
from
'
./system
'
;
import
InputLang
from
'
./input
'
;
import
InputLang
from
'
./input
'
;
import
OtherLang
from
'
./other
'
;
import
OtherLang
from
'
./other
'
;
import
acronLang
from
'
./acron
'
;
const
zh_CN
=
{};
const
zh_CN
=
{};
const
en_US
=
{};
const
en_US
=
{};
...
@@ -11,6 +12,9 @@ const en_US = {};
...
@@ -11,6 +12,9 @@ const en_US = {};
function
formatLang
(
langObject
)
{
function
formatLang
(
langObject
)
{
for
(
const
key
in
langObject
)
{
for
(
const
key
in
langObject
)
{
const
element
=
langObject
[
key
];
const
element
=
langObject
[
key
];
if
(
zh_CN
[
key
])
{
console
.
warn
(
'
当前key值:
'
,
key
,
'
已经被注册了
'
);
}
zh_CN
[
key
]
=
element
[
0
];
zh_CN
[
key
]
=
element
[
0
];
en_US
[
key
]
=
element
[
1
];
en_US
[
key
]
=
element
[
1
];
}
}
...
@@ -22,5 +26,6 @@ formatLang(userLang);
...
@@ -22,5 +26,6 @@ formatLang(userLang);
formatLang
(
systemLang
);
formatLang
(
systemLang
);
formatLang
(
InputLang
);
formatLang
(
InputLang
);
formatLang
(
OtherLang
);
formatLang
(
OtherLang
);
formatLang
(
acronLang
);
export
{
en_US
,
zh_CN
};
export
{
en_US
,
zh_CN
};
src/local/input.js
View file @
d7d2f4bf
...
@@ -7,4 +7,5 @@ export default {
...
@@ -7,4 +7,5 @@ export default {
],
],
'
input.search
'
:
[
'
搜索
'
,
'
search
'
],
'
input.search
'
:
[
'
搜索
'
,
'
search
'
],
'
input.error
'
:
[
'
输入的内容有误!
'
,
'
Incorrect Input!
'
],
'
input.error
'
:
[
'
输入的内容有误!
'
,
'
Incorrect Input!
'
],
'
input.clear
'
:
[
'
清空
'
,
'
Clear
'
],
};
};
src/local/system.js
View file @
d7d2f4bf
...
@@ -26,4 +26,10 @@ export default {
...
@@ -26,4 +26,10 @@ export default {
'
role.roleNameInput
'
:
[
'
请输入 @:role.roleName
'
,
'
Please Input @:role.roleName
'
],
'
role.roleNameInput
'
:
[
'
请输入 @:role.roleName
'
,
'
Please Input @:role.roleName
'
],
'
role.roleCodeInput
'
:
[
'
请输入 @:role.roleCode
'
,
'
Please Input @:role.roleCode
'
],
'
role.roleCodeInput
'
:
[
'
请输入 @:role.roleCode
'
,
'
Please Input @:role.roleCode
'
],
'
role.menuPermissions
'
:
[
'
菜单权限
'
,
'
Menu Permissions
'
],
'
role.menuPermissions
'
:
[
'
菜单权限
'
,
'
Menu Permissions
'
],
'
task.schedulingRules
'
:
[
'
调度规则
'
,
'
Scheduling Rules
'
],
'
task.implementClass
'
:
[
'
实现类
'
,
'
Implement Class
'
],
'
task.invalid
'
:
[
'
失效
'
,
'
Invalid
'
],
'
task.invalidTip
'
:
[
'
确认是否失效
'
,
'
Confirm Whether To Disable It
'
],
'
task.taskNameError
'
:
[
'
请输入 @:system.jobName
'
,
'
Please Input @:system.jobName
'
],
'
task.taskRuleError
'
:
[
'
请输入 @:task.schedulingRules
'
,
'
Please Input @:task.schedulingRules
'
],
};
};
src/local/table.js
View file @
d7d2f4bf
...
@@ -4,7 +4,6 @@ export default {
...
@@ -4,7 +4,6 @@ export default {
'
table.reset
'
:
[
'
重置
'
,
'
Reset
'
],
'
table.reset
'
:
[
'
重置
'
,
'
Reset
'
],
'
table.add
'
:
[
'
新增
'
,
'
Add
'
],
'
table.add
'
:
[
'
新增
'
,
'
Add
'
],
'
table.search
'
:
[
'
查询
'
,
'
Search
'
],
'
table.search
'
:
[
'
查询
'
,
'
Search
'
],
'
input.placeholder
'
:
[
'
请输入
'
,
'
Please Input
'
],
'
table.jobTime
'
:
[
'
任务时间
'
,
'
Job Time
'
],
'
table.jobTime
'
:
[
'
任务时间
'
,
'
Job Time
'
],
'
table.inspectionStartTime
'
:
[
'
巡检开始时间
'
,
'
InspectionStartTime
'
],
'
table.inspectionStartTime
'
:
[
'
巡检开始时间
'
,
'
InspectionStartTime
'
],
'
table.inspectionEndTime
'
:
[
'
巡检结束时间
'
,
'
InspectionEndTime
'
],
'
table.inspectionEndTime
'
:
[
'
巡检结束时间
'
,
'
InspectionEndTime
'
],
...
...
src/pages/system/task/form.vue
View file @
d7d2f4bf
<
template
>
<
template
>
<a-form-model
layout=
"vertical"
:model=
"form"
:rules=
"rules"
ref=
"DrawerForm"
>
<Wraper
:hidden=
"hidden"
:refresh=
"refresh"
:onOk=
"submit"
:noFooter=
"isView"
>
<a-form-model-item
label=
"任务名称"
prop=
"taskName"
>
<a-form-model
layout=
"vertical"
:model=
"form"
:rules=
"rules"
ref=
"form"
>
<a-input
v-model=
"form.taskName"
:disabled=
"isView"
/>
<a-form-model-item
:label=
"$t('system.jobName')"
prop=
"taskName"
>
</a-form-model-item>
<a-input
v-model=
"form.taskName"
:disabled=
"isView"
:placeholder=
"$t('input.placeholder')"
/>
<a-form-model-item
label=
"调度规则"
prop=
"taskRule"
>
</a-form-model-item>
<ACron
v-model=
"form.taskRule"
:disabled=
"isView"
/>
<a-form-model-item
:label=
"$t('task.schedulingRules')"
prop=
"taskRule"
>
</a-form-model-item>
<ACron
v-model=
"form.taskRule"
:disabled=
"isView"
:placeholder=
"$t('input.placeholder')"
/>
<a-form-model-item
label=
"实现类"
prop=
"implementClass"
>
</a-form-model-item>
<a-input
v-model=
"form.implementClass"
:disabled=
"isView"
/>
<a-form-model-item
:label=
"$t('task.implementClass')"
prop=
"implementClass"
>
</a-form-model-item>
<a-input
<a-form-model-item
label=
"说明"
prop=
"remark"
>
v-model=
"form.implementClass"
<a-textarea
v-model=
"form.remark"
:disabled=
"isView"
:rows=
"4"
/>
:disabled=
"isView"
</a-form-model-item>
:placeholder=
"$t('input.placeholder')"
</a-form-model>
/>
</a-form-model-item>
<a-form-model-item
:label=
"$t('table.remark')"
prop=
"remark"
>
<a-textarea
v-model=
"form.remark"
:disabled=
"isView"
:rows=
"4"
:placeholder=
"$t('input.placeholder')"
/>
</a-form-model-item>
</a-form-model>
</Wraper>
</
template
>
</
template
>
<
script
>
<
script
>
import
{
addTaskApi
,
updateTaskApi
}
from
'
@/api
'
;
import
{
addTaskApi
,
updateTaskApi
}
from
'
@/api
'
;
import
FormMixin
from
'
@/components/FormMixin
'
;
import
ACron
from
'
@/components/Acron/ACron.vue
'
;
import
ACron
from
'
@/components/Acron/ACron.vue
'
;
import
{
WraperMixins
}
from
'
@/components/table
'
;
export
default
{
export
default
{
components
:
{
ACron
},
components
:
{
ACron
},
props
:
[
'
row
'
],
props
:
[
'
row
'
],
mixins
:
[
FormMixin
],
mixins
:
[
WraperMixins
],
data
()
{
data
()
{
return
{
return
{
form
:
{},
rules
:
{
rules
:
{
taskName
:
[{
required
:
true
}],
taskName
:
[{
required
:
true
,
message
:
this
.
$t
(
'
task.taskNameError
'
)
}],
taskRule
:
[{
required
:
true
}],
taskRule
:
[{
required
:
true
,
message
:
this
.
$t
(
'
task.taskRuleError
'
)
}],
},
},
};
};
},
},
computed
:
{
isView
()
{
return
this
.
type
===
'
view
'
;
},
isEdit
()
{
return
this
.
type
===
'
edit
'
;
},
},
mounted
()
{
if
(
this
.
type
)
{
this
.
form
=
{
...
this
.
row
};
}
},
methods
:
{
methods
:
{
add
()
{
async
submit
()
{
await
this
.
$refs
.
form
.
validate
();
if
(
this
.
type
)
return
updateTaskApi
({
...
this
.
form
});
return
addTaskApi
({
...
this
.
form
});
return
addTaskApi
({
...
this
.
form
});
},
},
edit
()
{
return
updateTaskApi
({
...
this
.
form
});
},
},
},
};
};
</
script
>
</
script
>
src/pages/system/task/index.vue
View file @
d7d2f4bf
<
template
>
<
template
>
<
my-table
url=
"/api/v1/schedules"
rowKey=
"taskId"
:addBtn=
"addBtn"
ref=
"table
"
>
<
Table
url=
"/api/v1/schedules"
rowKey=
"taskId"
addBtn
ref=
"table"
:buttons=
"buttons
"
>
<template
#drawer
>
<template
#drawer
="
drawer
"
>
<Form
ref=
"form"
:row=
"currentClickRow
"
/>
<Form
ref=
"form"
v-bind=
"drawer
"
/>
</
template
>
</
template
>
<a-table-column
title=
"任务名称"
data-index=
"taskName"
/>
<a-table-column
:title=
"$t('system.jobName')"
data-index=
"taskName"
/>
<a-table-column
title=
"调度规则"
data-index=
"taskRule"
/>
<a-table-column
:title=
"$t('task.schedulingRules')"
data-index=
"taskRule"
/>
<a-table-column
title=
"实现类"
data-index=
"implementClass"
/>
<a-table-column
:title=
"$t('task.implementClass')"
data-index=
"implementClass"
/>
<a-table-column
title=
"说明"
data-index=
"remark"
/>
<a-table-column
:title=
"$t('table.remark')"
data-index=
"remark"
/>
<a-table-column
title=
"操作"
>
</Table>
<
template
#default=
"row"
>
<ActionButton
:buttons=
"buttons"
:row=
"row"
/>
</
template
>
</a-table-column>
</my-table>
</template>
</template>
<
script
>
<
script
>
import
ActionButton
from
'
@/components/action_button/index.vue
'
;
import
Form
from
'
./form.vue
'
;
import
Form
from
'
./form.vue
'
;
import
{
Table
}
from
'
@/components/table
'
;
export
default
{
export
default
{
components
:
{
ActionButton
,
Form
},
components
:
{
Form
,
Table
},
data
()
{
data
()
{
return
{
return
{
addBtn
:
{
onOk
:
()
=>
{
return
this
.
$refs
.
form
.
submit
();
},
},
currentClickRow
:
null
,
buttons
:
[
buttons
:
[
{
{
label
:
'
查看
'
,
label
:
this
.
$t
(
'
table.view
'
),
click
:
row
=>
{
click
:
(
row
)
=>
{
this
.
showDrawer
(
2
,
true
);
this
.
$refs
.
table
.
show
({
type
:
'
view
'
,
row
,
title
:
this
.
$t
(
'
table.view
'
)
});
this
.
$nextTick
(()
=>
{
this
.
$refs
[
'
form
'
].
setData
(
row
,
2
);
});
},
},
},
},
{
{
label
:
'
编辑
'
,
label
:
this
.
$t
(
'
table.edit
'
),
click
:
row
=>
{
click
:
(
row
)
=>
{
this
.
showDrawer
(
1
);
this
.
$refs
.
table
.
show
({
type
:
'
edit
'
,
row
,
title
:
this
.
$t
(
'
table.edit
'
)
});
this
.
$nextTick
(()
=>
{
this
.
$refs
[
'
form
'
].
setData
(
row
,
1
);
});
},
},
},
},
{
{
type
:
'
confirm
'
,
type
:
'
confirm
'
,
label
:
'
失效
'
,
label
:
this
.
$t
(
'
task.invalid
'
)
,
title
:
'
确认是否失效?
'
,
title
:
this
.
$t
(
'
task.invalidTip
'
)
,
url
:
row
=>
({
url
:
`/api/v1/schedules/
${
row
.
taskId
}
/pause`
,
method
:
'
del
'
}),
url
:
(
row
)
=>
({
url
:
`/api/v1/schedules/
${
row
.
taskId
}
/pause`
,
method
:
'
del
'
}),
after
:
()
=>
this
.
refreshTable
(),
after
:
()
=>
this
.
refreshTable
(),
isHidden
:
row
=>
row
.
isPaused
===
1
,
isHidden
:
(
row
)
=>
row
.
isPaused
===
1
,
},
},
{
{
type
:
'
confirm
'
,
type
:
'
confirm
'
,
url
:
row
=>
`/api/v1/schedules/
${
row
.
taskId
}
`
,
url
:
(
row
)
=>
`/api/v1/schedules/
${
row
.
taskId
}
`
,
after
:
()
=>
this
.
refreshTable
()
,
after
:
this
.
refreshTable
,
},
},
],
],
};
};
...
@@ -68,9 +51,6 @@ export default {
...
@@ -68,9 +51,6 @@ export default {
refreshTable
()
{
refreshTable
()
{
this
.
$refs
.
table
.
getData
();
this
.
$refs
.
table
.
getData
();
},
},
showDrawer
(
type
,
noFooter
)
{
this
.
$refs
[
'
table
'
].
show
({
type
,
noFooter
});
},
},
},
};
};
</
script
>
</
script
>
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