Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mayi-mp-shop
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
程默
mayi-mp-shop
Commits
904139af
Commit
904139af
authored
Apr 01, 2021
by
张卓
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
魔方导航兼容
parent
033b5557
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
37 additions
and
18 deletions
+37
-18
src/pages/home/index.vue
+12
-12
src/utils/fenxiaoModel.js
+4
-3
static/nativeComponents/AreaNavigation/index.js
+16
-2
static/nativeComponents/AreaNavigation/index.wxml
+1
-1
static/nativeComponents/AreaNavigation/index.wxss
+3
-0
static/nativeComponents/GetIndexHomePage/index.js
+1
-0
No files found.
src/pages/home/index.vue
View file @
904139af
...
...
@@ -235,18 +235,6 @@ export default {
})
//获取分销信息
this
.
getSpokesmanInit
(
options
)
}
else
{
let
footerVal
=
{...
app
.
globalData
.
footerVal
};
console
.
log
(
'"分销员中心"'
,
footerVal
)
if
(
footerVal
.
componentData
)
{
footerVal
.
componentData
.
list
.
forEach
(
res
=>
{
if
(
res
.
link
.
name
==
"分销员中心"
||
res
.
link
.
name
==
"分销商中心"
)
{
res
.
show
=
false
}
})
app
.
globalData
.
footerVal
=
footerVal
;
this
.
$mp
.
page
.
selectComponent
(
".custom-tab-bar"
).
init
();
}
}
// 来源
if
(
options
.
from
==
"logout"
)
{
...
...
@@ -347,6 +335,18 @@ export default {
this
.
$mp
.
page
.
selectComponent
(
".custom-tab-bar"
).
init
();
// that.applySucessEntry = res;
})
}
else
{
let
footerVal
=
{...
app
.
globalData
.
footerVal
};
console
.
log
(
'"分销员中心"'
,
footerVal
)
if
(
footerVal
.
componentData
)
{
footerVal
.
componentData
.
list
.
forEach
(
res
=>
{
if
(
res
.
link
.
name
==
"分销员中心"
||
res
.
link
.
name
==
"分销商中心"
)
{
res
.
show
=
false
}
})
app
.
globalData
.
footerVal
=
footerVal
;
this
.
$mp
.
page
.
selectComponent
(
".custom-tab-bar"
).
init
();
}
}
},
getSpokesmanInit
(
extConfig
)
{
...
...
src/utils/fenxiaoModel.js
View file @
904139af
...
...
@@ -13,7 +13,7 @@ class fenxiaoModel{
apply_for_withdraw
:
null
,
//关闭分销弹框
}
spokesmanInfo
=
null
;
//分销信息
applySucessEntry
=
null
;
//分销弹框信息
applySucessEntry
=
{}
;
//分销弹框信息
spokesmanidByShareInfo
=
null
;
//获取分享信息
distributorHomepageInfo
=
null
;
//小店详情
constructor
({
...
...
@@ -138,6 +138,7 @@ class fenxiaoModel{
res
.
data
.
data
!=
"null"
&&
res
.
data
.
data
!=
"false"
)
{
_this
.
applySucessEntry
=
res
.
data
.
data
;
resolve
(
res
.
data
.
data
)
}
else
{
reject
(
res
)
...
...
@@ -146,10 +147,10 @@ class fenxiaoModel{
})
}
//查询分销商货架
getDistributorHomepageGoodsList
()
{
getDistributorHomepageGoodsList
(
data
)
{
let
_this
=
this
return
new
Promise
(
function
(
resolve
,
reject
)
{
_this
.
fenxiaoApi
.
getDistributorHomepageGoodsList
().
then
(
res
=>
{
_this
.
fenxiaoApi
.
getDistributorHomepageGoodsList
(
data
).
then
(
res
=>
{
if
(
res
.
data
.
code
==
'200'
)
{
resolve
(
res
.
data
.
data
)
}
else
{
...
...
static/nativeComponents/AreaNavigation/index.js
View file @
904139af
...
...
@@ -23,7 +23,8 @@ Component({
changeShow
:
false
,
positionName
:
'定位中'
,
wxReady
:
false
,
designateAreaObj
:
null
designateAreaObj
:
null
,
showSpokesManHome
:
false
,
},
ready
(){
console
.
log
(
'++++++++++++++++++++定位组件加载好了++++++++++++++++++++'
)
...
...
@@ -36,7 +37,20 @@ Component({
this
.
setData
({
designateAreaObj
:
this
.
data
.
datas
.
componentData
.
designateAreaObj
})
//分销商货架存在
if
(
app
.
fenxiaoModel
.
spokesmanInfo
&&
app
.
fenxiaoModel
.
spokesmanInfo
.
parentSpokesmanDistributionModel
==
'1'
&&
app
.
fenxiaoModel
.
spokesmanInfo
.
distributorHomepage
.
id
)
{
this
.
setData
({
showSpokesManHome
:
true
})
}
else
{
this
.
setData
({
showSpokesManHome
:
false
})
}
console
.
log
(
this
.
data
.
datas
.
componentData
.
designateAreaObj
,
'2222'
)
if
(
!
wx
.
getStorageSync
(
'location'
))
{
...
...
static/nativeComponents/AreaNavigation/index.wxml
View file @
904139af
<!--static/nativeComponents/AreaNavigation/index.wxml-->
<van-sticky offset-top="44px" wx:if="{{datas.componentData.scrollPosition}}">
<view class="area-navigation clearfix" style="background-color:{{datas.componentData.backgroundColor}}">
<view class="area-navigation clearfix
{{showSpokesManHome?'area-navigation-margintop':''}}
" style="background-color:{{datas.componentData.backgroundColor}}">
<view style="width:100%;display:flex;">
<view class="area-l" style="font-size:{{datas.componentData.fontSize / 16 + 'em'}};color:{{datas.componentData.fontColor}};font-weight:{{datas.componentData.fontWeight}}" bindtap="changeOtherCity">
<view class="antt ant-gongsidizhi"></view>
...
...
static/nativeComponents/AreaNavigation/index.wxss
View file @
904139af
...
...
@@ -8,6 +8,9 @@
font-size: 32rpx;
top: 0;
}
.area-navigation-margintop {
padding-top: 100rpx;
}
.area-l{
line-height: 60rpx;
}
...
...
static/nativeComponents/GetIndexHomePage/index.js
View file @
904139af
...
...
@@ -97,6 +97,7 @@ const componentOptions = {
...
this
.
data
.
query
,
distributorHomepageId
:
this
.
spokesmanInfo
.
distributorHomepage
.
id
,
}
console
.
log
(
query
,
555555777777
)
app
.
fenxiaoModel
.
getDistributorHomepageGoodsList
(
query
).
then
(
res
=>
{
if
(
res
)
{
let
lists
=
[];
...
...
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