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
7b26aca7
Commit
7b26aca7
authored
Jan 20, 2026
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
车产品类型
parent
4adf3ef3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
OrderList.vue
src/components/CarDealerOrder/components/OrderList.vue
+9
-0
ReservationOrder.vue
...components/CarDealerOrder/components/ReservationOrder.vue
+20
-0
No files found.
src/components/CarDealerOrder/components/OrderList.vue
View file @
7b26aca7
...
...
@@ -837,6 +837,15 @@
</el-table-column>
<el-table-column
:label=
"$t('objFill.caravanshopcol.t1')"
min-width=
"180"
style=
"background: #eaeaea"
>
<
template
slot-scope=
"scope"
>
<div
v-if=
"scope.row.ProductTypeName"
>
{{
scope
.
row
.
ProductTypeName
}}
</div>
<div
class=
"row wrap"
v-if=
"scope.row.CostIncludesName.length > 0"
>
<span
class=
"mr"
>
{{
$t
(
'sm.feiyongbaohan'
)
}}
:
</span>
<template
v-if=
"scope.row.CostIncludesName&&scope.row.CostIncludesName.length > 0"
>
<el-tag
size=
"mini"
v-for=
"(x,costIndex) in scope.row.CostIncludesName"
:key=
"costIndex"
class=
"mr"
>
{{
x
}}
</el-tag>
</
template
>
</div>
<div
v-if=
"scope.row.CarModel"
>
{{ scope.row.CarModel.CarName + "/" + scope.row.CarModel.CarNo }}
</div>
...
...
src/components/CarDealerOrder/components/ReservationOrder.vue
View file @
7b26aca7
...
...
@@ -169,6 +169,16 @@
</el-select>
</span>
</li>
<li>
<span>
<em>
{{
$t
(
'objFill.chanpinglx'
)
}}
</em>
<el-select
v-model=
"msg.ProductType"
@
change=
"handleCurrentChange(1)"
filterable
>
<el-option
:key=
"0"
:value=
"0"
:label=
"$t('OrderList.orderStatus.normal')"
></el-option>
<el-option
v-for=
"item in ProductTypeList"
:key=
"item.Id"
:label=
"item.Name"
:value=
"item.Id"
></el-option>
</el-select>
</span>
</li>
<li>
<span><em>
{{
$t
(
'Operation.Op_zhu'
)
}}{{
$t
(
'OrderList.search.orderId'
)
}}
</em>
<el-input
clearable
type=
"Number"
v-model=
"msg.MainId"
:placeholder=
"$t('objFill.orderid')"
...
...
@@ -279,6 +289,7 @@ export default {
MainId
:
null
,
OrderTCNUM
:
''
,
TCNUM
:
''
,
ProductType
:
0
,
},
total
:
0
,
currentPage
:
1
,
...
...
@@ -300,6 +311,7 @@ export default {
PostId
:
0
,
IsLeave
:
0
,
},
ProductTypeList
:
[],
};
},
watch
:
{
...
...
@@ -334,6 +346,13 @@ export default {
}
},
err
=>
{})
},
GetCarProductTypeEnumList
()
{
this
.
apipost
(
'JapanCar_get_GetCarProductTypeEnumList'
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
ProductTypeList
=
res
.
data
.
data
;
}
},
err
=>
{})
},
getDatesUse
()
{
if
(
this
.
DatelistUse
){
if
(
this
.
DatelistUse
[
0
])
{
...
...
@@ -516,6 +535,7 @@ export default {
this
.
GetList
();
this
.
initHotels
();
//酒店名称下拉
this
.
GetCarProductTypeEnumList
()
//自适应高度调节
this
.
com_onresize
();
window
.
onresize
=
()
=>
{
...
...
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