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
2f19f13c
Commit
2f19f13c
authored
May 07, 2024
by
lanbaoming
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev'
parents
bd724111
f4efef4b
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
445 additions
and
184 deletions
+445
-184
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
+21
-3
index.vue
src/views/report/vz/index.vue
+2
-1
No files found.
src/views/bpm/task/todo.vue
View file @
2f19f13c
...
...
@@ -92,7 +92,7 @@
import
{
getTodoTaskPage
}
from
'
@/api/bpm/task
'
import
{
cancelProcessInstance
}
from
"
@/api/bpm/processInstance
"
;
export
default
{
name
:
"
Todo
"
,
name
:
"
BpmTask
Todo
"
,
components
:
{},
data
()
{
return
{
...
...
src/views/ecw/oceanCustomer/index.vue
View file @
2f19f13c
This diff is collapsed.
Click to expand it.
src/views/report/customer_analysis/index.vue
View file @
2f19f13c
...
...
@@ -539,7 +539,9 @@ export default {
watch
:
{
$route
(
to
)
{
//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
();
}
},
...
...
@@ -766,6 +768,24 @@ export default {
return
strDate
;
},
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
;
listServiceUser
(
this
.
DeptEx
).
then
((
response
)
=>
{
let
json1
=
JSON
.
stringify
(
response
.
data
);
...
...
@@ -773,8 +793,6 @@ export default {
return
;
});
return
;
let
json1
=
JSON
.
stringify
(
this
.
deptOptions
);
alert
(
json1
);
return
;
...
...
src/views/report/vz/index.vue
View file @
2f19f13c
...
...
@@ -63,7 +63,8 @@
<el-button
type=
"primary"
plain
icon=
"el-icon-plus"
v-show=
"false"
icon=
"el-icon-plus"
v-show=
"false"
size=
"mini"
@
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