Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
db2c8a90
Commit
db2c8a90
authored
Feb 14, 2025
by
Smile
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug232 (生产)后台未翻译成英文的一些页面
parent
95973fc9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
4 deletions
+24
-4
index.vue
src/views/system/helpDoc/index.vue
+6
-1
index.vue
src/views/system/internalHelpDoc/index.vue
+6
-1
index.vue
src/views/system/needKnow/index.vue
+6
-1
index.vue
src/views/system/notice/index.vue
+6
-1
No files found.
src/views/system/helpDoc/index.vue
View file @
db2c8a90
...
...
@@ -97,7 +97,7 @@
<el-form-item
:label=
"$t('状态')"
prop=
"status"
>
<el-radio-group
v-model=
"form.status"
>
<el-radio
v-for=
"dict in this.getDictDatas(DICT_TYPE.HELP_DOC_STATUS)"
:key=
"dict.value"
:label=
"parseInt(dict.value)"
>
{{
dict.label
}}
</el-radio>
:key=
"dict.value"
:label=
"parseInt(dict.value)"
>
{{
isChinese?dict.label:dict.labelEn
}}
</el-radio>
</el-radio-group>
</el-form-item>
</el-form>
...
...
@@ -156,6 +156,11 @@ export default {
created
()
{
this
.
getList
();
},
computed
:{
isChinese
()
{
return
this
.
$i18n
.
locale
===
"
zh_CN
"
;
}
},
methods
:
{
/** 查询列表 */
getList
()
{
...
...
src/views/system/internalHelpDoc/index.vue
View file @
db2c8a90
...
...
@@ -82,7 +82,7 @@
<el-form-item
:label=
"$t('状态')"
prop=
"status"
>
<el-radio-group
v-model=
"form.status"
>
<el-radio
v-for=
"dict in this.getDictDatas(DICT_TYPE.COMMON_STATUS)"
:key=
"dict.value"
:label=
"parseInt(dict.value)"
>
{{
dict.label
}}
</el-radio>
:key=
"dict.value"
:label=
"parseInt(dict.value)"
>
{{
isChinese?dict.label:dict.labelEn
}}
</el-radio>
</el-radio-group>
</el-form-item>
</el-form>
...
...
@@ -139,6 +139,11 @@ export default {
created
()
{
this
.
getList
();
},
computed
:{
isChinese
()
{
return
this
.
$i18n
.
locale
===
"
zh_CN
"
;
}
},
methods
:
{
/** 查询列表 */
getList
()
{
...
...
src/views/system/needKnow/index.vue
View file @
db2c8a90
...
...
@@ -113,7 +113,7 @@
<el-form-item
:label=
"$t('状态')"
prop=
"status"
>
<el-radio-group
v-model=
"form.status"
>
<el-radio
v-for=
"dict in this.getDictDatas(DICT_TYPE.NEED_KNOW_STATUS)"
:key=
"dict.value"
:label=
"parseInt(dict.value)"
>
{{
dict.label
}}
</el-radio>
:key=
"dict.value"
:label=
"parseInt(dict.value)"
>
{{
isChinese?dict.label:dict.labelEn
}}
</el-radio>
</el-radio-group>
</el-form-item>
</el-form>
...
...
@@ -170,6 +170,11 @@ export default {
created
()
{
this
.
getList
();
},
computed
:{
isChinese
()
{
return
this
.
$i18n
.
locale
===
"
zh_CN
"
;
}
},
methods
:
{
/** 查询列表 */
getList
()
{
...
...
src/views/system/notice/index.vue
View file @
db2c8a90
...
...
@@ -101,7 +101,7 @@
v
-
for
=
"
dict in statusDictDatas
"
:
key
=
"
parseInt(dict.value)
"
:
label
=
"
parseInt(dict.value)
"
>
{{
dict
.
label
}}
<
/el-radio
>
>
{{
isChinese
?
dict
.
label
:
dict
.
labelEn
}}
<
/el-radio
>
<
/el-radio-group
>
<
/el-form-item
>
<
/el-col
>
...
...
@@ -193,6 +193,11 @@ export default {
created
()
{
this
.
getList
();
}
,
computed
:{
isChinese
()
{
return
this
.
$i18n
.
locale
===
"
zh_CN
"
;
}
}
,
methods
:
{
/** 查询公告列表 */
getList
()
{
...
...
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