Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
7
7-Eleven
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
高淑倩
7-Eleven
Commits
2a005e2a
Commit
2a005e2a
authored
Feb 18, 2020
by
谢中龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导购隐藏分享
parent
8af70cf2
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
23 additions
and
8 deletions
+23
-8
index.js
src/config/index.js
+2
-2
project.config.json
src/project.config.json
+1
-1
achievement.js
src/shoppingGuid/page/pages/achievement/achievement.js
+1
-0
couponQrcode.js
src/shoppingGuid/page/pages/couponQrcode/couponQrcode.js
+1
-0
couponWriteOff.js
src/shoppingGuid/page/pages/couponWriteOff/couponWriteOff.js
+1
-0
enlistInfo.js
src/shoppingGuid/page/pages/enlistInfo/enlistInfo.js
+1
-1
guidCollegeInfo.js
...hoppingGuid/page/pages/guidCollegeInfo/guidCollegeInfo.js
+1
-0
home.js
src/shoppingGuid/page/pages/home/home.js
+1
-0
kpi.js
src/shoppingGuid/page/pages/kpi/kpi.js
+1
-0
moreCoupons.js
src/shoppingGuid/page/pages/moreCoupons/moreCoupons.js
+1
-0
moreProducts.js
src/shoppingGuid/page/pages/moreProducts/moreProducts.js
+1
-0
myMemberList.js
src/shoppingGuid/page/pages/myMemberList/myMemberList.js
+1
-0
openCard.js
src/shoppingGuid/page/pages/openCard/openCard.js
+1
-1
qrcode.js
src/shoppingGuid/page/pages/qrcode/qrcode.js
+1
-0
saleTaskInfo.js
src/shoppingGuid/page/pages/saleTaskInfo/saleTaskInfo.js
+1
-1
selectUsers.js
src/shoppingGuid/page/pages/selectUsers/selectUsers.js
+1
-0
taskNotice.js
src/shoppingGuid/page/pages/taskNotice/taskNotice.js
+1
-0
userInfo.js
src/shoppingGuid/page/pages/userInfo/userInfo.js
+1
-0
userList.js
src/shoppingGuid/page/pages/userList/userList.js
+1
-1
welcomGuider.js
src/shoppingGuid/page/pages/welcomGuider/welcomGuider.js
+1
-0
valueCardInfo.wxml
src/subPackage/page/pages/valueCardInfo/valueCardInfo.wxml
+1
-1
valueCardInfo.wxss
src/subPackage/page/pages/valueCardInfo/valueCardInfo.wxss
+1
-0
No files found.
src/config/index.js
View file @
2a005e2a
...
...
@@ -6,14 +6,14 @@
// 修改 BRANCH_ID 为对应的商户id
// app.js 中brandId 修改为对应
const
PROJECT_ENV
=
'
test
'
// 生产 prod, 开发 dev, 测试 test , 测试门户 test_store, 预生产 pre
const
PROJECT_ENV
=
'
prod
'
// 生产 prod, 开发 dev, 测试 test , 测试门户 test_store, 预生产 pre
//仅生产环境时 配置 :
//3001 3001 ,
//泰华 2006 ,
//多多一上 2007 ,
//雪岛书屋 2008
//苏州邻里 2003
const
BRANCH_ID
=
1002
const
BRANCH_ID
=
3001
const
isMall
=
true
const
needMock
=
''
//
...
...
src/project.config.json
View file @
2a005e2a
...
...
@@ -13,7 +13,7 @@
},
"compileType"
:
"miniprogram"
,
"libVersion"
:
"2.8.2"
,
"appid"
:
"wx
ac09792264c49b5c
"
,
"appid"
:
"wx
313ec36b710125d4
"
,
"projectname"
:
"%E5%BE%AE%E5%95%86%E5%9F%8E"
,
"debugOptions"
:
{
"hidedInDevtools"
:
[]
...
...
src/shoppingGuid/page/pages/achievement/achievement.js
View file @
2a005e2a
...
...
@@ -76,6 +76,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
let
currentUserInfo
=
wx
.
getStorageSync
(
'guidBaseInfo'
);
if
(
!
currentUserInfo
)
{
//未登录成功
wx
.
redirectTo
({
...
...
src/shoppingGuid/page/pages/couponQrcode/couponQrcode.js
View file @
2a005e2a
...
...
@@ -17,6 +17,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
let
couponInfo
=
wx
.
getStorageSync
(
'_guidCouponInfo'
);
this
.
setData
({
couponInfo
:
couponInfo
,
...
...
src/shoppingGuid/page/pages/couponWriteOff/couponWriteOff.js
View file @
2a005e2a
...
...
@@ -19,6 +19,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
let
param
=
options
.
id
;
if
(
param
){
this
.
getCurrentStoreId
();
...
...
src/shoppingGuid/page/pages/enlistInfo/enlistInfo.js
View file @
2a005e2a
...
...
@@ -13,7 +13,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
},
/**
...
...
src/shoppingGuid/page/pages/guidCollegeInfo/guidCollegeInfo.js
View file @
2a005e2a
...
...
@@ -13,6 +13,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
let
id
=
options
.
id
;
this
.
getCollegeInfo
(
id
);
},
...
...
src/shoppingGuid/page/pages/home/home.js
View file @
2a005e2a
...
...
@@ -53,6 +53,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
console
.
log
(
'guidBaseInfo----'
,
wx
.
getStorageSync
(
'guidBaseInfo'
))
this
.
getCouponList
();
this
.
getGoodsList
();
...
...
src/shoppingGuid/page/pages/kpi/kpi.js
View file @
2a005e2a
...
...
@@ -24,6 +24,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
const
{
pageSize
,
pageNo
,
current
}
=
this
.
data
this
.
getTaskPage
(
pageSize
,
pageNo
,
current
)
},
...
...
src/shoppingGuid/page/pages/moreCoupons/moreCoupons.js
View file @
2a005e2a
...
...
@@ -33,6 +33,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
let
type
=
options
.
type
;
if
(
type
){
this
.
data
.
coupon
.
currentCouponType
=
type
;
...
...
src/shoppingGuid/page/pages/moreProducts/moreProducts.js
View file @
2a005e2a
...
...
@@ -30,6 +30,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
let
type
=
options
.
type
;
if
(
type
)
{
this
.
data
.
goods
.
currentGoodsType
=
type
;
...
...
src/shoppingGuid/page/pages/myMemberList/myMemberList.js
View file @
2a005e2a
...
...
@@ -17,6 +17,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
this
.
getMemberList
();
},
...
...
src/shoppingGuid/page/pages/openCard/openCard.js
View file @
2a005e2a
...
...
@@ -18,7 +18,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
},
/**
...
...
src/shoppingGuid/page/pages/qrcode/qrcode.js
View file @
2a005e2a
...
...
@@ -42,6 +42,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
const
currentEnv
=
wx
.
getStorageSync
(
'_qyWeChat'
);
if
(
currentEnv
)
{
this
.
getEnterpriseQrcode
();
...
...
src/shoppingGuid/page/pages/saleTaskInfo/saleTaskInfo.js
View file @
2a005e2a
...
...
@@ -14,7 +14,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
},
/**
...
...
src/shoppingGuid/page/pages/selectUsers/selectUsers.js
View file @
2a005e2a
...
...
@@ -25,6 +25,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
// 一进来先获取一下自动标签的数据
this
.
getMemberTagGroups
();
},
...
...
src/shoppingGuid/page/pages/taskNotice/taskNotice.js
View file @
2a005e2a
...
...
@@ -14,6 +14,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
let
id
=
options
.
id
,
type
=
options
.
type
;
this
.
getTaskInfo
(
id
,
type
);
...
...
src/shoppingGuid/page/pages/userInfo/userInfo.js
View file @
2a005e2a
...
...
@@ -40,6 +40,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
let
memberId
=
options
.
id
;
this
.
data
.
memberId
=
memberId
;
this
.
getMemberFind
(
memberId
);
...
...
src/shoppingGuid/page/pages/userList/userList.js
View file @
2a005e2a
...
...
@@ -15,7 +15,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
console
.
log
(
options
)
wx
.
hideShareMenu
();
let
tagId
=
Integer
.
digit
(
options
.
id
,
64
,
10
),
groupId
=
Integer
.
digit
(
options
.
groupId
,
64
,
10
),
type
=
options
.
type
,
...
...
src/shoppingGuid/page/pages/welcomGuider/welcomGuider.js
View file @
2a005e2a
...
...
@@ -18,6 +18,7 @@ wxService.page({
* 生命周期函数--监听页面加载
*/
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
();
const
currentEnv
=
wx
.
getStorageSync
(
'_qyWeChat'
);
if
(
!
currentEnv
){
wx
.
showToast
({
...
...
src/subPackage/page/pages/valueCardInfo/valueCardInfo.wxml
View file @
2a005e2a
<!--subPackage/page/pages/valueCardInfo/valueCardInfo.wxml-->
<image src='{{valueCardInfo.
list
Url}}' class='card-info' mode='widthFix'></image>
<image src='{{valueCardInfo.
info
Url}}' class='card-info' mode='widthFix'></image>
<view class='card-info-body'>
<view class='card-title'>{{valueCardInfo.activityName}}</view>
<view class='card-desc-item' wx:if="{{valueCardInfo.hasDate}}">
...
...
src/subPackage/page/pages/valueCardInfo/valueCardInfo.wxss
View file @
2a005e2a
...
...
@@ -51,6 +51,7 @@ view{
.card-desc-item .rg .list-item{
margin-bottom: 8rpx;
white-space: pre-line;
}
.bottom-buy{
...
...
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