Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
enterprise-serevice-platform-web
Project
Project
Details
Activity
Releases
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
张伯涛
enterprise-serevice-platform-web
Commits
edd78e12
Commit
edd78e12
authored
Nov 01, 2022
by
高宇
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
7d8b1db8
cbbf0af5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
5 deletions
+49
-5
policyRecommendation.vue
src/views/PolicyDirect/components/policyRecommendation.vue
+11
-0
policySubscription.vue
src/views/PolicyDirect/components/policySubscription.vue
+38
-5
No files found.
src/views/PolicyDirect/components/policyRecommendation.vue
View file @
edd78e12
...
...
@@ -726,6 +726,17 @@ export default {
if
(
res
.
code
===
200
)
{
this
.
enterpriseNotExist
=
false
this
.
form
=
res
.
data
if
(
this
.
form
.
address
)
{
// 转换地址
var
province
=
this
.
form
.
address
.
slice
(
0
,
4
)
var
city
=
this
.
form
.
address
.
slice
(
4
,
8
)
var
area
=
this
.
form
.
address
.
slice
(
8
,
this
.
form
.
address
.
length
)
var
address
=
[]
address
.
push
(
province
)
address
.
push
(
city
)
address
.
push
(
area
)
this
.
address
=
address
}
this
.
form
.
fwEnterpriseOperateRelativeList
=
[
{
year
:
'2022'
,
...
...
src/views/PolicyDirect/components/policySubscription.vue
View file @
edd78e12
...
...
@@ -172,8 +172,8 @@
:modal-append-to-body=
"false"
width=
"80%"
>
<el-form
ref=
"addForm"
:model=
"addForm"
>
<el-form-item
label=
"订阅区域"
prop=
"address"
>
<el-form
class=
"add-form"
ref=
"addForm"
:model=
"addForm"
>
<el-form-item
label=
"订阅区域
:
"
prop=
"address"
>
<!--<el-cascader
v-model="areaCode"
placeholder="注册地区"
...
...
@@ -185,9 +185,11 @@
clearable
:options="addressInfo"
/>-->
<br>
{{ addressHeBei }}
</el-form-item>
<el-form-item
label=
"订阅周期"
>
<el-form-item
label=
"订阅周期:"
>
<br>
<el-date-picker
v-model=
"time"
class=
"subscription-date-picker"
...
...
@@ -203,10 +205,11 @@
<el-form-item
v-for=
"(item, index) in addSubscriptionCheckbox"
:key=
"index"
:label=
"item.name"
:label=
"item.name
+':'
"
class=
"checkbox-group-shell"
>
<el-checkbox-group
v-model=
"addForm.tabIdList"
>
<br>
<el-checkbox-button
v-for=
"(childItem, childIndex) in item.childrenList"
:key=
"childIndex"
...
...
@@ -221,6 +224,7 @@
<!--有行业小类时才显示-->
<el-form-item
v-if=
"addSubscriptionIndustryCategory.length > 0"
:label=
"keyword.industryCategory"
class=
"checkbox-group-shell"
>
<el-checkbox-group
v-model=
"addForm.tabIdList"
>
<br>
<el-checkbox-button
v-for=
"(item, index) in addSubscriptionIndustryCategory"
:key=
"index"
...
...
@@ -929,6 +933,34 @@ export default {
}
.policy-subscription-add-subscription-dialog
{
::v-deep
.el-dialog__body
{
padding
:
10px
25px
25px
5px
;
}
::v-deep
.el-form-item.el-form-item--small
{
&
:nth-of-type
(
1
)
{
margin-bottom
:
10px
;
}
&
:nth-of-type
(
2
)
{
margin-top
:
0px
;
.el-form-item__content
{
margin-top
:
10px
;
margin-bottom
:
5px
;
}
}
.el-checkbox-group
{
.el-checkbox-button__inner
{
border
:
1px
solid
#1A78E5
;
color
:
#1A78E5
;
&
:hover
{
border
:
1px
solid
#2662AD
;
color
:
#2662AD
;
}
}
.is-checked
.el-checkbox-button__inner
{
color
:
#FFFFFF
;
}
}
}
.dialog-footer
{
.el-button
{
width
:
132px
;
...
...
@@ -936,11 +968,12 @@ export default {
}
}
}
// 添加订阅 多选样式
.checkbox-group-shell
{
::v-deep
.el-form-item__content
{
display
:
flex
;
line-height
:
2px
;
margin-top
:
40px
;
}
.checkbox-button-content
{
...
...
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