Commit b329c80b by 曾经

no message

parent b3881780
...@@ -41,8 +41,16 @@ ...@@ -41,8 +41,16 @@
</template> </template>
<script> <script>
import { gameRequestApi } from "@/api/common.js";
const {
getReportRecord,
} = gameRequestApi;
export default { export default {
props: { props: {
memberId: String,
enterpriseId: String,
gameId: String,
show: Boolean, show: Boolean,
}, },
data() { data() {
...@@ -50,7 +58,18 @@ export default { ...@@ -50,7 +58,18 @@ export default {
count: 100, count: 100,
}; };
}, },
created(){
this.loadData();
},
methods: { methods: {
async loadData(){
let res = await getReportRecord({
memberId: this.memberId || '',
enterpriseId: this.enterpriseId || '',
gameId: this.gameId || ''
});
console.log("res---->",res);
},
again() { again() {
this.$emit("again"); this.$emit("again");
this.close(); this.close();
......
...@@ -326,8 +326,8 @@ export default { ...@@ -326,8 +326,8 @@ export default {
} }
}, },
clickShareBtn() { clickShareBtn() {
this.showShareImgDialog = true; // this.showShareImgDialog = true;
// this.showShareSelectDialog = true; this.showShareSelectDialog = true;
}, },
clickAdImg() { clickAdImg() {
console.log(); console.log();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment