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
95973fc9
Commit
95973fc9
authored
Feb 14, 2025
by
Smile
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug232 (生产)后台未翻译成英文的一些页面,请看附件
parent
2c400260
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
4 deletions
+16
-4
en_US.json
src/i18n/languages/en_US.json
+5
-1
index.vue
src/views/ecw/banner/index.vue
+8
-0
index.vue
src/views/ecw/bannerPop/index.vue
+1
-1
index.vue
...cw/memberManagement/addIntegrationRuleOperation/index.vue
+1
-1
index.vue
src/views/system/helpDoc/index.vue
+1
-1
No files found.
src/i18n/languages/en_US.json
View file @
95973fc9
...
...
@@ -1882,6 +1882,7 @@
"商品特性不能为空"
:
"Commodity characteristics cannot be empty"
,
"中文标题不能为空"
:
"Chinese title cannot be empty"
,
"英文标题不能为空"
:
"English title cannot be empty"
,
"法文标题不能为空"
:
"French title cannot be empty"
,
"商品材质不能为空"
:
"Product material cannot be empty"
,
"添加商品"
:
"Adding goods"
,
"修改商品"
:
"Modify product"
,
...
...
@@ -2205,6 +2206,7 @@
"添加广告弹窗"
:
"Add Ad Popup"
,
"修改广告弹窗"
:
"Modify Ad Popup"
,
"是否确认删除广告弹窗编号为"
:
"Whether delete the advertisement pop-up number as"
,
"是否确认删除广告弹窗编号{id}的数据项?"
:
"Whether delete the advertisement pop-up number {id}?"
,
"是否确认导出所有广告弹窗数据项?"
:
"Whether confirm to export all pop-up window data items?"
,
"已核销比例\\\\n(已核销基准币种总金额/应收总金额)"
:
"Written-off ratio
\\\\
n(total amount of base currency written off/total amount receivable)"
,
"是否要删除昵称为"
:
"Whether confirm? to delete the nickname as"
,
...
...
@@ -2218,6 +2220,7 @@
"添加帮助文档"
:
"Add assistance document"
,
"修改帮助文档"
:
"Modify assistance document"
,
"是否确认删除帮助文档编号为"
:
"Whether delete the assistance document number?"
,
"是否确认删除帮助文档编号为{id}的数据项?"
:
"Whether delete the assistance document number {id}?"
,
"是否确认导出所有帮助文档数据项?"
:
"Whether export all assistance document data items?"
,
"请输入内容中文"
:
"Please enter the content in Chinese"
,
"请输入内容英语"
:
"Please enter the content in English"
,
...
...
@@ -4954,5 +4957,6 @@
"上次根进时间"
:
"Last Follow-up Time"
,
"上次跟进内容"
:
"Last Follow-up Content"
,
"所报价格"
:
"Quoted Price"
,
"厂家/电话"
:
"Manufacturer/Phone"
"厂家/电话"
:
"Manufacturer/Phone"
,
"请输入等级"
:
"Please enter the level"
}
src/views/ecw/banner/index.vue
View file @
95973fc9
...
...
@@ -200,6 +200,14 @@ export default {
computed
:
{
isChinese
()
{
this
.
rules
=
{
titleZh
:
[{
required
:
true
,
message
:
this
.
$t
(
"
中文标题不能为空
"
),
trigger
:
"
blur
"
}],
titleEn
:
[{
required
:
true
,
message
:
this
.
$t
(
"
英文标题不能为空
"
),
trigger
:
"
blur
"
}],
titleFr
:
[{
required
:
true
,
message
:
this
.
$t
(
"
法文标题不能为空
"
),
trigger
:
"
blur
"
}],
bannerUrlWeb
:
[{
required
:
true
,
message
:
this
.
$t
(
"
web端广告图片不能为空
"
),
trigger
:
"
blur
"
}],
bannerUrlApp
:
[{
required
:
true
,
message
:
this
.
$t
(
"
app端广告图片不能为空
"
),
trigger
:
"
blur
"
}]
};
return
this
.
$i18n
.
locale
===
"
zh_CN
"
;
},
statusName
()
{
...
...
src/views/ecw/bannerPop/index.vue
View file @
95973fc9
...
...
@@ -362,7 +362,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
id
=
row
.
id
;
this
.
$modal
.
confirm
(
this
.
$t
(
'
是否确认删除广告弹窗编号
为"
'
)
+
id
+
this
.
$t
(
'
"的数据项?
'
)).
then
(
function
()
{
this
.
$modal
.
confirm
(
this
.
$t
(
'
是否确认删除广告弹窗编号
{id}的数据项?
'
,{
id
}
)).
then
(
function
()
{
return
deleteBannerPop
(
id
);
}).
then
(()
=>
{
this
.
getList
();
...
...
src/views/ecw/memberManagement/addIntegrationRuleOperation/index.vue
View file @
95973fc9
...
...
@@ -794,7 +794,7 @@ export default {
//返回按钮操作
handleGoBack
()
{
this
.
$modal
.
confirm
(
this
.
$t
(
"
是否确认返回
"
),
this
.
$t
(
"
提示
"
))
.
confirm
(
this
.
$t
(
"
确认返回吗?
"
),
this
.
$t
(
"
提示
"
))
.
then
(()
=>
{
// this.$router.go(-1);
this
.
$store
.
dispatch
(
"
tagsView/delCurrentView
"
)
...
...
src/views/system/helpDoc/index.vue
View file @
95973fc9
...
...
@@ -242,7 +242,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
id
=
row
.
id
;
this
.
$modal
.
confirm
(
this
.
$t
(
'
是否确认删除帮助文档编号为
"
'
)
+
id
+
this
.
$t
(
'
"的数据项?
'
)).
then
(
function
()
{
this
.
$modal
.
confirm
(
this
.
$t
(
'
是否确认删除帮助文档编号为
{id}的数据项?
'
,{
id
}
)).
then
(
function
()
{
return
deleteHelpDoc
(
id
);
}).
then
(()
=>
{
this
.
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