Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-cr20g
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
Administrator
dsk-cr20g
Commits
b922ee94
Commit
b922ee94
authored
Nov 03, 2023
by
tianhongyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
甲方详情 参数添加深度监听,更正偶尔出现显示错误问题
parent
b9c79b9c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
34 additions
and
20 deletions
+34
-20
.env.development
dsk-operate-ui/.env.development
+2
-2
busclue.vue
...i/src/views/detail/party-a/overview/component/busclue.vue
+8
-5
infoheader.vue
...rc/views/detail/party-a/overview/component/infoheader.vue
+5
-3
operations.vue
...rc/views/detail/party-a/overview/component/operations.vue
+6
-3
relationship.vue
.../views/detail/party-a/overview/component/relationship.vue
+5
-2
risk.vue
...e-ui/src/views/detail/party-a/overview/component/risk.vue
+8
-5
No files found.
dsk-operate-ui/.env.development
View file @
b922ee94
...
...
@@ -12,5 +12,5 @@ VUE_CLI_BABEL_TRANSPILE_MODULES = true
# 子系统地址
VUE_APP_SUB_SYSTEM_ADDRESS = "https://pre-plug.jiansheku.com"
# VUE_APP_SUB_SYSTEM_ADDRESS = "http://192.168.60.104:3400"
\ No newline at end of file
# VUE_APP_SUB_SYSTEM_ADDRESS = "https://pre-plug.jiansheku.com"
VUE_APP_SUB_SYSTEM_ADDRESS = "http://192.168.60.104:3400"
\ No newline at end of file
dsk-operate-ui/src/views/detail/party-a/overview/component/busclue.vue
View file @
b922ee94
...
...
@@ -156,11 +156,14 @@ export default {
}
},
watch
:
{
statistic
(
newVal
,
oldVal
)
{
this
.
childStatistic
=
newVal
;
if
(
newVal
)
{
this
.
handleStatistic
();
}
statistic
:
{
handler
(
newVal
,
oldVal
)
{
this
.
childStatistic
=
newVal
;
if
(
newVal
)
{
this
.
handleStatistic
();
}
},
deep
:
true
}
}
}
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/infoheader.vue
View file @
b922ee94
...
...
@@ -403,11 +403,13 @@ export default {
this
.
handleWidth
();
this
.
getClaimStatus
();
//获取企业认领状态
},
statistic
(
newVal
,
oldVal
)
{
if
(
new
Val
)
{
statistic
:
{
handler
(
newVal
,
old
Val
)
{
this
.
childStatistic
=
newVal
;
this
.
handleStatistic
();
}
},
deep
:
true
,
immediate
:
true
}
}
}
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/operations.vue
View file @
b922ee94
...
...
@@ -97,9 +97,12 @@ export default {
}
},
watch
:
{
financial
(
newVal
,
oldVal
)
{
this
.
childFinancial
=
newVal
;
this
.
handleFinancial
();
financial
:
{
handler
(
newVal
,
oldVal
)
{
this
.
childFinancial
=
newVal
;
this
.
handleFinancial
();
},
deep
:
true
}
}
}
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/relationship.vue
View file @
b922ee94
...
...
@@ -154,8 +154,11 @@ export default {
};
},
watch
:
{
financial
(
newValue
)
{
this
.
childFinancial
=
newValue
;
financial
:
{
handler
(
newValue
)
{
this
.
childFinancial
=
newValue
;
},
deep
:
true
}
},
created
()
{
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/risk.vue
View file @
b922ee94
...
...
@@ -187,11 +187,14 @@ export default {
}
},
watch
:
{
statistic
(
newVal
,
oldVal
)
{
this
.
childStatistic
=
newVal
;
if
(
newVal
)
{
this
.
handView
();
}
statistic
:
{
handler
(
newVal
,
oldVal
)
{
this
.
childStatistic
=
newVal
;
if
(
newVal
)
{
this
.
handView
();
}
},
deep
:
true
}
}
}
...
...
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