Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
game-h5
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
gic-web
game-h5
Commits
b329c80b
Commit
b329c80b
authored
May 20, 2022
by
曾经
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
b3881780
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
2 deletions
+21
-2
share-select-dialog.vue
src/components/cmh/components/share-select-dialog.vue
+19
-0
index.vue
src/components/cmh/index.vue
+2
-2
No files found.
src/components/cmh/components/share-select-dialog.vue
View file @
b329c80b
...
...
@@ -41,8 +41,16 @@
</
template
>
<
script
>
import
{
gameRequestApi
}
from
"@/api/common.js"
;
const
{
getReportRecord
,
}
=
gameRequestApi
;
export
default
{
props
:
{
memberId
:
String
,
enterpriseId
:
String
,
gameId
:
String
,
show
:
Boolean
,
},
data
()
{
...
...
@@ -50,7 +58,18 @@ export default {
count
:
100
,
};
},
created
(){
this
.
loadData
();
},
methods
:
{
async
loadData
(){
let
res
=
await
getReportRecord
({
memberId
:
this
.
memberId
||
''
,
enterpriseId
:
this
.
enterpriseId
||
''
,
gameId
:
this
.
gameId
||
''
});
console
.
log
(
"res---->"
,
res
);
},
again
()
{
this
.
$emit
(
"again"
);
this
.
close
();
...
...
src/components/cmh/index.vue
View file @
b329c80b
...
...
@@ -326,8 +326,8 @@ export default {
}
},
clickShareBtn
()
{
this
.
showShareImgDialog
=
true
;
//
this.showShareSelectDialog = true;
//
this.showShareImgDialog = true;
this
.
showShareSelectDialog
=
true
;
},
clickAdImg
()
{
console
.
log
();
...
...
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