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
2d7699b1
Commit
2d7699b1
authored
Aug 28, 2019
by
赵雅纹
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature-zyw-sc' into 'dev_7.1.0'
Feature zyw sc See merge request
!91
parents
3d188f77
8da4a77b
Show whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
198 additions
and
45 deletions
+198
-45
cardModal.js
src/component/cardModal/cardModal.js
+5
-1
cardModal.wxml
src/component/cardModal/cardModal.wxml
+1
-1
sharePoster.js
src/component/sharePoster/sharePoster.js
+7
-2
uploadImg.js
src/component/uploadImg/uploadImg.js
+1
-1
category.js
src/pages/category/category.js
+18
-2
myShare.js
src/pages/myShare/myShare.js
+8
-3
myShare.json
src/pages/myShare/myShare.json
+1
-1
myShare.wxml
src/pages/myShare/myShare.wxml
+1
-1
productDetail.js
src/pages/productDetail/productDetail.js
+51
-1
productDetail.json
src/pages/productDetail/productDetail.json
+3
-1
productDetail.wxml
src/pages/productDetail/productDetail.wxml
+4
-1
refund.js
src/pages/refund/refund.js
+8
-3
userCenter.js
src/pages/userCenter/userCenter.js
+24
-0
wantToBuyDetail.js
src/pages/wantToBuyDetail/wantToBuyDetail.js
+7
-8
wantToBuyDetail.json
src/pages/wantToBuyDetail/wantToBuyDetail.json
+1
-1
wantToBuyDetail.wxml
src/pages/wantToBuyDetail/wantToBuyDetail.wxml
+1
-1
categoryPro.js
src/subPackage/page/pages/categoryPro/categoryPro.js
+20
-2
fun.js
src/subPackage/page/pages/fun/fun.js
+19
-2
myRelease.js
src/subPackage/page/pages/myRelease/myRelease.js
+6
-1
myRelease.wxml
src/subPackage/page/pages/myRelease/myRelease.wxml
+1
-1
myReleaseDetail.js
src/subPackage/page/pages/myReleaseDetail/myReleaseDetail.js
+9
-9
myReleaseDetail.wxml
...ubPackage/page/pages/myReleaseDetail/myReleaseDetail.wxml
+2
-2
No files found.
src/component/cardModal/cardModal.js
View file @
2d7699b1
...
...
@@ -19,7 +19,11 @@ Component({
cardUrl
:
{
type
:
String
,
value
:
''
}
},
pagePath
:
{
type
:
String
,
value
:
''
},
},
/**
...
...
src/component/cardModal/cardModal.wxml
View file @
2d7699b1
...
...
@@ -18,6 +18,6 @@
<view class="quick-share" bindtap="gotoPoster" hidden='{{!showCardModal}}'>
生成朋友圈海报
</view>
<share-poster id="getPoster" bindmyevent="myEventListener" avater="{{cardUrl}}" productDesc="{{cardTitle}}" userAvatar="http://t2.hddhhn.com/uploads/tu/201806/9999/91480c0c87.jpg" bind:showMiniCard="_showMiniCard"></share-poster>
<share-poster id="getPoster" bindmyevent="myEventListener" avater="{{cardUrl}}" productDesc="{{cardTitle}}" userAvatar="http://t2.hddhhn.com/uploads/tu/201806/9999/91480c0c87.jpg" bind:showMiniCard="_showMiniCard"
pagePath="{{pagePath}}"
></share-poster>
src/component/sharePoster/sharePoster.js
View file @
2d7699b1
...
...
@@ -18,6 +18,10 @@ Component({
userAvatar
:
{
// 头像
type
:
String
,
value
:
''
},
pagePath
:{
type
:
String
,
value
:
''
}
},
/**
...
...
@@ -95,11 +99,12 @@ Component({
let
data
=
{
"autoColor"
:
true
,
"page"
:
'pages/index/index'
,
"scene"
:
'
qwe
'
,
"page"
:
this
.
data
.
pagePath
,
"scene"
:
'
123
'
,
"width"
:
100
}
console
.
log
(
'---'
,
this
.
data
.
pagePath
)
wxService
.
post
(
`/merchant/contentMobileTerminal/getAppletQrCode`
,
data
).
then
(
res
=>
{
const
{
result
,
data
}
=
res
.
data
if
(
result
==
0
){
...
...
src/component/uploadImg/uploadImg.js
View file @
2d7699b1
...
...
@@ -91,7 +91,7 @@ Component({
// 'params.sspList': this.data.params.sspList
// })
wxService
.
nextTick
(()
=>
{
that
.
triggerEvent
(
'_uploadImg'
,
img
)
that
.
triggerEvent
(
'_uploadImg'
,
img
.
url
)
})
}
},
...
...
src/pages/category/category.js
View file @
2d7699b1
// pages/category/category.js
const
wxService
=
require
(
'../../utils/wxService'
)
import
{
Integer
}
from
'../../utils/integerDigitalConvertion'
wxService
.
page
({
...
...
@@ -113,7 +114,21 @@ wxService.page({
/**
* 用户点击右上角分享
*/
onShareAppMessage
:
function
()
{
onShareAppMessage
:
function
(
res
)
{
let
tentacleInfo
=
{
content
:
this
.
route
,
title
:
this
.
route
,
contentType
:
3
,
type
:
3
// 1:门店,2:员工(暂时不做),3:会员,4:第三方外部渠道,5:智能营销
};
wxService
.
getTentacleContent
(
tentacleInfo
).
then
(
res
=>
{
if
(
res
&&
res
.
tentacleId
)
{
let
tentacleId
=
Integer
.
digit
(
res
.
tentacleId
,
10
,
64
);
var
path
=
`pages/category/category?t=
${
tentacleId
}
`
;
return
{
path
:
path
}
}
});
}
})
\ No newline at end of file
src/pages/myShare/myShare.js
View file @
2d7699b1
...
...
@@ -20,6 +20,7 @@ wxService.page({
showCardModal
:
false
,
cardTitle
:
''
,
cardUrl
:
''
,
pagePath
:
''
,
contentList
:[],
currentShareContent
:
null
},
...
...
@@ -55,10 +56,10 @@ wxService.page({
wxService
.
post
(
`/merchant/contentMobileTerminal/gatClassify`
).
then
(
res
=>
{
if
(
!
res
)
return
false
const
{
result
,
data
}
=
res
.
data
if
(
result
==
0
)
{
if
(
result
==
0
)
{
this
.
setData
({
categoryList
:
data
,
currentTab
:
data
[
0
].
id
currentTab
:
data
[
0
].
id
})
this
.
getContentList
(
data
[
0
].
id
)
...
...
@@ -149,10 +150,14 @@ wxService.page({
wxService
.
getTentacleContent
(
tentacleInfo
).
then
(
res
=>
{
if
(
res
&&
res
.
tentacleId
){
this
.
data
.
currentShareContent
.
tentacleId
=
res
.
tentacleId
;
let
id
=
Integer
.
digit
(
this
.
data
.
currentShareContent
.
id
,
10
,
64
);
let
tentacleId
=
Integer
.
digit
(
this
.
data
.
currentShareContent
.
tentacleId
,
10
,
64
);
var
path
=
'pages/wantToBuyDetail/wantToBuyDetail?i='
+
id
+
'&t='
+
tentacleId
;
this
.
setData
({
showCardModal
:
true
,
cardTitle
:
e
.
detail
.
title
,
cardUrl
:
e
.
detail
.
url
cardUrl
:
e
.
detail
.
url
,
pagePath
:
path
});
}
})
...
...
src/pages/myShare/myShare.json
View file @
2d7699b1
{
"navigationBarTitleText"
:
"
发现
"
,
"navigationBarTitleText"
:
""
,
"enablePullDownRefresh"
:
true
,
"usingComponents"
:
{
"water-flow-layout"
:
"/component/waterFlowLayout/waterFlowLayout"
,
...
...
src/pages/myShare/myShare.wxml
View file @
2d7699b1
...
...
@@ -15,7 +15,7 @@
</view>
</scroll-view>
</view>
<card-modal show-card-modal="{{showCardModal}}" card-title="{{cardTitle}}" card-url="{{cardUrl}}"/>
<card-modal show-card-modal="{{showCardModal}}" card-title="{{cardTitle}}" card-url="{{cardUrl}}"
page-path="{{pagePath}}"
/>
...
...
src/pages/productDetail/productDetail.js
View file @
2d7699b1
...
...
@@ -19,7 +19,9 @@ wxService.page({
swiperCurrent
:
0
,
selectSkuName
:
''
,
openPlusStatus
:
false
,
memberLevel
:
false
memberLevel
:
false
,
showCardModal
:
false
,
currentShareContent
:
null
},
/**
...
...
@@ -49,12 +51,46 @@ wxService.page({
// xm_bi.Event.stat("skuAddToCart", { "amount":"666","skuId":'abcd1234'});
},
// 分享
onTapShare
()
{
let
content
=
{
headline
:
this
.
data
.
productInfo
.
headline
,
id
:
this
.
data
.
productInfo
.
id
,
article
:
this
.
data
.
productInfo
.
article
,
url
:
this
.
data
.
productInfo
.
url
}
let
tentacleInfo
=
{
content
:
JSON
.
stringify
(
content
),
contentId
:
this
.
data
.
productInfo
.
id
,
contentType
:
2
,
//内容类型 1.文章 2.商品 3.页面
title
:
this
.
data
.
productInfo
.
headline
,
//标题
type
:
3
// 1:门店,2:员工(暂时不做),3:会员,4:第三方外部渠道,5:智能营销
}
this
.
data
.
currentShareContent
=
this
.
data
.
productInfo
;
wxService
.
getTentacleContent
(
tentacleInfo
).
then
(
res
=>
{
if
(
res
&&
res
.
tentacleId
)
{
this
.
data
.
currentShareContent
.
tentacleId
=
res
.
tentacleId
;
let
id
=
Integer
.
digit
(
this
.
data
.
currentShareContent
.
id
,
10
,
64
);
let
tentacleId
=
Integer
.
digit
(
this
.
data
.
currentShareContent
.
tentacleId
,
10
,
64
);
var
path
=
'pages/productDetail/productDetail?i='
+
id
+
'&t='
+
tentacleId
;
this
.
setData
({
showCardModal
:
true
,
cardTitle
:
this
.
data
.
productInfo
.
headline
,
cardUrl
:
this
.
data
.
productInfo
.
url
,
pagePath
:
path
});
}
})
},
/**
* 生命周期函数--监听页面显示
*/
onShow
:
function
()
{
this
.
getProInfo
()
this
.
getOpenStatus
()
this
.
data
.
currentShareContent
=
null
},
//获取商品详情
...
...
@@ -194,6 +230,20 @@ wxService.page({
this
.
setData
({
selectSkuName
:
selectSkuStr
})
},
/**
* 用户点击右上角分享
*/
onShareAppMessage
:
function
(
res
)
{
let
id
=
Integer
.
digit
(
this
.
data
.
currentShareContent
.
id
,
10
,
64
);
let
tentacleId
=
Integer
.
digit
(
this
.
data
.
currentShareContent
.
tentacleId
,
10
,
64
);
var
path
=
'pages/productDetail/productDetail?i='
+
id
+
'&t='
+
tentacleId
;
console
.
log
(
path
)
return
{
path
:
path
}
}
...
...
src/pages/productDetail/productDetail.json
View file @
2d7699b1
...
...
@@ -2,6 +2,7 @@
"navigationBarTitleText"
:
"商品详情页"
,
"usingComponents"
:
{
"buy-image-swiper"
:
"/component/buyImageSwiper/buyImageSwiper"
,
"sku-popup"
:
"/component/skuPopup/skuPopup"
"sku-popup"
:
"/component/skuPopup/skuPopup"
,
"card-modal"
:
"/component/cardModal/cardModal"
}
}
\ No newline at end of file
src/pages/productDetail/productDetail.wxml
View file @
2d7699b1
...
...
@@ -30,7 +30,7 @@
<text class="price">¥618</text>
<text class="cost-price">¥888</text>
</view>
<view class="share-wrap">
<view class="share-wrap"
bindtap="onTapShare"
>
<image class="share-img" src="/assets/imgs/share.png" />
<text class="share-text">分享</text>
</view>
...
...
@@ -152,6 +152,9 @@
product-stock="{{productInfo.stock}}"
/>
<card-modal show-card-modal="{{showCardModal}}" card-title="{{cardTitle}}" card-url="{{cardUrl}}" page-path="{{pagePath}}"/>
<!-- <sku-popup
product-sku="{{productInfo.productSku}}"
...
...
src/pages/refund/refund.js
View file @
2d7699b1
...
...
@@ -14,9 +14,9 @@ wxService.page({
refundCreateDto
:
{
reason
:
""
,
// 原因
skuList
:
[],
tradeId
:
0
tradeId
:
0
,
proofImgUrls
:[]
//凭证
},
tempFilePaths
:
[],
// 照片
refundMark
:
''
,
cartList
:
[],
curType
:
{
// 当前选择原因
...
...
@@ -113,7 +113,12 @@ wxService.page({
// 上传图片
_uploadImg
(
e
){
console
.
log
(
e
)
if
(
e
.
detail
){
this
.
data
.
refundCreateDto
.
proofImgUrls
.
push
(
e
.
detail
)
this
.
setData
({
'refundCreateDto.proofImgUrls'
:
this
.
data
.
refundCreateDto
.
proofImgUrls
})
}
},
checkPro
(
e
)
{
...
...
src/pages/userCenter/userCenter.js
View file @
2d7699b1
...
...
@@ -6,6 +6,7 @@ const envInfo = require('../../config/index').envInfo
let
renderPage
=
null
// 渲染页面数据对象(安全渲染)
let
handlerDataOnPage
=
null
let
config
=
require
(
'../../configScreen/configScreen'
);
import
{
Integer
}
from
'../../utils/integerDigitalConvertion'
const
logger
=
utils
.
logger
...
...
@@ -190,5 +191,27 @@ wxService.page({
wx
.
hideLoading
()
})
},
/**
* 用户点击右上角分享
*/
onShareAppMessage
:
function
(
res
)
{
let
tentacleInfo
=
{
content
:
this
.
route
,
title
:
this
.
route
,
contentType
:
3
,
type
:
3
// 1:门店,2:员工(暂时不做),3:会员,4:第三方外部渠道,5:智能营销
};
wxService
.
getTentacleContent
(
tentacleInfo
).
then
(
res
=>
{
if
(
res
&&
res
.
tentacleId
)
{
let
tentacleId
=
Integer
.
digit
(
res
.
tentacleId
,
10
,
64
);
var
path
=
`pages/userCenter/userCenter?t=
${
tentacleId
}
`
;
console
.
log
(
path
)
return
{
path
:
path
}
}
});
}
})
\ No newline at end of file
src/pages/wantToBuyDetail/wantToBuyDetail.js
View file @
2d7699b1
...
...
@@ -16,7 +16,8 @@ wxService.page({
pageSize
:
100
,
proList
:[],
showCardModal
:
false
,
currentShareContent
:
null
currentShareContent
:
null
,
pagePath
:
''
},
/**
...
...
@@ -41,12 +42,6 @@ wxService.page({
// 分享
onTapShare
()
{
this
.
setData
({
showCardModal
:
true
,
cardTitle
:
this
.
data
.
contentInfo
.
headline
,
cardUrl
:
this
.
data
.
contentInfo
.
url
,
})
let
content
=
{
headline
:
this
.
data
.
contentInfo
.
headline
,
id
:
this
.
data
.
contentInfo
.
id
,
...
...
@@ -66,10 +61,14 @@ wxService.page({
wxService
.
getTentacleContent
(
tentacleInfo
).
then
(
res
=>
{
if
(
res
&&
res
.
tentacleId
)
{
this
.
data
.
currentShareContent
.
tentacleId
=
res
.
tentacleId
;
let
id
=
Integer
.
digit
(
this
.
data
.
currentShareContent
.
id
,
10
,
64
);
let
tentacleId
=
Integer
.
digit
(
this
.
data
.
currentShareContent
.
tentacleId
,
10
,
64
);
var
path
=
'pages/wantToBuyDetail/wantToBuyDetail?i='
+
id
+
'&t='
+
tentacleId
;
this
.
setData
({
showCardModal
:
true
,
cardTitle
:
this
.
data
.
contentInfo
.
headline
,
cardUrl
:
this
.
data
.
contentInfo
.
url
cardUrl
:
this
.
data
.
contentInfo
.
url
,
pagePath
:
path
});
}
})
...
...
src/pages/wantToBuyDetail/wantToBuyDetail.json
View file @
2d7699b1
{
"navigationBarTitleText"
:
"
种草
详情"
,
"navigationBarTitleText"
:
"详情"
,
"usingComponents"
:
{
"buy-image-swiper"
:
"/component/buyImageSwiper/buyImageSwiper"
,
"card-modal"
:
"/component/cardModal/cardModal"
...
...
src/pages/wantToBuyDetail/wantToBuyDetail.wxml
View file @
2d7699b1
...
...
@@ -38,6 +38,6 @@
</view>
</view>
</view>
<card-modal show-card-modal="{{showCardModal}}" card-title="{{cardTitle}}" card-url="{{cardUrl}}"/>
<card-modal show-card-modal="{{showCardModal}}" card-title="{{cardTitle}}" card-url="{{cardUrl}}"
page-path="{{pagePath}}"
/>
src/subPackage/page/pages/categoryPro/categoryPro.js
View file @
2d7699b1
// subPackage/page/pages/fun/fun.js
const
wxService
=
require
(
'../../../../utils/wxService'
)
import
{
Integer
}
from
'../../../../utils/integerDigitalConvertion'
wxService
.
page
({
...
...
@@ -110,7 +112,22 @@ wxService.page({
/**
* 用户点击右上角分享
*/
onShareAppMessage
:
function
()
{
onShareAppMessage
:
function
(
res
)
{
let
tentacleInfo
=
{
content
:
this
.
route
,
title
:
this
.
route
,
contentType
:
3
,
type
:
3
// 1:门店,2:员工(暂时不做),3:会员,4:第三方外部渠道,5:智能营销
};
wxService
.
getTentacleContent
(
tentacleInfo
).
then
(
res
=>
{
if
(
res
&&
res
.
tentacleId
)
{
let
tentacleId
=
Integer
.
digit
(
res
.
tentacleId
,
10
,
64
);
var
path
=
`subPackage/page/pages/categoryPro/categoryPro?t=
${
tentacleId
}
`
;
console
.
log
(
path
)
return
{
path
:
path
}
}
});
}
})
\ No newline at end of file
src/subPackage/page/pages/fun/fun.js
View file @
2d7699b1
// subPackage/page/pages/fun/fun.js
const
wxService
=
require
(
'../../../../utils/wxService'
)
import
{
Integer
}
from
'../../../../utils/integerDigitalConvertion'
wxService
.
page
({
...
...
@@ -102,7 +103,22 @@ wxService.page({
/**
* 用户点击右上角分享
*/
onShareAppMessage
:
function
()
{
onShareAppMessage
:
function
(
res
)
{
let
tentacleInfo
=
{
content
:
this
.
route
,
title
:
this
.
route
,
contentType
:
3
,
type
:
3
// 1:门店,2:员工(暂时不做),3:会员,4:第三方外部渠道,5:智能营销
};
wxService
.
getTentacleContent
(
tentacleInfo
).
then
(
res
=>
{
if
(
res
&&
res
.
tentacleId
)
{
let
tentacleId
=
Integer
.
digit
(
res
.
tentacleId
,
10
,
64
);
var
path
=
`subPackage/page/pages/fun/fun?t=
${
tentacleId
}
`
;
console
.
log
(
path
)
return
{
path
:
path
}
}
});
}
})
\ No newline at end of file
src/subPackage/page/pages/myRelease/myRelease.js
View file @
2d7699b1
...
...
@@ -21,6 +21,7 @@ wxService.page({
showCardModal
:
false
,
cardTitle
:
''
,
cardUrl
:
''
,
pagePath
:
''
,
contentList
:
[],
contentPermission
:
false
,
currentShareContent
:
null
...
...
@@ -162,10 +163,14 @@ wxService.page({
wxService
.
getTentacleContent
(
tentacleInfo
).
then
(
res
=>
{
if
(
res
&&
res
.
tentacleId
)
{
this
.
data
.
currentShareContent
.
tentacleId
=
res
.
tentacleId
;
let
id
=
Integer
.
digit
(
this
.
data
.
currentShareContent
.
id
,
10
,
64
);
let
tentacleId
=
Integer
.
digit
(
this
.
data
.
currentShareContent
.
tentacleId
,
10
,
64
);
var
path
=
'subPackage/page/pages/myReleaseDetail/myReleaseDetail?i='
+
id
+
'&t='
+
tentacleId
;
this
.
setData
({
showCardModal
:
true
,
cardTitle
:
e
.
detail
.
title
,
cardUrl
:
e
.
detail
.
url
cardUrl
:
e
.
detail
.
url
,
pagePath
:
path
});
}
})
...
...
src/subPackage/page/pages/myRelease/myRelease.wxml
View file @
2d7699b1
...
...
@@ -18,7 +18,7 @@
</navigator>
</block>
<water-flow-layout type="2" image-data="{{contentList}}" bind:updataLike="gotoLike" bind:_onTapShare="_onTapShare"/>
<card-modal show-card-modal="{{showCardModal}}" card-title="{{cardTitle}}" card-url="{{cardUrl}}"/>
<card-modal show-card-modal="{{showCardModal}}" card-title="{{cardTitle}}" card-url="{{cardUrl}}"
page-path="{{pagePath}}"
/>
...
...
src/subPackage/page/pages/myReleaseDetail/myReleaseDetail.js
View file @
2d7699b1
...
...
@@ -3,6 +3,7 @@ const app = getApp()
const
wxService
=
require
(
'../../../../utils/wxService'
)
const
utils
=
require
(
'../../../../utils/util'
)
const
{
memberId
}
=
wx
.
getStorageSync
(
'_baseUserInfo'
)
import
{
Integer
}
from
'../../../../utils/integerDigitalConvertion'
wxService
.
page
({
...
...
@@ -14,7 +15,8 @@ wxService.page({
id
:
''
,
showDialig
:
false
,
showCardModal
:
false
,
currentShareContent
:
null
currentShareContent
:
null
,
pagePath
:
''
},
/**
...
...
@@ -38,12 +40,6 @@ wxService.page({
// 分享
onTapShare
(){
this
.
setData
({
showCardModal
:
true
,
cardTitle
:
this
.
data
.
contentInfo
.
headline
,
cardUrl
:
this
.
data
.
contentInfo
.
url
,
})
let
content
=
{
headline
:
this
.
data
.
contentInfo
.
headline
,
id
:
this
.
data
.
contentInfo
.
id
,
...
...
@@ -63,10 +59,14 @@ wxService.page({
wxService
.
getTentacleContent
(
tentacleInfo
).
then
(
res
=>
{
if
(
res
&&
res
.
tentacleId
)
{
this
.
data
.
currentShareContent
.
tentacleId
=
res
.
tentacleId
;
let
id
=
Integer
.
digit
(
this
.
data
.
currentShareContent
.
id
,
10
,
64
);
let
tentacleId
=
Integer
.
digit
(
this
.
data
.
currentShareContent
.
tentacleId
,
10
,
64
);
var
path
=
'subPackage/page/pages/myReleaseDetail/myReleaseDetail?i='
+
id
+
'&t='
+
tentacleId
;
this
.
setData
({
showCardModal
:
true
,
cardTitle
:
e
.
detail
.
title
,
cardUrl
:
e
.
detail
.
url
cardTitle
:
this
.
data
.
contentInfo
.
headline
,
cardUrl
:
this
.
data
.
contentInfo
.
url
,
pagePath
:
path
});
}
})
...
...
src/subPackage/page/pages/myReleaseDetail/myReleaseDetail.wxml
View file @
2d7699b1
...
...
@@ -40,4 +40,4 @@
<image class="img-top" mode="widthFix" src="/assets/imgs/7_1_0/go-top.png" bindtap="goTop"></image>
</view>
<x-dialog show="{{showDialig}}" bind:_closeDialog="closeDialog" />
<card-modal show-card-modal="{{showCardModal}}" card-title="{{cardTitle}}" card-url="{{cardUrl}}"/>
\ No newline at end of file
<card-modal show-card-modal="{{showCardModal}}" card-title="{{cardTitle}}" card-url="{{cardUrl}}" page-path="{{pagePath}}"/>
\ 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