Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
8113ad67
Commit
8113ad67
authored
Nov 20, 2024
by
liudong1993
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
67411ed1
4aba00b9
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
179 additions
and
84 deletions
+179
-84
WebSiteEdit.vue
src/components/WebSet/WebSiteEdit.vue
+2
-2
indexNav.vue
src/components/WebSet/home/indexNav.vue
+4
-4
indexRoll1.vue
src/components/WebSet/home/indexRoll1.vue
+51
-25
indexRoll2.vue
src/components/WebSet/home/indexRoll2.vue
+52
-23
indexSlider1.vue
src/components/WebSet/home/indexSlider1.vue
+62
-25
choose_menu.vue
src/components/WebSet/plug-in/choose_menu.vue
+7
-4
choose_trip.vue
src/components/WebSet/plug-in/choose_trip.vue
+1
-1
No files found.
src/components/WebSet/WebSiteEdit.vue
View file @
8113ad67
...
@@ -222,7 +222,6 @@
...
@@ -222,7 +222,6 @@
<el-option
v-for=
"item in templateList"
:label=
"item.TemplateName"
:value=
"item.Id"
:key=
"item.Id"
>
<el-option
v-for=
"item in templateList"
:label=
"item.TemplateName"
:value=
"item.Id"
:key=
"item.Id"
>
</el-option>
</el-option>
</el-select>
</el-select>
<div
class=
"temp-list-wrap"
>
<div
class=
"temp-list-wrap"
>
<div
v-for=
"(subItem,subIndex) in detailsList"
class=
"temp-list-item"
:key=
"subIndex"
draggable=
"true"
<div
v-for=
"(subItem,subIndex) in detailsList"
class=
"temp-list-item"
:key=
"subIndex"
draggable=
"true"
@
dragstart=
"dragLeftStart($event,subItem)"
@
dragend=
"dragendLeft($event,subItem)"
>
@
dragstart=
"dragLeftStart($event,subItem)"
@
dragend=
"dragendLeft($event,subItem)"
>
...
@@ -234,7 +233,7 @@
...
@@ -234,7 +233,7 @@
</div>
</div>
</div>
</div>
<el-dialog
:title=
"commonTitle"
:visible
.
sync=
"isShowDialog"
width=
"1000px"
>
<el-dialog
:title=
"commonTitle"
:visible
.
sync=
"isShowDialog"
width=
"1000px"
>
<!--视频-->
<!--视频-->
<plugvideodialog
v-if=
"currentEditItem.Id=='white_label_video'"
:plugData=
"currentEditItemData"
></plugvideodialog>
<plugvideodialog
v-if=
"currentEditItem.Id=='white_label_video'"
:plugData=
"currentEditItemData"
></plugvideodialog>
<!--轮播图-->
<!--轮播图-->
...
@@ -458,6 +457,7 @@
...
@@ -458,6 +457,7 @@
this
.
currentEditItemData
=
JSON
.
parse
(
JSON
.
stringify
(
item
.
plugData
));
this
.
currentEditItemData
=
JSON
.
parse
(
JSON
.
stringify
(
item
.
plugData
));
if
(
!
this
.
currentEditItemData
.
BottomList
)
this
.
$set
(
this
.
currentEditItemData
,
'BottomList'
,[])
if
(
!
this
.
currentEditItemData
.
BottomList
)
this
.
$set
(
this
.
currentEditItemData
,
'BottomList'
,[])
if
(
!
this
.
currentEditItemData
.
MBgColor
)
this
.
$set
(
this
.
currentEditItemData
,
'MBgColor'
,
''
)
if
(
!
this
.
currentEditItemData
.
MBgColor
)
this
.
$set
(
this
.
currentEditItemData
,
'MBgColor'
,
''
)
if
(
!
this
.
currentEditItemData
.
MLogo
)
this
.
$set
(
this
.
currentEditItemData
,
'MLogo'
,
''
)
},
},
//获取数据
//获取数据
setSubPlugData
()
{
setSubPlugData
()
{
...
...
src/components/WebSet/home/indexNav.vue
View file @
8113ad67
...
@@ -395,10 +395,10 @@
...
@@ -395,10 +395,10 @@
//一级菜单
//一级菜单
this
.
plugData
.
MenuList
.
push
(
JSON
.
parse
(
JSON
.
stringify
(
this
.
MenuList
)))
this
.
plugData
.
MenuList
.
push
(
JSON
.
parse
(
JSON
.
stringify
(
this
.
MenuList
)))
}
else
if
(
type
==
2
)
{
}
else
if
(
type
==
2
)
{
//二级菜单
//二级菜单
this
.
plugData
.
MenuList
[
index
].
SubMenuList
.
push
(
JSON
.
parse
(
JSON
.
stringify
(
this
.
SubMenuList
)))
this
.
plugData
.
MenuList
[
index
].
SubMenuList
.
push
(
JSON
.
parse
(
JSON
.
stringify
(
this
.
SubMenuList
)))
}
else
if
(
type
==
3
)
{
}
else
if
(
type
==
3
)
{
//底部导航
//底部导航
this
.
plugData
.
BottomList
.
push
(
JSON
.
parse
(
JSON
.
stringify
(
this
.
BottomList
)))
this
.
plugData
.
BottomList
.
push
(
JSON
.
parse
(
JSON
.
stringify
(
this
.
BottomList
)))
}
}
},
},
...
@@ -411,11 +411,11 @@
...
@@ -411,11 +411,11 @@
if
(
type
==
1
)
{
if
(
type
==
1
)
{
that
.
plugData
.
MenuList
.
splice
(
index
,
1
)
that
.
plugData
.
MenuList
.
splice
(
index
,
1
)
}
}
//二级菜单
//二级菜单
else
if
(
type
==
2
)
{
else
if
(
type
==
2
)
{
that
.
plugData
.
MenuList
[
index
].
SubMenuList
.
splice
(
i
,
1
)
that
.
plugData
.
MenuList
[
index
].
SubMenuList
.
splice
(
i
,
1
)
}
}
//底部导航
//底部导航
else
if
(
type
==
3
)
{
else
if
(
type
==
3
)
{
that
.
plugData
.
BottomList
.
splice
(
i
,
1
)
that
.
plugData
.
BottomList
.
splice
(
i
,
1
)
}
}
...
...
src/components/WebSet/home/indexRoll1.vue
View file @
8113ad67
...
@@ -93,23 +93,45 @@
...
@@ -93,23 +93,45 @@
<
template
>
<
template
>
<div
class=
"WebSite_slider"
>
<div
class=
"WebSite_slider"
>
<el-form
label-width=
"100px"
>
<el-form
label-width=
"100px"
>
<el-row
class=
"row"
:gutter=
"24"
>
<el-row
class=
"row"
>
<el-col
:span=
"10"
>
<el-form-item
:label=
"$t('objFill.v101.zhubiaoti')"
class=
"flex-shrink"
style=
"margin-bottom: 0;"
>
<el-form-item
:label=
"$t('objFill.v101.zhubiaoti')"
class=
"flex-shrink"
style=
"margin-bottom: 0;"
>
<el-input
type=
"text"
v-model=
"plugData.Title"
></el-input>
<el-input
type=
"text"
v-model=
"plugData.Title"
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('objFill.fubiaoti')"
class=
"flex-shrink"
style=
"margin-bottom: 0;"
>
</el-col>
<el-input
type=
"text"
v-model=
"plugData.SubTitle"
></el-input>
<el-col
:span=
"10"
>
</el-form-item>
<el-form-item
:label=
"$t('objFill.fubiaoti')"
class=
"flex-shrink"
style=
"margin-bottom: 0;"
>
<el-input
type=
"text"
v-model=
"plugData.SubTitle"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"Mobile LOGO"
style=
"margin-bottom: 0;"
>
<div
class=
"webSliderDiv"
style=
"width:40px;height:40px;"
>
<el-upload
:http-request=
"UploadAttachmentMLogo"
:multiple=
"true"
accept=
"image/jpeg,image/gif,image/png,image/bmp"
:show-file-list=
"false"
action=
""
>
<img
v-if=
"plugData.MLogo"
:src=
"plugData.MLogo"
class=
"web_imgUrl"
alt=
""
/>
<div
class=
"addIconDiv"
>
<i
class=
"web_addImg iconfont icon-img_haha"
style=
"font-size:15px;"
></i>
<i
class=
"web_delImg iconfont icon-img_delete_small"
style=
"margin-left:8px;font-size:15px;"
@
click
.
stop=
"plugData.MLogo=''"
></i>
</div>
</el-upload>
</div>
</el-form-item>
</el-col>
</el-row>
</el-row>
<el-row
style=
"display: flex;flex-direction: row;justify-content: space-between;align-items: center;"
>
<el-row
style=
"display: flex;flex-direction: row;justify-content: space-between;align-items: center;"
:gutter=
"24"
>
<el-form-item
:label=
"$t('objFill.v101.jianjie')"
class=
"flex"
style=
"margin-bottom: 0;"
>
<el-col
:span=
"20"
>
<el-input
type=
"textarea"
:rows=
"2"
v-model=
"plugData.Describe"
></el-input>
<el-form-item
:label=
"$t('objFill.v101.jianjie')"
class=
"flex"
style=
"margin-bottom: 0;"
>
</el-form-item>
<el-input
type=
"textarea"
:rows=
"2"
v-model=
"plugData.Describe"
></el-input>
<el-form-item
:label=
"$t('objFill.v101.beijinse')"
style=
"margin-bottom: 0;flex-shrink: 0;"
>
</el-form-item>
<el-color-picker
style=
'vertical-align: middle;'
v-model=
"plugData.BgColor"
></el-color-picker>
</el-col>
</el-form-item>
<el-col
:span=
"4"
>
<el-form-item
:label=
"$t('objFill.v101.beijinse')"
style=
"margin-bottom: 0;flex-shrink: 0;"
>
<el-color-picker
style=
'vertical-align: middle;'
v-model=
"plugData.BgColor"
></el-color-picker>
</el-form-item>
</el-col>
</el-row>
</el-row>
<table>
<table>
<tbody
v-for=
"(item,index) in plugData.NavList"
:key=
"index"
>
<tbody
v-for=
"(item,index) in plugData.NavList"
:key=
"index"
>
...
@@ -120,20 +142,14 @@
...
@@ -120,20 +142,14 @@
<td></td>
<td></td>
<td
class=
"rowEnd"
>
<td
class=
"rowEnd"
>
<div>
<div>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"'+ '+$t('objFill.caidan')"
placement=
"top"
>
<el-button
type=
"primary"
icon=
"el-icon-plus"
size=
"mini"
circle
@
click=
"addMenu()"
></el-button>
<el-button
type=
"primary"
icon=
"el-icon-plus"
size=
"mini"
circle
@
click=
"addMenu()"
></el-button>
<el-button
type=
"danger"
icon=
"el-icon-minus"
size=
"mini"
circle
@
click=
"delMenu(index)"
></el-button>
</el-tooltip>
<el-tooltip
v-show=
"plugData.NavList.length>1"
class=
"item"
effect=
"dark"
:content=
"'- '+$t('objFill.caidan')"
placement=
"top"
>
<el-button
type=
"danger"
icon=
"el-icon-minus"
size=
"mini"
circle
@
click=
"delMenu(index)"
>
</el-button>
</el-tooltip>
</div>
</div>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"w350"
rowspan=
"3"
>
<td
class=
"w350"
rowspan=
"3"
>
<el-form-item
:label=
"$t('objFill.v101.fengmian')"
style=
"margin-bottom: 0;"
>
<el-form-item
:label=
"$t('objFill.v101.fengmian')
+(index+1)
"
style=
"margin-bottom: 0;"
>
<div
class=
"webSliderDiv"
@
click=
"clickIndex=index"
>
<div
class=
"webSliderDiv"
@
click=
"clickIndex=index"
>
<el-upload
v-if=
"item.FileType==1"
:http-request=
"UploadAttachment"
:multiple=
"true"
<el-upload
v-if=
"item.FileType==1"
:http-request=
"UploadAttachment"
:multiple=
"true"
accept=
"image/jpeg,image/gif,image/png,image/bmp"
:show-file-list=
"false"
action=
""
>
accept=
"image/jpeg,image/gif,image/png,image/bmp"
:show-file-list=
"false"
action=
""
>
...
@@ -241,6 +257,16 @@
...
@@ -241,6 +257,16 @@
},
},
methods
:
{
methods
:
{
UploadAttachmentMLogo
(
file
)
{
let
newArr
=
[];
newArr
.
push
(
file
.
file
);
var
path
=
"/Upload/WebSite/"
;
this
.
UploadSelfFileT
(
path
,
newArr
,
x
=>
{
var
str
=
x
.
data
.
FilePath
;
var
imgUrl
=
this
.
domainManager
().
ViittoFileUrl
+
str
;
this
.
plugData
.
MLogo
=
imgUrl
;
});
},
addMenu
()
{
addMenu
()
{
this
.
plugData
.
NavList
.
push
(
JSON
.
parse
(
JSON
.
stringify
(
this
.
MenuList
)))
this
.
plugData
.
NavList
.
push
(
JSON
.
parse
(
JSON
.
stringify
(
this
.
MenuList
)))
},
},
...
...
src/components/WebSet/home/indexRoll2.vue
View file @
8113ad67
...
@@ -93,21 +93,45 @@
...
@@ -93,21 +93,45 @@
<
template
>
<
template
>
<div
class=
"WebSite_slider"
>
<div
class=
"WebSite_slider"
>
<el-form
label-width=
"100px"
>
<el-form
label-width=
"100px"
>
<el-row
class=
"row"
>
<el-row
class=
"row"
:gutter=
"24"
>
<el-form-item
:label=
"$t('objFill.v101.zhubiaoti')"
class=
"flex-shrink"
style=
"margin-bottom: 0;"
>
<el-col
:span=
"10"
>
<el-input
type=
"text"
v-model=
"plugData.Title"
></el-input>
<el-form-item
:label=
"$t('objFill.v101.zhubiaoti')"
class=
"flex-shrink"
style=
"margin-bottom: 0;"
>
</el-form-item>
<el-input
type=
"text"
v-model=
"plugData.Title"
></el-input>
<el-form-item
:label=
"$t('objFill.fubiaoti')"
class=
"flex-shrink"
style=
"margin-bottom: 0;"
>
</el-form-item>
<el-input
type=
"text"
v-model=
"plugData.SubTitle"
></el-input>
</el-col>
</el-form-item>
<el-col
:span=
"10"
>
<el-form-item
:label=
"$t('objFill.fubiaoti')"
class=
"flex-shrink"
style=
"margin-bottom: 0;"
>
<el-input
type=
"text"
v-model=
"plugData.SubTitle"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"Mobile LOGO"
style=
"margin-bottom: 0;"
>
<div
class=
"webSliderDiv"
style=
"width:40px;height:40px;"
>
<el-upload
:http-request=
"UploadAttachmentMLogo"
:multiple=
"true"
accept=
"image/jpeg,image/gif,image/png,image/bmp"
:show-file-list=
"false"
action=
""
>
<img
v-if=
"plugData.MLogo"
:src=
"plugData.MLogo"
class=
"web_imgUrl"
alt=
""
/>
<div
class=
"addIconDiv"
>
<i
class=
"web_addImg iconfont icon-img_haha"
style=
"font-size:15px;"
></i>
<i
class=
"web_delImg iconfont icon-img_delete_small"
style=
"margin-left:8px;font-size:15px;"
@
click
.
stop=
"plugData.MLogo=''"
></i>
</div>
</el-upload>
</div>
</el-form-item>
</el-col>
</el-row>
</el-row>
<el-row
style=
"display: flex;flex-direction: row;justify-content: space-between;align-items: center;"
>
<el-row
style=
"display: flex;flex-direction: row;justify-content: space-between;align-items: center;"
<el-form-item
:label=
"$t('objFill.v101.jianjie')"
class=
"flex"
style=
"margin-bottom: 0;"
>
:gutter=
"24"
>
<el-input
type=
"textarea"
:rows=
"2"
v-model=
"plugData.Describe"
></el-input>
<el-col
:span=
"20"
>
</el-form-item>
<el-form-item
:label=
"$t('objFill.v101.jianjie')"
class=
"flex"
style=
"margin-bottom: 0;"
>
<el-form-item
:label=
"$t('objFill.v101.beijinse')"
style=
"margin-bottom: 0;flex-shrink: 0;"
>
<el-input
type=
"textarea"
:rows=
"2"
v-model=
"plugData.Describe"
></el-input>
<el-color-picker
style=
'vertical-align: middle;'
v-model=
"plugData.BgColor"
></el-color-picker>
</el-form-item>
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
:label=
"$t('objFill.v101.beijinse')"
style=
"margin-bottom: 0;flex-shrink: 0;"
>
<el-color-picker
style=
'vertical-align: middle;'
v-model=
"plugData.BgColor"
></el-color-picker>
</el-form-item>
</el-col>
</el-row>
</el-row>
<table>
<table>
<tbody
v-for=
"(item,index) in plugData.NavList"
:key=
"index"
>
<tbody
v-for=
"(item,index) in plugData.NavList"
:key=
"index"
>
...
@@ -118,20 +142,15 @@
...
@@ -118,20 +142,15 @@
<td></td>
<td></td>
<td
class=
"rowEnd"
>
<td
class=
"rowEnd"
>
<div>
<div>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"'+ '+$t('objFill.caidan')"
placement=
"top"
>
<el-button
type=
"primary"
icon=
"el-icon-plus"
size=
"mini"
circle
@
click=
"addMenu()"
></el-button>
<el-button
type=
"primary"
icon=
"el-icon-plus"
size=
"mini"
circle
@
click=
"addMenu()"
></el-button>
<el-button
type=
"danger"
icon=
"el-icon-minus"
size=
"mini"
circle
@
click=
"delMenu(index)"
>
</el-tooltip>
</el-button>
<el-tooltip
v-show=
"plugData.NavList.length>1"
class=
"item"
effect=
"dark"
:content=
"'- '+$t('objFill.caidan')"
placement=
"top"
>
<el-button
type=
"danger"
icon=
"el-icon-minus"
size=
"mini"
circle
@
click=
"delMenu(index)"
>
</el-button>
</el-tooltip>
</div>
</div>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"w350"
rowspan=
"3"
>
<td
class=
"w350"
rowspan=
"3"
>
<el-form-item
:label=
"$t('objFill.v101.fengmian')"
style=
"margin-bottom: 0;"
>
<el-form-item
:label=
"$t('objFill.v101.fengmian')
+(index+1)
"
style=
"margin-bottom: 0;"
>
<div
class=
"webSliderDiv"
@
click=
"clickIndex=index"
>
<div
class=
"webSliderDiv"
@
click=
"clickIndex=index"
>
<el-upload
v-if=
"item.FileType==1"
:http-request=
"UploadAttachment"
:multiple=
"true"
<el-upload
v-if=
"item.FileType==1"
:http-request=
"UploadAttachment"
:multiple=
"true"
accept=
"image/jpeg,image/gif,image/png,image/bmp"
:show-file-list=
"false"
action=
""
>
accept=
"image/jpeg,image/gif,image/png,image/bmp"
:show-file-list=
"false"
action=
""
>
...
@@ -239,6 +258,16 @@
...
@@ -239,6 +258,16 @@
},
},
methods
:
{
methods
:
{
UploadAttachmentMLogo
(
file
)
{
let
newArr
=
[];
newArr
.
push
(
file
.
file
);
var
path
=
"/Upload/WebSite/"
;
this
.
UploadSelfFileT
(
path
,
newArr
,
x
=>
{
var
str
=
x
.
data
.
FilePath
;
var
imgUrl
=
this
.
domainManager
().
ViittoFileUrl
+
str
;
this
.
plugData
.
MLogo
=
imgUrl
;
});
},
addMenu
()
{
addMenu
()
{
this
.
plugData
.
NavList
.
push
(
JSON
.
parse
(
JSON
.
stringify
(
this
.
MenuList
)))
this
.
plugData
.
NavList
.
push
(
JSON
.
parse
(
JSON
.
stringify
(
this
.
MenuList
)))
},
},
...
...
src/components/WebSet/home/indexSlider1.vue
View file @
8113ad67
...
@@ -92,23 +92,45 @@
...
@@ -92,23 +92,45 @@
<
template
>
<
template
>
<div
class=
"WebSite_slider"
>
<div
class=
"WebSite_slider"
>
<el-form
label-width=
"100px"
>
<el-form
label-width=
"100px"
>
<el-row
class=
"row"
:gutter=
"24"
>
<el-row
class=
"row"
>
<el-col
:span=
"10"
>
<el-form-item
:label=
"$t('objFill.v101.zhubiaoti')"
class=
"flex-shrink"
style=
"margin-bottom: 0;"
>
<el-form-item
:label=
"$t('objFill.v101.zhubiaoti')"
class=
"flex-shrink"
style=
"margin-bottom: 0;"
>
<el-input
type=
"text"
v-model=
"plugData.Title"
></el-input>
<el-input
type=
"text"
v-model=
"plugData.Title"
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('objFill.fubiaoti')"
class=
"flex-shrink"
style=
"margin-bottom: 0;"
>
</el-col>
<el-input
type=
"text"
v-model=
"plugData.SubTitle"
></el-input>
<el-col
:span=
"10"
>
</el-form-item>
<el-form-item
:label=
"$t('objFill.fubiaoti')"
class=
"flex-shrink"
style=
"margin-bottom: 0;"
>
<el-input
type=
"text"
v-model=
"plugData.SubTitle"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"Mobile LOGO"
style=
"margin-bottom: 0;"
>
<div
class=
"webSliderDiv"
style=
"width: 40px;height:40px;"
>
<el-upload
:http-request=
"UploadAttachmentMLogo"
:multiple=
"true"
accept=
"image/jpeg,image/gif,image/png,image/bmp"
:show-file-list=
"false"
action=
""
>
<img
v-if=
"plugData.MLogo"
:src=
"plugData.MLogo"
class=
"web_imgUrl"
alt=
""
/>
<div
class=
"addIconDiv"
>
<i
class=
"web_addImg iconfont icon-img_haha"
style=
" font-size:15px;"
></i>
<i
class=
"web_delImg iconfont icon-img_delete_small"
style=
"margin-left:8px;font-size:15px;"
@
click
.
stop=
"plugData.MLogo=''"
></i>
</div>
</el-upload>
</div>
</el-form-item>
</el-col>
</el-row>
</el-row>
<el-row
style=
"display: flex;flex-direction: row;justify-content: space-between;align-items: center;"
>
<el-row
style=
"display: flex;flex-direction: row;justify-content: space-between;align-items: center;"
:gutter=
"24"
>
<el-form-item
:label=
"$t('objFill.v101.jianjie')"
class=
"flex"
style=
"margin-bottom: 0;"
>
<el-col
:span=
"20"
>
<el-input
type=
"textarea"
:rows=
"2"
v-model=
"plugData.Describe"
></el-input>
<el-form-item
:label=
"$t('objFill.v101.jianjie')"
class=
"flex"
style=
"margin-bottom: 0;"
>
</el-form-item>
<el-input
type=
"textarea"
:rows=
"2"
v-model=
"plugData.Describe"
></el-input>
<el-form-item
:label=
"$t('objFill.v101.beijinse')"
style=
"margin-bottom: 0;flex-shrink: 0;"
>
</el-form-item>
<el-color-picker
style=
'vertical-align: middle;'
v-model=
"plugData.BgColor"
></el-color-picker>
</el-col>
</el-form-item>
<el-col
:span=
"4"
>
<el-form-item
:label=
"$t('objFill.v101.beijinse')"
style=
"margin-bottom: 0;flex-shrink: 0;"
>
<el-color-picker
style=
'vertical-align: middle;'
v-model=
"plugData.BgColor"
></el-color-picker>
</el-form-item>
</el-col>
</el-row>
</el-row>
<table>
<table>
<tbody
v-for=
"(item,index) in plugData.NavList"
:key=
"index"
>
<tbody
v-for=
"(item,index) in plugData.NavList"
:key=
"index"
>
...
@@ -119,20 +141,15 @@
...
@@ -119,20 +141,15 @@
<td></td>
<td></td>
<td
class=
"rowEnd"
>
<td
class=
"rowEnd"
>
<div>
<div>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"'+ '+$t('objFill.caidan')"
placement=
"top"
>
<el-button
type=
"primary"
icon=
"el-icon-plus"
size=
"mini"
circle
@
click=
"addMenu()"
></el-button>
<el-button
type=
"primary"
icon=
"el-icon-plus"
size=
"mini"
circle
@
click=
"addMenu()"
></el-button>
<el-button
type=
"danger"
icon=
"el-icon-minus"
size=
"mini"
circle
@
click=
"delMenu(index)"
>
</el-tooltip>
</el-button>
<el-tooltip
v-show=
"plugData.NavList.length>1"
class=
"item"
effect=
"dark"
:content=
"'- '+$t('objFill.caidan')"
placement=
"top"
>
<el-button
type=
"danger"
icon=
"el-icon-minus"
size=
"mini"
circle
@
click=
"delMenu(index)"
>
</el-button>
</el-tooltip>
</div>
</div>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td
class=
"w350"
rowspan=
"3"
>
<td
class=
"w350"
rowspan=
"3"
>
<el-form-item
:label=
"$t('objFill.v101.fengmian')"
style=
"margin-bottom: 0;"
>
<el-form-item
:label=
"$t('objFill.v101.fengmian')
+(index+1)
"
style=
"margin-bottom: 0;"
>
<div
class=
"webSliderDiv"
@
click=
"clickIndex=index"
>
<div
class=
"webSliderDiv"
@
click=
"clickIndex=index"
>
<el-upload
v-if=
"item.FileType==1"
:http-request=
"UploadAttachment"
:multiple=
"true"
<el-upload
v-if=
"item.FileType==1"
:http-request=
"UploadAttachment"
:multiple=
"true"
accept=
"image/jpeg,image/gif,image/png,image/bmp"
:show-file-list=
"false"
action=
""
>
accept=
"image/jpeg,image/gif,image/png,image/bmp"
:show-file-list=
"false"
action=
""
>
...
@@ -240,6 +257,16 @@
...
@@ -240,6 +257,16 @@
},
},
methods
:
{
methods
:
{
UploadAttachmentMLogo
(
file
)
{
let
newArr
=
[];
newArr
.
push
(
file
.
file
);
var
path
=
"/Upload/WebSite/"
;
this
.
UploadSelfFileT
(
path
,
newArr
,
x
=>
{
var
str
=
x
.
data
.
FilePath
;
var
imgUrl
=
this
.
domainManager
().
ViittoFileUrl
+
str
;
this
.
plugData
.
MLogo
=
imgUrl
;
});
},
addMenu
()
{
addMenu
()
{
this
.
plugData
.
NavList
.
push
(
JSON
.
parse
(
JSON
.
stringify
(
this
.
MenuList
)))
this
.
plugData
.
NavList
.
push
(
JSON
.
parse
(
JSON
.
stringify
(
this
.
MenuList
)))
},
},
...
@@ -260,6 +287,16 @@
...
@@ -260,6 +287,16 @@
this
.
plugData
.
NavList
[
this
.
clickIndex
].
FileUrl
=
imgUrl
;
this
.
plugData
.
NavList
[
this
.
clickIndex
].
FileUrl
=
imgUrl
;
});
});
},
},
UploadAttachmentMLogo
(
file
)
{
let
newArr
=
[];
newArr
.
push
(
file
.
file
);
var
path
=
"/Upload/WebSite/"
;
this
.
UploadSelfFileT
(
path
,
newArr
,
x
=>
{
var
str
=
x
.
data
.
FilePath
;
var
imgUrl
=
this
.
domainManager
().
ViittoFileUrl
+
str
;
this
.
plugData
.
MLogo
=
imgUrl
;
});
},
//显示菜单弹窗
//显示菜单弹窗
ShowMenuDialog
(
item
)
{
ShowMenuDialog
(
item
)
{
this
.
clickItem
=
item
;
this
.
clickItem
=
item
;
...
...
src/components/WebSet/plug-in/choose_menu.vue
View file @
8113ad67
<
style
>
<
style
>
.choose_menu
{
.choose_menu
{
width
:
450px
;
width
:
500px
;
line-height
:
0
;
max-height
:
430px
;
max-height
:
400px
;
}
}
</
style
>
</
style
>
<
template
>
<
template
>
...
@@ -24,6 +23,9 @@
...
@@ -24,6 +23,9 @@
:check-strictly=
"true"
show-checkbox
:check-on-click-node=
"true"
>
:check-strictly=
"true"
show-checkbox
:check-on-click-node=
"true"
>
</el-tree>
</el-tree>
</el-tab-pane>
</el-tab-pane>
<el-tab-pane
:label=
"$t('objFill.v101.xuanzhexingc')"
name=
"3"
>
</el-tab-pane>
</el-tabs>
</el-tabs>
</div>
</div>
</template>
</template>
...
@@ -124,4 +126,5 @@
...
@@ -124,4 +126,5 @@
},
},
};
};
</
script
>
\ No newline at end of file
</
script
>
src/components/WebSet/plug-in/choose_trip.vue
View file @
8113ad67
...
@@ -186,7 +186,7 @@
...
@@ -186,7 +186,7 @@
{{
item
.
DayNum
}}
{{
item
.
DayNum
}}
</td>
</td>
<td>
<td>
{{
item
.
B2
B
Price
}}
{{
item
.
B2
C
Price
}}
</td>
</td>
<td>
<td>
{{
{{
...
...
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