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
f4efef4b
Commit
f4efef4b
authored
May 07, 2024
by
lanbaoming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2024-05-07待办保活
parent
d3eb5c5f
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
447 additions
and
185 deletions
+447
-185
todo.vue
src/views/bpm/task/todo.vue
+1
-1
index.vue
src/views/ecw/oceanCustomer/index.vue
+421
-179
index.vue
src/views/report/customer_analysis/index.vue
+23
-4
index.vue
src/views/report/vz/index.vue
+2
-1
No files found.
src/views/bpm/task/todo.vue
View file @
f4efef4b
...
@@ -92,7 +92,7 @@
...
@@ -92,7 +92,7 @@
import
{
getTodoTaskPage
}
from
'
@/api/bpm/task
'
import
{
getTodoTaskPage
}
from
'
@/api/bpm/task
'
import
{
cancelProcessInstance
}
from
"
@/api/bpm/processInstance
"
;
import
{
cancelProcessInstance
}
from
"
@/api/bpm/processInstance
"
;
export
default
{
export
default
{
name
:
"
Todo
"
,
name
:
"
BpmTask
Todo
"
,
components
:
{},
components
:
{},
data
()
{
data
()
{
return
{
return
{
...
...
src/views/ecw/oceanCustomer/index.vue
View file @
f4efef4b
This diff is collapsed.
Click to expand it.
src/views/report/customer_analysis/index.vue
View file @
f4efef4b
...
@@ -328,6 +328,7 @@
...
@@ -328,6 +328,7 @@
<el-table-column
label=
"控货总V值"
align=
"center"
prop=
"khSumV"
/>
<el-table-column
label=
"控货总V值"
align=
"center"
prop=
"khSumV"
/>
<el-table-column
label=
"控货占比"
align=
"center"
prop=
"khSumZb"
/>
<el-table-column
label=
"控货占比"
align=
"center"
prop=
"khSumZb"
/>
<!--2024-05-06和张工确认这几个参数无取数逻辑,暂时隐藏-->
<!--2024-05-06和张工确认这几个参数无取数逻辑,暂时隐藏-->
<!--
<el-table-column
<el-table-column
label="是否首次成交"
label="是否首次成交"
v-show="false"
v-show="false"
...
@@ -343,7 +344,7 @@
...
@@ -343,7 +344,7 @@
<template slot-scope="scope">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.firstDate) }}</span>
<span>{{ parseTime(scope.row.firstDate) }}</span>
</template>
</template>
</el-table-column>
</el-table-column>
-->
<!--2024-05-06和张工确认这几个参数无取数逻辑,暂时隐藏-->
<!--2024-05-06和张工确认这几个参数无取数逻辑,暂时隐藏-->
<el-table-column
label=
"提货率"
align=
"center"
prop=
"thL"
/>
<el-table-column
label=
"提货率"
align=
"center"
prop=
"thL"
/>
<el-table-column
label=
"客户业绩类型"
align=
"center"
prop=
"cusYjType"
/>
<el-table-column
label=
"客户业绩类型"
align=
"center"
prop=
"cusYjType"
/>
...
@@ -538,7 +539,9 @@ export default {
...
@@ -538,7 +539,9 @@ export default {
watch
:
{
watch
:
{
$route
(
to
)
{
$route
(
to
)
{
//lanbm 2024-05-06 解决重新进入参数不刷新的问题
//lanbm 2024-05-06 解决重新进入参数不刷新的问题
if
(
this
.
$route
.
name
==
"
客户分析
"
)
{
//this.$route.name == "客户分析" 用name做逻辑判断,有时候菜单名称会变化
//"/report/customer_analysis" lanbm 2024-05-07 调整为根据path做逻辑判断
if
(
this
.
$route
.
path
==
"
/report/customer_analysis
"
)
{
this
.
doLoadData
();
this
.
doLoadData
();
}
}
},
},
...
@@ -765,6 +768,24 @@ export default {
...
@@ -765,6 +768,24 @@ export default {
return
strDate
;
return
strDate
;
},
},
test
()
{
test
()
{
//当前路径
let
sP
=
this
.
$route
.
path
;
alert
(
sP
);
//当前参数
let
sPar
=
this
.
$route
.
params
;
alert
(
sPar
);
//路由名称
let
sRoute
=
this
.
$route
.
name
;
alert
(
sRoute
);
//路由查询参数
let
sQ
=
this
.
$route
.
query
;
alert
(
sQ
.
toString
());
//路由匹配项
let
sM
=
this
.
$route
.
matched
;
alert
(
sM
.
toString
());
return
;
this
.
DeptEx
.
id
=
this
.
objEcwReportPermission
.
deptId
;
this
.
DeptEx
.
id
=
this
.
objEcwReportPermission
.
deptId
;
listServiceUser
(
this
.
DeptEx
).
then
((
response
)
=>
{
listServiceUser
(
this
.
DeptEx
).
then
((
response
)
=>
{
let
json1
=
JSON
.
stringify
(
response
.
data
);
let
json1
=
JSON
.
stringify
(
response
.
data
);
...
@@ -772,8 +793,6 @@ export default {
...
@@ -772,8 +793,6 @@ export default {
return
;
return
;
});
});
return
;
let
json1
=
JSON
.
stringify
(
this
.
deptOptions
);
let
json1
=
JSON
.
stringify
(
this
.
deptOptions
);
alert
(
json1
);
alert
(
json1
);
return
;
return
;
...
...
src/views/report/vz/index.vue
View file @
f4efef4b
...
@@ -63,7 +63,8 @@
...
@@ -63,7 +63,8 @@
<el-button
<el-button
type=
"primary"
type=
"primary"
plain
plain
icon=
"el-icon-plus"
v-show=
"false"
icon=
"el-icon-plus"
v-show=
"false"
size=
"mini"
size=
"mini"
@
click=
"TestFun"
@
click=
"TestFun"
>
>
...
...
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