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
2444cdbc
Commit
2444cdbc
authored
Jun 18, 2020
by
zhangjianguo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
1f0a8398
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
address.vue
pages/address/address.vue
+1
-1
goods.vue
pages/goods/goods.vue
+5
-2
No files found.
pages/address/address.vue
View file @
2444cdbc
...
...
@@ -216,7 +216,7 @@ export default {
},
automatic
()
{
this
.
$refs
.
uToast
.
show
({
title
:
"
暂无开发此功能
"
title
:
"
正在开发,敬请期待!
"
});
},
ManualAdd
()
{
...
...
pages/goods/goods.vue
View file @
2444cdbc
...
...
@@ -120,7 +120,7 @@
<view
class=
"sku-box u-skeleton-rect"
v-if=
"setting.is_express == '1'"
>
<view
class=
"label"
>
快递
</view>
<view
class=
"content"
>
¥{{ g.express == "" ? "免运费" : g.express
}}
{{ g.express == "" ? "免运费" :('¥'+ g.express)
}}
</view>
</view>
<view
...
...
@@ -285,7 +285,9 @@ export default {
},
onLoad
(
option
)
{
this
.
opTionObj
=
option
;
console
.
log
(
option
)
if
(
option
&&
option
.
id
){
this
.
id
=
option
.
id
?
option
.
id
:
29
;
//40887 59512 46942
}
else
{
this
.
id
=
option
.
GoodsId
?
option
.
GoodsId
:
29
;
//40887 59512 46942
...
...
@@ -313,7 +315,7 @@ export default {
onShareAppMessage
(
res
)
{
return
{
title
:
this
.
g
.
app_share_title
!=
null
?
this
.
g
.
app_share_title
:
this
.
g
.
name
,
path
:
"/pages/goods/goods?id"
+
this
.
id
,
path
:
"/pages/goods/goods?id
=
"
+
this
.
id
,
imageUrl
:
this
.
g
.
app_share_pic
!=
null
?
this
.
g
.
app_share_pic
:
this
.
g
.
pic_url
[
0
].
pic_url
,
};
},
...
...
@@ -321,6 +323,7 @@ export default {
reloadUserinfo
()
{
this
.
u
=
uni
.
getStorageSync
(
'mall_UserInfo'
);
this
.
showAuth
=
false
;
this
.
init
();
this
.
initPage
();
},
...
...
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