Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
H
hs-app-project
Project
Project
Details
Activity
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
李星剑
hs-app-project
Commits
f439748f
Commit
f439748f
authored
Feb 17, 2022
by
DongRuifen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
触底加载
parent
862bfe50
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
101 additions
and
80 deletions
+101
-80
fabricList.vue
src/pages/home/fabricList.vue
+101
-80
No files found.
src/pages/home/fabricList.vue
View file @
f439748f
<
template
>
<view
class=
""
>
<u-navbar
:is-back=
"true"
:custom-back=
"backPush"
:background=
"
{ backgroundColor: '#F5F5F5' }" title="我的面料">
</u-navbar>
<u-navbar
:is-back=
"true"
:custom-back=
"backPush"
:background=
"
{ backgroundColor: '#F5F5F5' }" title="我的面料">
</u-navbar>
<view
class=
"content background_fff u-p-30"
>
<!-- 正文内容 -->
<u-sticky
offset-top=
"15"
>
<u-search
@
search=
"searchCli"
class=
""
bg-color=
"#fff"
border-color=
"#ececec"
placeholder=
"请输入面料名称"
:show-action=
"false"
v-model=
"search"
></u-search>
<u-search
@
search=
"searchCli"
class=
""
bg-color=
"#fff"
border-color=
"#ececec"
placeholder=
"请输入面料名称"
:show-action=
"false"
v-model=
"search"
></u-search>
</u-sticky>
<view>
<view
class=
"u-m-t-30"
>
...
...
@@ -18,87 +20,106 @@
</
template
>
<
script
>
import
home
from
'./mixin/index.js'
import
fabricTitle
from
"./components/fabricTitle.vue"
export
default
{
mixins
:[
home
],
components
:{
fabricTitle
},
data
()
{
return
{
size
:
10
,
search
:
''
,
fiabricList
:
[],
// dataList:[],
total
:
0
};
},
onLoad
()
{
this
.
materialList
();
// this.$http("category.query", {}).then(res => {
// let {
// code,
// data
// } = res;
// if (code === 200) {
// this.dataList = data;
// }
// })
},
// 上拉加载更多
onReachBottom
()
{
// console,log("jiazai")
if
(
this
.
total
>
this
.
fiabricList
.
length
)
{
this
.
size
=
this
.
size
+
5
;
this
.
materialList
();
}
},
methods
:
{
searchCli
()
{
// this.size = 5;
import
home
from
'./mixin/index.js'
import
fabricTitle
from
"./components/fabricTitle.vue"
export
default
{
mixins
:
[
home
],
components
:
{
fabricTitle
},
data
()
{
return
{
size
:
10
,
search
:
''
,
fiabricList
:
[],
// dataList:[],
total
:
0
,
current
:
1
,
isLoad
:
false
,
};
},
onLoad
()
{
this
.
materialList
();
// this.$http("category.query", {}).then(res => {
// let {
// code,
// data
// } = res;
// if (code === 200) {
// this.dataList = data;
// }
// })
},
// 我的面料
materialList
()
{
// this.$http('orderTicket.materialList', {
// size: this.size,
// materialCode: '',
// materialName: this.search
// }).then(res => {
// let { code, data } = res;
// if (code == 200) {
// this.fiabricList = data.data;
// this.total = data.total;
// }
// });
this
.
$http
(
'materialinfo.getMaterialList'
,
{
size
:
this
.
size
,
materialCode
:
''
,
"current"
:
1
,
"materialType"
:
"面料"
,
codeAndName
:
this
.
search
}).
then
(
res
=>
{
let
{
code
,
data
}
=
res
;
if
(
code
==
200
)
{
this
.
fiabricList
=
data
.
page
.
records
;
this
.
total
=
data
.
page
.
total
;
}
});
// 上拉加载更多
onReachBottom
()
{
// console,log("jiazai")
if
(
this
.
total
>
this
.
fiabricList
.
length
)
{
// this.size = this.size + 5;
this
.
current
+=
1
this
.
materialList
();
}
},
backPush
(){
this
.
$Router
.
push
({
path
:
"/pages/home/index"
,
// query: {
// id: this.id
// }
})
}
}
};
methods
:
{
searchCli
()
{
// this.size = 5;
this
.
current
=
1
this
.
isLoad
=
true
this
.
materialList
();
},
// 我的面料
materialList
()
{
// this.$http('orderTicket.materialList', {
// size: this.size,
// materialCode: '',
// materialName: this.search
// }).then(res => {
// let { code, data } = res;
// if (code == 200) {
// this.fiabricList = data.data;
// this.total = data.total;
// }
// });
this
.
$http
(
'materialinfo.getMaterialList'
,
{
size
:
this
.
size
,
materialCode
:
''
,
"current"
:
this
.
current
,
"materialType"
:
"面料"
,
codeAndName
:
this
.
search
}).
then
(
res
=>
{
let
{
code
,
data
}
=
res
;
if
(
code
==
200
)
{
// 搜索
if
(
this
.
isLoad
)
{
console
.
log
(
"load"
)
this
.
fiabricList
=
[]
this
.
fiabricList
=
data
.
page
.
records
;
this
.
isLoad
=
false
}
else
{
this
.
fiabricList
=
this
.
fiabricList
.
concat
(
data
.
page
.
records
);
}
this
.
total
=
data
.
page
.
total
;
}
});
},
backPush
()
{
this
.
$Router
.
push
({
path
:
"/pages/home/index"
,
// query: {
// id: this.id
// }
})
}
}
};
</
script
>
<
style
scoped
lang=
"scss"
>
.background_fff
{
background
:
#fff
;
}
</
style
>
.background_fff
{
background
:
#fff
;
}
</
style
>
\ 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