openOneBox.vue 663 Bytes
<template>
  <!-- 单抽页面 -->
  <div class="openOneBox"></div>
</template>

<script>
export default {
  name: "OpenOneBox",
  data(){
    return{

    }
  },
  methods: {
  },
  computed: {
  },
  created(){
this.$router.push({
            path: "/lottery",
            query: {
              boxId: 40,
            },
          });
  },
  mounted() {
    
  },
};
</script>

<style lang="scss" scoped>
// 页面适配
@function vw($px) {
  @return 100 * $px/750 + vw;
}
* {
  margin: 0;
  padding: 0;
}
// 单抽页面
.openOneBox {
  width: vw(720);
  height: 100vh;
  // background:url("");
  form {
    width: vw(100);
    height: vw(100);
  }
}
</style>