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
3128ba89
Commit
3128ba89
authored
Jun 14, 2023
by
xiongjinke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
2c539d3f
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
15 additions
and
10 deletions
+15
-10
HeadForm.vue
...perate-ui/src/views/detail/party-a/component/HeadForm.vue
+1
-1
courtNotice.vue
.../src/views/detail/party-a/riskInformation/courtNotice.vue
+5
-2
judgment.vue
...-ui/src/views/detail/party-a/riskInformation/judgment.vue
+1
-1
openacourtsessionNotice.vue
...etail/party-a/riskInformation/openacourtsessionNotice.vue
+1
-1
punish.vue
...te-ui/src/views/detail/party-a/riskInformation/punish.vue
+1
-1
landAcquisition.vue
.../views/detail/party-a/urbanLnvestment/landAcquisition.vue
+3
-2
sameRegion.vue
...i/src/views/detail/party-a/urbanLnvestment/sameRegion.vue
+3
-2
No files found.
dsk-operate-ui/src/views/detail/party-a/component/HeadForm.vue
View file @
3128ba89
...
@@ -35,7 +35,7 @@
...
@@ -35,7 +35,7 @@
<!-- 输入框 -->
<!-- 输入框 -->
<
template
v-if=
"form.type==3"
>
<
template
v-if=
"form.type==3"
>
<div
class=
"cooperate-name"
>
<div
class=
"cooperate-name"
>
<el-input
@
focus=
"clickFocus('focus'+i)"
@
blur=
"clickFocus('focus'+i)"
v-model=
"form.value"
:placeholder=
"form.placeholder"
></el-input>
<el-input
clearable
@
focus=
"clickFocus('focus'+i)"
@
blur=
"clickFocus('focus'+i)"
v-model=
"form.value"
:placeholder=
"form.placeholder"
></el-input>
<span
:id=
"'focus'+i"
@
click=
"changeSelect"
>
搜索
</span>
<span
:id=
"'focus'+i"
@
click=
"changeSelect"
>
搜索
</span>
</div>
</div>
</
template
>
</
template
>
...
...
dsk-operate-ui/src/views/detail/party-a/riskInformation/courtNotice.vue
View file @
3128ba89
...
@@ -81,6 +81,7 @@ export default {
...
@@ -81,6 +81,7 @@ export default {
this
.
tableLoading
=
false
this
.
tableLoading
=
false
})
})
},
},
// 公告
noticesTypes
(){
noticesTypes
(){
noticesType
({
cid
:
this
.
queryParams
.
cid
}).
then
(
res
=>
{
noticesType
({
cid
:
this
.
queryParams
.
cid
}).
then
(
res
=>
{
let
data
=
res
.
data
let
data
=
res
.
data
...
@@ -94,12 +95,13 @@ export default {
...
@@ -94,12 +95,13 @@ export default {
}
}
})
})
},
},
// 身份
noticesRoles
(){
noticesRoles
(){
noticesRole
({
cid
:
this
.
queryParams
.
cid
}).
then
(
res
=>
{
noticesRole
({
cid
:
this
.
queryParams
.
cid
}).
then
(
res
=>
{
let
data
=
res
.
data
let
data
=
res
.
data
if
(
data
.
length
>
0
){
if
(
data
.
length
>
0
){
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
){
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
){
this
.
formData
[
1
].
options
.
push
({
this
.
formData
[
2
].
options
.
push
({
name
:
data
[
i
].
role
+
'('
+
data
[
i
].
count
+
')'
,
name
:
data
[
i
].
role
+
'('
+
data
[
i
].
count
+
')'
,
value
:
data
[
i
].
role
,
value
:
data
[
i
].
role
,
})
})
...
@@ -107,12 +109,13 @@ export default {
...
@@ -107,12 +109,13 @@ export default {
}
}
})
})
},
},
// 案由
noticesCaseReasons
(){
noticesCaseReasons
(){
noticesCaseReason
({
cid
:
this
.
queryParams
.
cid
}).
then
(
res
=>
{
noticesCaseReason
({
cid
:
this
.
queryParams
.
cid
}).
then
(
res
=>
{
let
data
=
res
.
data
let
data
=
res
.
data
if
(
data
.
length
>
0
){
if
(
data
.
length
>
0
){
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
){
for
(
var
i
=
0
;
i
<
data
.
length
;
i
++
){
this
.
formData
[
2
].
options
.
push
({
this
.
formData
[
1
].
options
.
push
({
name
:
data
[
i
].
caseReason
+
'('
+
data
[
i
].
count
+
')'
,
name
:
data
[
i
].
caseReason
+
'('
+
data
[
i
].
count
+
')'
,
value
:
data
[
i
].
caseReason
,
value
:
data
[
i
].
caseReason
,
})
})
...
...
dsk-operate-ui/src/views/detail/party-a/riskInformation/judgment.vue
View file @
3128ba89
...
@@ -62,7 +62,7 @@ export default {
...
@@ -62,7 +62,7 @@ export default {
{
type
:
1
,
fieldName
:
'causeAction'
,
value
:
''
,
placeholder
:
'案由'
,
options
:
[]},
{
type
:
1
,
fieldName
:
'causeAction'
,
value
:
''
,
placeholder
:
'案由'
,
options
:
[]},
{
type
:
1
,
fieldName
:
'role'
,
value
:
''
,
placeholder
:
'身份'
,
options
:
[]},
{
type
:
1
,
fieldName
:
'role'
,
value
:
''
,
placeholder
:
'身份'
,
options
:
[]},
{
type
:
2
,
fieldName
:
'time'
,
value
:
''
,
placeholder
:
''
,
startTime
:
'dateFrom'
,
endTime
:
'dateTo'
},
{
type
:
2
,
fieldName
:
'time'
,
value
:
''
,
placeholder
:
''
,
startTime
:
'dateFrom'
,
endTime
:
'dateTo'
},
{
type
:
3
,
fieldName
:
'keys'
,
value
:
''
,
placeholder
:
'
搜索关键字
'
}
{
type
:
3
,
fieldName
:
'keys'
,
value
:
''
,
placeholder
:
'
请输入执行案号
'
}
],
],
//列表
//列表
tableLoading
:
false
,
tableLoading
:
false
,
...
...
dsk-operate-ui/src/views/detail/party-a/riskInformation/openacourtsessionNotice.vue
View file @
3128ba89
...
@@ -65,7 +65,7 @@ export default {
...
@@ -65,7 +65,7 @@ export default {
{
type
:
1
,
fieldName
:
'causeAction'
,
value
:
''
,
placeholder
:
'案由'
,
options
:
[]},
{
type
:
1
,
fieldName
:
'causeAction'
,
value
:
''
,
placeholder
:
'案由'
,
options
:
[]},
{
type
:
1
,
fieldName
:
'pureRole'
,
value
:
''
,
placeholder
:
'身份'
,
options
:
[]},
{
type
:
1
,
fieldName
:
'pureRole'
,
value
:
''
,
placeholder
:
'身份'
,
options
:
[]},
{
type
:
2
,
fieldName
:
'time'
,
value
:
''
,
placeholder
:
''
,
startTime
:
'dateFrom'
,
endTime
:
'dateTo'
},
{
type
:
2
,
fieldName
:
'time'
,
value
:
''
,
placeholder
:
''
,
startTime
:
'dateFrom'
,
endTime
:
'dateTo'
},
{
type
:
3
,
fieldName
:
'keys'
,
value
:
''
,
placeholder
:
'请输入
关键词
'
},
{
type
:
3
,
fieldName
:
'keys'
,
value
:
''
,
placeholder
:
'请输入
案号
'
},
],
],
//列表
//列表
tableLoading
:
false
,
tableLoading
:
false
,
...
...
dsk-operate-ui/src/views/detail/party-a/riskInformation/punish.vue
View file @
3128ba89
...
@@ -20,7 +20,7 @@
...
@@ -20,7 +20,7 @@
>
>
<template
slot=
"punishReason"
slot-scope=
"scope"
>
<template
slot=
"punishReason"
slot-scope=
"scope"
>
<span
:class=
"[isOverHiddenFlag(scope.data.width, showList, scope.index, 0, scope.row.punishReason)?'cell-span':'']"
:style=
"
{'-webkit-line-clamp': 5}">
<span
:class=
"[isOverHiddenFlag(scope.data.width, showList, scope.index, 0, scope.row.punishReason)?'cell-span':'']"
:style=
"
{'-webkit-line-clamp': 5}">
{{
scope
.
row
.
punishReason
}}
<div
v-html=
"scope.row.punishReason"
></div>
<span
v-if=
"isOverHiddenFlag(scope.data.width, showList, scope.index, 0, scope.row.punishReason)"
@
click=
"changeShowAll(scope.index, 0)"
>
...
<span
style=
"color: #0081FF;"
>
更多
</span></span>
<span
v-if=
"isOverHiddenFlag(scope.data.width, showList, scope.index, 0, scope.row.punishReason)"
@
click=
"changeShowAll(scope.index, 0)"
>
...
<span
style=
"color: #0081FF;"
>
更多
</span></span>
</span>
</span>
</
template
>
</
template
>
...
...
dsk-operate-ui/src/views/detail/party-a/urbanLnvestment/landAcquisition.vue
View file @
3128ba89
...
@@ -17,8 +17,9 @@
...
@@ -17,8 +17,9 @@
:queryParams=
"queryParams"
:queryParams=
"queryParams"
@
handle-current-change=
"handleCurrentChange"
@
handle-current-change=
"handleCurrentChange"
>
>
<template
slot=
"projectName"
slot-scope=
"data"
>
<template
slot=
"projectName"
slot-scope=
"scope"
>
<router-link
to=
""
tag=
"a"
class=
"a-link"
>
{{
data
.
row
.
projectName
}}
</router-link>
<router-link
:to=
"`/radar/Land/details/$
{scope.row.id}`" tag="a" class="a-link" v-if="scope.row.id
&&
scope.row.projectName " v-html="scope.row.projectName">
</router-link>
<div
v-else
v-html=
"scope.row.projectName || '--'"
></div>
</
template
>
</
template
>
</tables>
</tables>
...
...
dsk-operate-ui/src/views/detail/party-a/urbanLnvestment/sameRegion.vue
View file @
3128ba89
...
@@ -97,8 +97,9 @@
...
@@ -97,8 +97,9 @@
@
handle-current-change=
"handleCurrentChange"
@
handle-current-change=
"handleCurrentChange"
@
sort-change=
"sortChange"
@
sort-change=
"sortChange"
>
>
<
template
slot=
"companyName"
slot-scope=
"data"
>
<
template
slot=
"companyName"
slot-scope=
"scope"
>
<router-link
to=
""
tag=
"a"
class=
"a-link"
>
{{
data
.
row
.
companyName
}}
</router-link>
<router-link
:to=
"`/enterprise/$
{encodeStr(scope.row.companyId)}`" tag="a" class="a-link" v-if="scope.row.companyId
&&
scope.row.companyName " v-html="scope.row.companyName">
</router-link>
<div
v-else
v-html=
"scope.row.companyName || '--'"
></div>
</
template
>
</
template
>
</tables>
</tables>
...
...
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