Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mallapp
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
viitto
mallapp
Commits
952b3cdb
Commit
952b3cdb
authored
Jul 31, 2020
by
黄媛媛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
e0dc0867
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
2 deletions
+27
-2
refunds-list.vue
pages/order/after-sale/refunds-list.vue
+27
-2
No files found.
pages/order/after-sale/refunds-list.vue
View file @
952b3cdb
...
...
@@ -123,18 +123,21 @@
/>
</scroll-view>
</view>
<auth
v-if=
"showAuth"
@
changeuserinfo=
"reloadUserinfo"
@
gbAuth=
'goback'
></auth>
</view>
</template>
<
script
>
import
goodList
from
"@/components/goods/order-good-list2"
;
import
auth
from
"../../../components/auth/index.vue"
;
export
default
{
components
:
{
goodList
,
auth
,
},
data
()
{
return
{
mainColor
:
""
,
contentHeight
:
0
,
page
:
1
,
...
...
@@ -164,6 +167,8 @@ export default {
marginLeft
:
"20px"
,
padding
:
"0 30rpx"
,
},
showAuth
:
false
,
u
:
{},
};
},
created
()
{
...
...
@@ -179,12 +184,24 @@ export default {
},
onLoad
(
option
)
{
this
.
loading
=
true
;
},
onShow
(){
this
.
page
=
1
this
.
g
=
[]
this
.
loading
=
true
;
this
.
u
=
uni
.
getStorageSync
(
"mall_UserInfo"
);
if
(
!
this
.
u
)
{
this
.
u
=
{
nickName
:
"未登录"
,
avatarUrl
:
""
};
this
.
showAuth
=
true
;
}
else
{
this
.
init
();
}
},
methods
:
{
redirectToDetail
(
id
)
{
...
...
@@ -222,6 +239,14 @@ export default {
this
.
status
=
"nomore"
;
}
},
reloadUserinfo
()
{
this
.
u
=
uni
.
getStorageSync
(
"mall_UserInfo"
);
this
.
showAuth
=
false
;
this
.
getOrderStatus
();
},
goback
(){
uni
.
navigateBack
()
},
},
};
</
script
>
...
...
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