123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <el-drawer title="排行榜" :visible.sync="show" direction="rtl">
- <view style="text-align: center;" class="">
- 开发中....!
- </view>
- </el-drawer>
- </template>
- <script>
- export default {
- data() {
- return {
- show: false,
-
- }
- },
- props: {
- chooseClassId: {
- type: Number | String,
- default: ""
- },
- },
- computed: {},
- methods: {
- open(){
- this.show = true;
-
- this.$api.sendRequest({
- url : '/mobile/studentTab/getStudentMonthRank',
- method: "post",
- data: {
- class_id : this.chooseClassId,
- },
- success: res => {
-
- }
- })
- }
- }
- }
- </script>
- <style>
-
- </style>
|