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
72e73228
Commit
72e73228
authored
May 23, 2023
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
e4f77681
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
87 additions
and
69 deletions
+87
-69
carousel.vue
src/components/commonPage/carousel.vue
+71
-47
order-form2.vue
src/components/orderCommon/order-form2.vue
+7
-3
productOrderList.vue
src/components/orderCommon/productOrderList.vue
+9
-19
No files found.
src/components/commonPage/carousel.vue
View file @
72e73228
<
template
>
<
template
>
<div
class=
"zj_carouselCont"
>
<div
class=
"zj_carouselCont"
>
<ul
ref=
'ul'
@
mouseenter=
"play"
@
mouseleave=
"pause"
>
<ul
ref=
'ul'
@
mouseenter=
"play"
@
mouseleave=
"pause"
>
<li
v-for=
"(item,index) in imgArr
"
>
<li
v-for=
"(item,index) in imgArr"
:key=
"index
"
>
<img
:src=
"item.Url"
/>
<img
:src=
"item.Url"
/>
</li>
</li>
</ul>
</ul>
<!--'+?x-oss-process=image/resize,m_lfit,h_120,w_160'-->
</div>
</div>
</
template
>
</
template
>
<
script
>
<
script
>
export
default
{
export
default
{
props
:
[
"imgArr"
],
props
:
[
"imgArr"
],
data
()
{
data
()
{
return
{
return
{
i
:
0
,
i
:
0
,
isPlay
:
false
,
isPlay
:
false
,
timer
:
null
timer
:
null
};
};
},
},
mounted
()
{
mounted
()
{
this
.
$refs
.
ul
.
style
.
width
=
this
.
imgArr
.
length
*
160
+
'px'
;
this
.
$refs
.
ul
.
style
.
width
=
this
.
imgArr
.
length
*
160
+
'px'
;
},
},
computed
:
{},
computed
:
{},
methods
:
{
methods
:
{
play
()
{
play
()
{
this
.
isPlay
=
true
,
this
.
isPlay
=
true
,
this
.
timer
=
setInterval
(()
=>
{
this
.
timer
=
setInterval
(()
=>
{
if
(
this
.
isPlay
==
true
)
{
if
(
this
.
isPlay
==
true
)
{
if
(
this
.
i
<
this
.
imgArr
.
length
-
1
)
{
if
(
this
.
i
<
this
.
imgArr
.
length
-
1
)
{
this
.
i
++
this
.
i
++
}
else
{
}
else
{
this
.
i
=
0
this
.
i
=
0
}
}
this
.
$refs
.
ul
.
style
.
left
=-
160
*
this
.
i
+
'px'
this
.
$refs
.
ul
.
style
.
left
=
-
160
*
this
.
i
+
'px'
}
}
},
3000
)
},
3000
)
},
},
pause
()
{
pause
()
{
this
.
isPlay
=
false
this
.
isPlay
=
false
clearInterval
(
this
.
timer
)
clearInterval
(
this
.
timer
)
}
}
},
},
created
()
{}
created
()
{}
};
};
</
script
>
</
script
>
<
style
>
<
style
>
.zj_carouselCont
{
width
:
160px
;
height
:
120px
;
overflow
:
hidden
;
position
:
relative
;}
.zj_carouselCont
{
.zj_carouselCont
ul
{
width
:
auto
;
height
:
120px
;
position
:
absolute
;
left
:
0
;
transition
:
left
.2s
;}
width
:
160px
;
.zj_carouselCont
ul
li
{
float
:
left
;
width
:
160px
;
height
:
120px
;
border
:
none
;
overflow
:
hidden
;}
height
:
120px
;
.zj_carouselCont
ul
li
>
img
{
width
:
160px
;
height
:
120px
;}
overflow
:
hidden
;
position
:
relative
;
}
.zj_carouselCont
ul
{
width
:
auto
;
height
:
120px
;
position
:
absolute
;
left
:
0
;
transition
:
left
.2s
;
}
.zj_carouselCont
ul
li
{
float
:
left
;
width
:
160px
;
height
:
120px
;
border
:
none
;
overflow
:
hidden
;
}
.zj_carouselCont
ul
li
>
img
{
width
:
160px
;
height
:
120px
;
}
</
style
>
</
style
>
src/components/orderCommon/order-form2.vue
View file @
72e73228
...
@@ -54,10 +54,11 @@
...
@@ -54,10 +54,11 @@
}
}
</
style
>
</
style
>
<!--下单表单-->
<
template
>
<
template
>
<div
class=
"commonOrderForm"
:style=
"
{ height: ScreenHeight }">
<div
class=
"commonOrderForm"
:style=
"
{ height: ScreenHeight }">
<p
class=
"title"
>
<p
class=
"title"
>
{{
$t
(
"salesModule.SignImdi"
)
}}
{{
$t
(
"salesModule.SignImdi"
)
}}
<span
style=
"color:red;font-weight:bold;"
>
联运信息请填下面【联运备注】
</span>
<span
v-if=
"crmOrderObj"
>
<span
v-if=
"crmOrderObj"
>
<span
style=
"color: red"
>
引流人:
{{
crmOrderObj
.
LureEmpNmae
}}
</span>
<span
style=
"color: red"
>
引流人:
{{
crmOrderObj
.
LureEmpNmae
}}
</span>
<span
style=
"color: #2aaef2"
>
/客人:
{{
crmOrderObj
.
CRMGuestName
}}
</span>
<span
style=
"color: #2aaef2"
>
/客人:
{{
crmOrderObj
.
CRMGuestName
}}
</span>
...
@@ -146,6 +147,7 @@
...
@@ -146,6 +147,7 @@
</el-option>
</el-option>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
<el-col
:span=
"4"
>
<el-col
:span=
"4"
>
<!--出发是否联运-->
<!--出发是否联运-->
...
@@ -188,6 +190,7 @@
...
@@ -188,6 +190,7 @@
<el-switch
v-model=
"addMsg.IsReturnIntermodal"
active-value=
"1"
inactive-value=
"2"
<el-switch
v-model=
"addMsg.IsReturnIntermodal"
active-value=
"1"
inactive-value=
"2"
@
change=
"getUnionTravelPrice(priceObj, 2)"
></el-switch>
@
change=
"getUnionTravelPrice(priceObj, 2)"
></el-switch>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
<el-col
:span=
"4"
>
<el-col
:span=
"4"
>
<!--返程联运时间-->
<!--返程联运时间-->
...
@@ -629,10 +632,11 @@
...
@@ -629,10 +632,11 @@
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-row>
<el-row
:gutter=
"20"
v-if=
"addMsg.IsIntermodal == 1 || addMsg.IsReturnIntermodal == 1"
>
<!--v-if="addMsg.IsIntermodal == 1 || addMsg.IsReturnIntermodal == 1"-->
<el-row
:gutter=
"20"
>
<el-col
:span=
"24"
>
<el-col
:span=
"24"
>
<el-form-item
label=
"联运备注"
prop=
"UnionRemark"
>
<el-form-item
label=
"联运备注"
prop=
"UnionRemark"
>
<el-input
v-model=
"addMsg.UnionRemark"
type=
"textarea"
maxlength=
"500"
placeholder=
""
></el-input>
<el-input
v-model=
"addMsg.UnionRemark"
type=
"textarea"
maxlength=
"500"
placeholder=
"
去程 成都到北京,提前一天,需要住宿;回程 北京到成都 晚一天,需要住宿
"
></el-input>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-row>
...
...
src/components/orderCommon/productOrderList.vue
View file @
72e73228
...
@@ -608,11 +608,7 @@
...
@@ -608,11 +608,7 @@
<span
class=
"TCL-greenType"
>
{{
item
.
SaleClearOrderHour
<span
class=
"TCL-greenType"
>
{{
item
.
SaleClearOrderHour
}}{{
$t
(
"salesModule.Hour"
)
}}
</span>
}}{{
$t
(
"salesModule.Hour"
)
}}
</span>
</p>
</p>
<p
v-if=
"
<p
v-if=
"item.LineID == 14 && item.HotelOrderListReports && item.HotelOrderListReports.length > 0"
>
item.LineID == 14 &&
item.HotelOrderListReports &&
item.HotelOrderListReports.length > 0
"
>
<el-popover
width=
"600"
trigger=
"click"
popper-class=
"PQ_HotelPop"
>
<el-popover
width=
"600"
trigger=
"click"
popper-class=
"PQ_HotelPop"
>
<commonHotelInfo
:HotelObj=
"item.HotelOrderListReports"
:showHotelObj=
"showHotelObj"
>
<commonHotelInfo
:HotelObj=
"item.HotelOrderListReports"
:showHotelObj=
"showHotelObj"
>
</commonHotelInfo>
</commonHotelInfo>
...
@@ -625,12 +621,7 @@
...
@@ -625,12 +621,7 @@
<p>
<p>
<i
class=
"iconfont icon-jiage"
></i>
{{
$t
(
"Operation.Op_PriceInfo"
)
}}
<i
class=
"iconfont icon-jiage"
></i>
{{
$t
(
"Operation.Op_PriceInfo"
)
}}
</p>
</p>
<p
style=
"
<p
style=
"color:#47bf8c;font-size:16px;font-weight:bold;margin: 5px 0;"
>
color: #47bf8c;
font-size: 16px;
font-weight: bold;
margin: 5px 0;
"
>
{{
$t
(
"Operation.Op_tradePrice"
)
}}
:¥
{{
{{
$t
(
"Operation.Op_tradePrice"
)
}}
:¥
{{
item
.
B2BMemberPrice
|
priceFormat
(
item
.
B2BMemberPrice
)
item
.
B2BMemberPrice
|
priceFormat
(
item
.
B2BMemberPrice
)
}}
<br
/>
}}
<br
/>
...
@@ -844,12 +835,14 @@
...
@@ -844,12 +835,14 @@
<p
v-if=
"item.VisaFileList.length !== 0"
>
<p
v-if=
"item.VisaFileList.length !== 0"
>
<span>
{{ $t("visa.v_visaInformation") }}
</span>
<span>
{{ $t("visa.v_visaInformation") }}
</span>
</p>
</p>
<p
v-if=
"item.VisaFileList.length !== 0"
v-for=
"(item2, index2) in item.VisaFileList"
:key=
"index2"
>
<
template
v-if=
"item.VisaFileList&& item.VisaFileList.length >0"
>
<p
v-for=
"(item2, index2) in item.VisaFileList"
:key=
"index2"
>
<span
style=
"cursor: pointer; text-decoration: underline"
<span
style=
"cursor: pointer; text-decoration: underline"
@
click=
"downloadFile(item2)"
>
{{
item2
.
Name
}}
</span>
@
click=
"downloadFile(item2)"
>
{{
item2
.
Name
}}
</span>
</p>
</p>
</
template
>
<p>
<p>
<span>
{{ $t("salesModule.TicketStatus")
}}:
</span>
<span>
{{ $t("salesModule.TicketStatus")}}:
</span>
<span
class=
"fz16 fbold"
>
<span
class=
"fz16 fbold"
>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"$t('salesModule.AllTk')"
placement=
"top"
>
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"$t('salesModule.AllTk')"
placement=
"top"
>
<span
style=
"color: #4bca81"
v-if=
"item.MakeInvoice == 1"
>
√
</span>
<span
style=
"color: #4bca81"
v-if=
"item.MakeInvoice == 1"
>
√
</span>
...
@@ -950,7 +943,6 @@
...
@@ -950,7 +943,6 @@
</el-button-group>
</el-button-group>
</div>
</div>
</div>
</div>
<div
class=
"d6"
>
<div
class=
"d6"
>
<el-popover
placement=
"right"
width=
"500"
trigger=
"click"
:content=
"item.ProductRecommend"
>
<el-popover
placement=
"right"
width=
"500"
trigger=
"click"
:content=
"item.ProductRecommend"
>
<span
style=
"
<span
style=
"
...
@@ -991,7 +983,6 @@
...
@@ -991,7 +983,6 @@
<
script
>
<
script
>
import
commonTeamInfo
from
"../commonPage/commonTeamInfo.vue"
;
import
commonTeamInfo
from
"../commonPage/commonTeamInfo.vue"
;
import
tripDownLoadCommon
from
"../commonPage/TripDownLoadCommon.vue"
;
import
tripDownLoadCommon
from
"../commonPage/TripDownLoadCommon.vue"
;
import
carousel
from
"../commonPage/carousel.vue"
;
import
commonHotelInfo
from
"../commonPage/commonHotelInfo.vue"
;
import
commonHotelInfo
from
"../commonPage/commonHotelInfo.vue"
;
import
orderForm
from
"./order-form2.vue"
;
import
orderForm
from
"./order-form2.vue"
;
export
default
{
export
default
{
...
@@ -1030,7 +1021,6 @@
...
@@ -1030,7 +1021,6 @@
orderForm
,
orderForm
,
commonTeamInfo
,
commonTeamInfo
,
tripDownLoadCommon
,
tripDownLoadCommon
,
carousel
,
commonHotelInfo
,
commonHotelInfo
,
},
},
filters
:
{
filters
:
{
...
...
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