Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform-ui
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
youjj
cloud-platform-ui
Commits
a34b50f2
Commit
a34b50f2
authored
Jul 22, 2019
by
jiaorz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单管理详细
parent
11c6454f
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
768 additions
and
95 deletions
+768
-95
rentVehicle.js
src/api/order/rentVehicle.js
+27
-1
index.vue
src/views/order/memberOrderInfo/index.vue
+5
-5
index.vue
src/views/order/rentVehicleInfo/index.vue
+475
-43
index.vue
src/views/order/tourOrderInfo/index.vue
+261
-46
No files found.
src/api/order/rentVehicle.js
View file @
a34b50f2
...
...
@@ -6,4 +6,30 @@ export function page(query) {
method
:
'get'
,
params
:
query
});
}
\ No newline at end of file
}
/**
* 获取所有分公司
*/
export
function
getAllBranchCompany
()
{
return
fetch
({
url
:
'/vehicle/branchCompany'
,
method
:
'get'
});
}
//根据大区Id获取分公司列表
export
function
getAllBranchCompanyByZoneId
(
query
)
{
return
fetch
({
url
:
'/vehicle/branchCompany/app/unauth/getByZone'
,
method
:
'get'
,
params
:
query
});
}
export
function
getOrderVehicleCrosstown
(
query
)
{
return
fetch
({
url
:
'/api/order/orderVehicle/getByOrderId'
,
method
:
'get'
,
params
:
query
});
}
src/views/order/memberOrderInfo/index.vue
View file @
a34b50f2
...
...
@@ -13,7 +13,7 @@
<el-input
v-model=
"listQuery.phone"
placeholder=
"请输入手机号"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
8
"
>
<el-col
:span=
"
5
"
>
<el-form-item
label=
"状态"
>
<el-select
class=
"filter-item"
v-model=
"listQuery.status"
placeholder=
"请选择状态"
>
<el-option
:key=
"null"
label=
"无"
:value=
"null"
></el-option>
...
...
@@ -24,14 +24,14 @@
</el-select>
</el-form-item>
</el-col>
<el-col>
<!--
<el-col>
<el-form-item
label=
"时间"
>
<el-date-picker
v-model=
"listQuery.startTime"
type =
"date"
placeholder =
"请输入开始时间"
></el-date-picker>
<span>
——
</span>
<el-date-picker
v-model=
"listQuery.endTime"
type =
"date"
placeholder =
"请输入结束时间"
></el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"
8
"
>
</el-col>
-->
<el-col
:span=
"
5
"
>
<el-form-item
label=
"会员类型"
>
<el-select
class=
"filter-item"
v-model=
"listQuery.name"
placeholder=
"请选择会员类型"
>
<el-option
:key=
"null"
label=
"无"
:value=
"null"
></el-option>
...
...
@@ -67,7 +67,7 @@
</el-table-column>
<el-table-column
width=
"150"
align=
"center"
label=
"用户名"
>
<
template
scope=
"scope"
>
<span>
{{
scope
.
row
.
usernam
e
}}
</span>
<span>
{{
scope
.
row
.
telephon
e
}}
</span>
</
template
>
</el-table-column>
<el-table-column
width=
"110"
align=
"center"
label=
"商品价格"
>
...
...
src/views/order/rentVehicleInfo/index.vue
View file @
a34b50f2
This diff is collapsed.
Click to expand it.
src/views/order/tourOrderInfo/index.vue
View file @
a34b50f2
This diff is collapsed.
Click to expand it.
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