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
cbd2d3bf
Commit
cbd2d3bf
authored
Apr 10, 2024
by
danfuman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
b0d648b3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
97 additions
and
13 deletions
+97
-13
index.vue
...te-ui/src/views/enterpriseData/components/Owner/index.vue
+12
-12
index.vue
...iews/enterpriseData/components/SearchEnterprise/index.vue
+85
-1
No files found.
dsk-operate-ui/src/views/enterpriseData/components/Owner/index.vue
View file @
cbd2d3bf
...
...
@@ -148,20 +148,20 @@
<div
class=
"renling"
>
<router-link
:to=
"`/enterprise/$
{encodeStr(scope.row.companyId)}`" tag="a" class="list-titel-a"
v-html="scope.row.companyName">
</router-link>
<
div
class=
"renling-btn"
@
click=
"claimbtn(scope.row)"
>
<
p
v-if=
"scope.row.claimStatus==0"
class=
"renling-img-true"
>
<
!--
<div
class=
"renling-btn"
@
click=
"claimbtn(scope.row)"
>
--
>
<
!--
<p
v-if=
"scope.row.claimStatus==0"
class=
"renling-img-true"
>
--
>
<
/p
>
<
p
v-else
class=
"renling-img-false"
>
<
!--
</p>
--
>
<
!--
<p
v-else
class=
"renling-img-false"
>
--
>
<
/p
>
<!--
<span
v-if=
"scope.row.claimStatus==0"
@
click=
"cancelClaim(scope.row.companyName,scope.$index)"
class=
"renling-hui"
>
-->
<!--
已认领
-->
<!--
</span>
-->
<!--
<span
v-else
class=
"renling-hei"
>
-->
<!--
认领
-->
<!--
</span>
-->
<
/div
>
<
!--
</p>
--
>
<!--
<!–
<span
v-if=
"scope.row.claimStatus==0"
@
click=
"cancelClaim(scope.row.companyName,scope.$index)"
class=
"renling-hui"
>
–>
-->
<!--
<!–已认领–>
-->
<!--
<!–
</span>
–>
-->
<!--
<!–
<span
v-else
class=
"renling-hei"
>
–>
-->
<!--
<!–认领–>
-->
<!--
<!–
</span>
–>
-->
<
!--
</div>
--
>
</div>
</
template
>
...
...
dsk-operate-ui/src/views/enterpriseData/components/SearchEnterprise/index.vue
View file @
cbd2d3bf
...
...
@@ -214,6 +214,17 @@
</el-option>
</el-select>
</div>
<div
class=
"select-popper"
>
<div
class=
" "
:class=
"(companyXzText.length>0&&companyXzText[0]!='不限')?'select-active':''"
>
企业性质{{(companyXzText.length>0
&&
companyXzText[0]!='不限')>0?(companyXzText.length+'项'):''}}
<i
class=
"el-icon-caret-bottom"
></i>
</div>
<el-select
v-model=
"companyXzText"
popper-class=
'select-multiple-pop'
class=
"select-multiple"
style=
"min-width: 110px;"
@
change=
"companyXzbtn"
multiple
placeholder=
"请选择"
>
<el-option
v-for=
" (itme,i) in companyXzList"
:key=
"i"
:label=
"itme.value"
:value=
"itme.label"
>
</el-option>
</el-select>
</div>
<div
class=
"select-popper"
>
<div
class=
" "
:class=
"(companyTypeText.length>0&&companyTypeText[0]!='不限')?'select-active':''"
>
企业类型{{(companyTypeText.length>0
&&
companyTypeText[0]!='不限')>0?(companyTypeText.length+'项'):''}}
...
...
@@ -854,6 +865,29 @@ export default {
},
],
aTaxYeartext
:
[
'不限'
],
companyXzText
:
[
'不限'
],
companyXzList
:
[
{
label
:
''
,
value
:
'不限'
},
{
label
:
'5.1.1.'
,
value
:
'央企'
},
{
label
:
'5.1.2.'
,
value
:
'央企子公司'
},
{
label
:
'5.2.1.,5.2.2.'
,
value
:
'国有企业'
},
{
label
:
'5.8.'
,
value
:
'民营企业'
},
],
companyTypeList
:
[
{
label
:
'不限'
,
...
...
@@ -2111,6 +2145,52 @@ export default {
this
.
aptitudelist
.
push
(
data
);
},
companyXzbtn
(){
for
(
let
i
=
0
;
i
<
this
.
aptitudelist
.
length
;
i
++
)
{
if
(
this
.
aptitudelist
[
i
].
keyid
==
'tagCode'
)
{
this
.
aptitudelist
.
splice
(
i
,
1
);
i
--
;
}
}
if
(
this
.
companyXzText
.
length
>
0
&&
this
.
companyXzText
[
0
]
==
'不限'
)
{
for
(
let
i
=
0
;
i
<
this
.
companyXzText
.
length
;
i
++
)
{
if
(
this
.
companyXzText
[
i
]
==
'不限'
)
{
this
.
companyXzText
.
splice
(
i
,
1
);
}
}
}
else
if
(
this
.
companyXzText
.
length
==
0
)
{
this
.
companyXzText
=
[
'不限'
];
}
var
n
=
-
1
;
for
(
let
i
=
0
;
i
<
this
.
companyXzText
.
length
;
i
++
)
{
if
(
this
.
companyXzText
[
i
]
==
'不限'
)
{
n
=
i
;
}
}
if
(
n
!=
-
1
)
{
this
.
companyXzText
=
[
'不限'
];
return
;
}
var
arr
=
[];
for
(
let
i
=
0
;
i
<
this
.
companyXzText
.
length
;
i
++
)
{
for
(
let
j
=
0
;
j
<
this
.
companyXzList
.
length
;
j
++
)
{
if
(
this
.
companyXzText
[
i
]
==
this
.
companyXzList
[
j
].
label
)
{
arr
.
push
(
this
.
companyXzList
[
j
].
value
);
}
}
}
var
data
=
{
value
:
arr
,
keyid
:
'tagCode'
,
key
:
this
.
companyXzText
,
title
:
'企业性质:'
};
this
.
aptitudelist
.
push
(
data
);
},
companyTypebtn
()
{
for
(
let
i
=
0
;
i
<
this
.
aptitudelist
.
length
;
i
++
)
{
...
...
@@ -2608,6 +2688,9 @@ export default {
case
'taxYear'
:
this
.
aTaxYeartext
=
[
'不限'
];
break
;
case
'tagCode'
:
this
.
companyXzText
=
[
'不限'
];
break
;
case
'companyType'
:
this
.
companyTypeText
=
[
'不限'
];
break
;
...
...
@@ -2826,9 +2909,10 @@ export default {
}
else
if
(
this
.
aptitudelist
[
i
].
keyid
==
"taxYear"
)
{
data
.
aptitudeQueryDto
[
'taxYear'
]
=
this
.
aptitudelist
[
i
].
key
.
join
(
','
);
}
else
if
(
this
.
aptitudelist
[
i
].
keyid
==
"tagCode"
)
{
data
.
aptitudeQueryDto
[
'tagCode'
]
=
this
.
aptitudelist
[
i
].
key
.
join
(
','
);
}
else
if
(
this
.
aptitudelist
[
i
].
keyid
==
"companyType"
)
{
data
.
aptitudeQueryDto
[
'companyType'
]
=
this
.
aptitudelist
[
i
].
key
.
join
(
','
);
}
else
if
(
this
.
aptitudelist
[
i
].
keyid
==
"businessStatus"
)
{
data
.
aptitudeQueryDto
[
'businessStatus'
]
=
this
.
aptitudelist
[
i
].
key
.
join
(
','
);
}
else
if
(
this
.
aptitudelist
[
i
].
keyid
==
"establish"
)
{
...
...
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