inleft
2022-03-01 ec97e05d923dc7a343b16ddd5134f1dff8071051
src/components/mini/Aplayer.vue
@@ -1,16 +1,35 @@
<template>
   <div >
      <aplayer :audio="audio"  fixed  style="z-index: 10;" :preload="preload"/>
   <div class="fade">
      <!-- <a-col v-bind="colMain">
      </a-col> -->
         <aplayer :audio="audio" :autoplay="autoplay" fixed style="z-index: 10;" :volume="0.1" :preload="preload" />
      <!-- <a-modal ref="musicModal" title="" :dialog-style="{ top: '10px' }" :mask="false"
      :maskClosable="false"   :visible="modal1Visible" @ok="() => setModal1Visible(false)" @cancel="() => setModal1Visible(false)">
         <p>{{secondsToGo}}秒后关闭</p>
      </a-modal> -->
   </div>
</template>
<script>
   import APlayer from '@moefe/vue-aplayer';
   export default {
      data() {
         return {
            preload:"none",
            colMain: {
               xs: 0,
               sm: 0,
               md: 1,
               lg: 1,
               xl: 1,
               xxl: 1
            },
            autoplay:false,
            modal1Visible: true,
            secondsToGo: 5,
            preload: "none",
            audio: {
               name: 'Moonwisher',
               artist: 'Kan R. Gao',
@@ -19,6 +38,23 @@
               cover: 'http://p2.music.126.net/0AYWra9rCzgeprGp6OUyUw==/868614185993997.jpg?param=130y130',
            },
         };
      },
      created() {
         // const interval = setInterval(() => {
         //    this.secondsToGo -= 1;
         // }, 1000);
         // setTimeout(() => {
         //    clearInterval(interval);
         //    this.modal1Visible = false
         // }, 5000);
      },
      methods: {
         setModal1Visible(modal1Visible) {
            this.modal1Visible = modal1Visible;
         },
      },
   };
   // var ap = new APlayer({