Commit b329c80b by 曾经

no message

parent b3881780
......@@ -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();
......
......@@ -326,8 +326,8 @@ export default {
}
},
clickShareBtn() {
this.showShareImgDialog = true;
// this.showShareSelectDialog = true;
// this.showShareImgDialog = true;
this.showShareSelectDialog = true;
},
clickAdImg() {
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