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
4a0545ff
Commit
4a0545ff
authored
Apr 13, 2023
by
huyf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fanyi
parent
20fd044a
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3851 additions
and
3848 deletions
+3851
-3848
en_US.json
src/i18n/languages/en_US.json
+3832
-3825
index.js
src/router/index.js
+2
-2
edit.vue
src/views/ecw/channel/edit.vue
+8
-8
index.vue
src/views/ecw/channel/index.vue
+1
-1
allAchievement.vue
src/views/ecw/deptTarget/allAchievement.vue
+8
-12
No files found.
src/i18n/languages/en_US.json
View file @
4a0545ff
This diff is collapsed.
Click to expand it.
src/router/index.js
View file @
4a0545ff
...
...
@@ -171,13 +171,13 @@ export const constantRoutes = [
path
:
'
empAchievement
'
,
component
:
(
resolve
)
=>
require
([
'
@/views/ecw/deptTarget/empAchievement
'
],
resolve
),
name
:
'
员工业绩
'
,
meta
:
{
title
:
'
员工业绩
'
,
activeMenu
:
'
/deptTarget/index
'
}
meta
:
{
title
:
'
员工业绩
'
,
titleEn
:
'
Emp Achievement
'
,
activeMenu
:
'
/deptTarget/index
'
}
},
{
path
:
'
myDeptAchievement
'
,
component
:
(
resolve
)
=>
require
([
'
@/views/ecw/deptTarget/myDeptAchievement
'
],
resolve
),
name
:
'
我的部门业绩
'
,
meta
:
{
title
:
'
我的部门业绩
'
,
activeMenu
:
'
/deptTarget/myDeptAchievement
'
}
meta
:
{
title
:
'
我的部门业绩
'
,
titleEn
:
'
My dept Achievement
'
,
activeMenu
:
'
/deptTarget/myDeptAchievement
'
}
}
]
},
...
...
src/views/ecw/channel/edit.vue
View file @
4a0545ff
...
...
@@ -10,19 +10,19 @@
<el-row>
<el-col
:span=
"12"
>
<el-form-item
:label=
"$t('中文名称')"
prop=
"nameZh"
>
<el-input
v-model=
"form.nameZh"
placeholder=
"请输入名称-中文
"
/>
<el-input
v-model=
"form.nameZh"
:placeholder=
"$t('请输入名称-中文')
"
/>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
:label=
"$t('名称英文')"
prop=
"nameEn"
>
<el-input
v-model=
"form.nameEn"
placeholder=
"请输入名称-英文
"
/>
<el-input
v-model=
"form.nameEn"
:placeholder=
"$t('请输入名称-英文')
"
/>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
:label=
"$t('内部名称中文')"
prop=
"internalNameZh"
>
<el-input
v-model=
"form.internalNameZh"
placeholder=
"请输入内部名称-中文
"
:placeholder=
"$t('请输入内部名称-中文')
"
/>
</el-form-item>
</el-col>
...
...
@@ -30,7 +30,7 @@
<el-form-item
:label=
"$t('内部名称英文')"
prop=
"internalNameEn"
>
<el-input
v-model=
"form.internalNameEn"
placeholder=
"请输入内部名称-英文
"
:placeholder=
"$t('请输入内部名称-英文')
"
/>
</el-form-item>
</el-col>
...
...
@@ -95,16 +95,16 @@
</el-col>
-->
</el-row>
<el-form-item
label=
"备注-中文
"
prop=
"remarksZh"
>
<el-form-item
:label=
"$t('备注-中文')
"
prop=
"remarksZh"
>
<el-input
v-model=
"form.remarksZh"
placeholder=
"请输入备注-中文
"
:placeholder=
"$t('请输入备注-中文')
"
/>
</el-form-item>
<el-form-item
label=
"备注-英文
"
prop=
"remarksEn"
>
<el-form-item
:label=
"$t('备注-英文')
"
prop=
"remarksEn"
>
<el-input
v-model=
"form.remarksEn"
placeholder=
"请输入备注-英文
"
:placeholder=
"$t('请输入备注-英文')
"
/>
</el-form-item>
<!--
<el-form-item
label=
"状态(0:禁用 1:启用)"
prop=
"status"
>
...
...
src/views/ecw/channel/index.vue
View file @
4a0545ff
...
...
@@ -201,7 +201,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
channelId
=
row
.
channelId
;
this
.
$modal
.
confirm
(
'
是否确认删除渠道管理编号为"
'
+
channelId
+
'
"的数据项?
'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
this
.
$t
(
'
是否确认删除渠道管理编号为{channelId}的数据项?
'
),{
channelId
}
).
then
(
function
()
{
return
deleteChannel
(
channelId
);
}).
then
(()
=>
{
this
.
getList
();
...
...
src/views/ecw/deptTarget/allAchievement.vue
View file @
4a0545ff
...
...
@@ -444,13 +444,11 @@
// this.addBeginAndEndTime(params, this.dateRangeStartTime, 'startTime');
// this.addBeginAndEndTime(params, this.dateRangeEndTime, 'endTime');
// 执行导出
this
.
$modal
.
confirm
(
this
.
$t
(
'
是否确认导出所有部门业绩数据项?
'
)).
then
(()
=>
{
this
.
exportLoading
=
true
;
return
exportDetailExcel
(
params
);
}).
then
(
response
=>
{
this
.
$download
.
excel
(
response
,
`
${
this
.
$t
(
'
业绩明细
'
)}
.xls`
);
this
.
exportLoading
=
true
;
exportDetailExcel
(
params
).
then
(
response
=>
{
this
.
$download
.
excel
(
response
,
`
${
this
.
$t
(
'
业绩明细
'
)}
.xls`
);
this
.
exportLoading
=
false
;
this
.
exportLoading
=
false
;
}).
catch
(()
=>
{
});
},
...
...
@@ -466,13 +464,11 @@
// this.addBeginAndEndTime(params, this.dateRangeStartTime, 'startTime');
// this.addBeginAndEndTime(params, this.dateRangeEndTime, 'endTime');
// 执行导出
this
.
$modal
.
confirm
(
this
.
$t
(
'
是否确认导出所有部门业绩统计?
'
)).
then
(()
=>
{
this
.
exportLoading
=
true
;
return
exportStatisticsExcel
(
params
);
}).
then
(
response
=>
{
this
.
$download
.
excel
(
response
,
`
${
this
.
$t
(
'
业绩统计
'
)}
.xls`
);
this
.
exportLoading
=
true
;
exportStatisticsExcel
(
params
).
then
(
response
=>
{
this
.
$download
.
excel
(
response
,
`
${
this
.
$t
(
'
业绩统计
'
)}
.xls`
);
this
.
exportLoading
=
false
;
this
.
exportLoading
=
false
;
}).
catch
(()
=>
{
});
}
...
...
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