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
5fc05a8f
Commit
5fc05a8f
authored
Jul 28, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
8b184350
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
33 deletions
+32
-33
ListCar.vue
src/components/Hotel/singleProduct/components/ListCar.vue
+23
-24
list.vue
src/components/busManagement/BookAcar/list.vue
+9
-9
No files found.
src/components/Hotel/singleProduct/components/ListCar.vue
View file @
5fc05a8f
<
template
>
<div>
<div
class=
"ListCar-form"
></div>
<div
class=
"ListCar-form"
></div>
<div
class=
"ListCar-form-box"
>
<div
class=
"ListCar-box"
>
<div
class=
"normalBtn ListCar-close"
@
click=
"close"
>
...
...
@@ -9,9 +9,9 @@
<div
class=
"row-JCSB ListCar-header paddinglr15"
>
<span
class=
"fz16 fbold"
>
酒店采购单
</span>
<div
class=
"ListCar-header-right fz12"
>
本次行程
本次行程
<span
class=
"colore65100"
>
{{
cars
&&
cars
.
length
}}
</span>
天,入住
天,入住
<span
class=
"color009ef7"
>
{{
HotelLength
}}
</span>
個酒店
</div>
...
...
@@ -22,7 +22,7 @@
<div
class=
"list-content-box"
v-for=
"(y,i) in x.Hotels"
>
<div
class=
"list-operation"
>
<div>
<button
v-if=
"x.Date>=OptionalTime"
class=
"hollowFixedBtn"
type=
"primary"
@
click=
"setEditorHandler(y)"
>
<i
class=
"el-icon-edit"
></i>
</button>
...
...
@@ -55,9 +55,9 @@
<el-col
:span=
"7"
class=
"row-JCE"
>
<span>
小计:
{{
moneyFormat
(
z
.
Unit_Price
*
z
.
PeopleNumber
)
}}
</span>
</el-col>
</el-row>
</el-row>
</div>
</div>
<div
class=
"row-JCE color009ef7 fz14 list-content-num"
>
<span>
合计:
{{
moneyFormat
(
y
.
Money
)
}}
</span>
...
...
@@ -67,7 +67,7 @@
</div>
<div
v-if=
"cars.length==0"
style=
"text-align: center;padding: 20px 0;"
>
暂无数据
</div>
</div>
<div
class=
"ListCar-bottom"
v-if=
"cars.length>0"
>
<div
v-if=
"crmOrderObj"
style=
"margin-bottom: 10px;"
>
<span
style=
"color: red;"
>
引流人:
{{
crmOrderObj
.
LureEmpNmae
}}
</span>
...
...
@@ -79,30 +79,30 @@
<el-form-item
label=
"类型"
prop=
"OrderType"
>
<el-select
v-model=
"parameters.OrderType"
>
<el-option
v-for=
"item in cacheHotels"
:key=
"item.ID"
:label=
"item.Name"
:value=
"item.ID"
></el-option>
</el-select>
</el-select>
</el-form-item>
</el-col>
<template
v-if=
"parameters.OrderType==1"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"姓名"
prop=
"ContactName"
>
<el-input
v-model=
"parameters.ContactName"
></el-input>
<el-input
v-model=
"parameters.ContactName"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"电话"
prop=
"
ContactNumber
"
>
<el-input
v-model=
"parameters.ContactNumber"
></el-input>
<el-form-item
label=
"电话"
prop=
""
>
<el-input
v-model=
"parameters.ContactNumber"
></el-input>
</el-form-item>
</el-col>
</
template
>
<el-col
:span=
"12"
v-else
>
<el-form-item
label=
"团号"
prop=
"TCNum"
>
<el-input
v-model=
"parameters.TCNum"
></el-input>
<el-input
v-model=
"parameters.TCNum"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"备注"
prop=
""
>
<el-input
type=
"textarea"
:rows=
"1"
placeholder=
"请输入备注"
v-model=
"parameters.Remark"
></el-input>
placeholder=
"请输入备注"
v-model=
"parameters.Remark"
></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -218,7 +218,7 @@
},
parameters
:
{
handler
:
function
(
val
,
oldVal
)
{
},
deep
:
true
}
...
...
@@ -235,8 +235,8 @@
this
.
HotelLength
=
localStorage
.
getItem
(
"HotelLength"
)
},
mounted
()
{
},
methods
:
{
// 关闭购物车
...
...
@@ -275,7 +275,7 @@
this
.
parameters
.
DetailList
.
push
(
y
)
})
})
this
.
apipost
(
"dict_post_SetSaleCustomerOrder"
,
this
.
parameters
,
res
=>
{
this
.
loading
=
false
;
...
...
@@ -292,7 +292,7 @@
}
},
err
=>
{
this
.
Error
(
err
.
message
)
this
.
Error
(
err
.
message
)
this
.
loading
=
false
}
);
...
...
@@ -326,9 +326,9 @@
}
}
};
</
script
>
<
style
scoped
>
.fz12
{
font-size
:
12px
;
...
...
@@ -349,7 +349,7 @@
font-size
:
18px
;
}
.fbold
{
font-weight
:
bold
;
font-weight
:
bold
;
}
.paddinglr15
{
padding
:
0
15px
;
...
...
@@ -501,7 +501,6 @@
.bottom-num
{
align-items
:
center
;
}
</
style
>
\ No newline at end of file
src/components/busManagement/BookAcar/list.vue
View file @
5fc05a8f
...
...
@@ -181,7 +181,7 @@
</span>
</li>
<li><span><em>
日期
</em>
<el-date-picker
v-model=
'msg.Q_Date'
format=
"yyyy-MM-dd"
value-format=
"yyyy-MM-dd"
type=
"date"
<el-date-picker
v-model=
'msg.Q_Date'
format=
"yyyy-MM-dd"
value-format=
"yyyy-MM-dd"
type=
"date"
:picker-options=
"beforeCheck"
laceholder=
"预约日期"
>
</el-date-picker>
</span>
...
...
@@ -219,7 +219,8 @@
<div
:style=
"
{'height':tableHeight+'px'}" style="overflow: auto;" v-loading="loading">
<div
v-if=
"ViewType==1"
class=
"listone-box"
>
<div
class=
"listone-form"
v-for=
"(x,index) in tableData"
:key=
"index"
>
<el-image
v-if=
"x.ImageList"
class=
"listone-img"
:src=
"x.ImageList[0]"
fit=
"contain"
>
<el-image
v-if=
"x.ImageList"
class=
"listone-img"
:src=
"x.ImageList[0]"
fit=
"cover"
style=
"max-height: 110px;"
>
<div
slot=
"placeholder"
class=
"image-slot"
>
<span>
加载中
<span
class=
"dot"
>
...
</span>
...
...
@@ -369,7 +370,7 @@
msg
,
res
=>
{
this
.
AirportList
=
res
.
data
.
data
},
err
=>
{}
);
...
...
@@ -390,7 +391,7 @@
this
.
cityList
.
push
(
x
)
})
})
},
err
=>
{}
);
...
...
@@ -445,7 +446,7 @@
var
w
=
clientWidth
;
this
.
getList
()
},
},
mounted
()
{
// crm自动登陆传过来的参数
...
...
@@ -462,11 +463,10 @@
this
.
com_onresize
();
}
if
(
this
.
$route
.
query
)
{
}
}
};
</
script
>
\ No newline at end of file
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