Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-community-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
陈峰
2019-02-20 14:12:19 +0800
Commit
69e97ebb5473953e7e5453c69064902b67b56a22
1 parent
bb56da80
commit
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
10 deletions
apps/common/yoho.js
apps/components/comments/comment-placeholder.js
apps/pages/article/components/article/article-item-intro.vue
apps/common/yoho.js
View file @
69e97eb
...
...
@@ -607,7 +607,6 @@ const yoho = {
},
share
(
args
,
success
,
fail
)
{
console
.
log
(
args
)
if
(
this
.
isYohoBuy
&&
window
.
yohoInterface
)
{
window
.
yohoInterface
.
triggerEvent
(
success
||
nullFun
,
fail
||
nullFun
,
{
method
:
'go.showshareaction'
,
...
...
apps/components/comments/comment-placeholder.js
View file @
69e97eb
...
...
@@ -22,14 +22,10 @@ export default {
const
hint
=
this
.
user
?
`回复
$
{
this
.
user
}:
`
:
''
;
if
(
this
.
$yoho
.
isYohoBuy
)
{
this
.
$yoho
.
getInput
({
hint
,
success
:
(
content
)
=>
{
this
.
comment
(
content
);
},
fail
:
(
e
)
=>
{
console
.
error
(
e
);
}
this
.
$yoho
.
getInput
({
hint
},
(
content
)
=>
{
this
.
comment
(
content
);
},
(
e
)
=>
{
console
.
error
(
e
);
});
}
else
{
this
.
$createDialog
({
...
...
apps/pages/article/components/article/article-item-intro.vue
View file @
69e97eb
...
...
@@ -101,7 +101,6 @@ export default {
imgUrl: this.data.imageUrl,
link: `http://yoho-community-web.test3.ingress.dev.yohocorp.com/article/${this.data.articleId}`,
desc: this.data.intro,
hideType: ['7', '8', '9']
});
},
onExpand() {
...
...
Please
register
or
login
to post a comment