Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
516ceabd
Commit
516ceabd
authored
Jan 05, 2024
by
邓春圆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
分页 参数 调整
parent
bfea555a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
+9
-8
all-routes-list.vue
src/views/ecw/offer/all-routes-list.vue
+4
-4
airFreightRouteTemplate.vue
src/views/ecw/offer/components/airFreightRouteTemplate.vue
+5
-4
No files found.
src/views/ecw/offer/all-routes-list.vue
View file @
516ceabd
...
...
@@ -68,7 +68,7 @@
</el-table-column>
</el-table>
<!-- 分页组件 -->
<pagination
v-show=
"total > 0"
:total=
"total"
:page.sync=
"queryParams.page
No"
:limit.sync=
"queryParams.pageSize
"
<pagination
v-show=
"total > 0"
:total=
"total"
:page.sync=
"queryParams.page
"
:limit.sync=
"queryParams.rows
"
@
pagination=
"getList"
/>
</div>
</template>
...
...
@@ -109,8 +109,8 @@ export default {
channelList
:
[],
// 查询参数
queryParams
:
{
page
No
:
1
,
pageSize
:
10
,
page
:
1
,
rows
:
10
,
},
// 表单校验
...
...
@@ -169,7 +169,7 @@ export default {
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
page
No
=
1
;
this
.
queryParams
.
page
=
1
;
this
.
getList
();
},
}
...
...
src/views/ecw/offer/components/airFreightRouteTemplate.vue
View file @
516ceabd
...
...
@@ -19,7 +19,8 @@ export default {
total
:
0
,
form
:
{},
queryParams
:
{
pageSize
:
20
,
page
:
1
,
rows
:
10
,
transportType
:
3
,
startWarehouseIdList
:[],
destWarehouseIdList
:
[]
...
...
@@ -76,13 +77,13 @@ export default {
<template
#header
>
<el-form
inline
>
<el-form-item
label=
"始发地"
>
<el-select
v-model=
"queryParams.startWarehouseIdList"
@
change=
"getList()"
multiple
:placeholder=
"$t('请选择始发地')"
>
<el-select
v-model=
"queryParams.startWarehouseIdList"
@
change=
"
queryParams.page = 1;
getList()"
multiple
:placeholder=
"$t('请选择始发地')"
>
<el-option
v-for=
"item in exportWarehouseList"
:label=
"$l(item, 'title')"
:value=
"item.id"
:key=
"item.id"
></el-option>
</el-select>
</el-form-item>
<el-form-item
:label=
"$t('目的地')"
prop=
"destWarehouseId"
>
<el-select
@
change=
"getList()"
v-model=
"queryParams.destWarehouseIdList"
multiple
:placeholder=
"$t('请选择目的地')"
>
<el-select
@
change=
"
queryParams.page = 1;
getList()"
v-model=
"queryParams.destWarehouseIdList"
multiple
:placeholder=
"$t('请选择目的地')"
>
<el-option
v-for=
"item in importWarehouseList"
:label=
"$l(item, 'title')"
:value=
"item.id"
:key=
"item.id"
></el-option>
</el-select>
...
...
@@ -111,7 +112,7 @@ export default {
</
template
>
</el-table-column>
</el-table>
<pagination
v-show=
"total > 0"
:total=
"total"
:page.sync=
"queryParams.page
No"
:limit.sync=
"queryParams.pageSize
"
<pagination
v-show=
"total > 0"
:total=
"total"
:page.sync=
"queryParams.page
"
:limit.sync=
"queryParams.rows
"
@
pagination=
"getList"
/>
</el-card>
</el-dialog>
...
...
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