inleft
2022-08-26 fa1bd95d533444d7360d1ada127b7a3279a3901f
src/components/mini/Aplayer.vue
@@ -1,6 +1,9 @@
<template>
   <div class="fade">
      <aplayer :audio="audio" fixed style="z-index: 10;" :preload="preload" />
      <a-col v-bind="colMain">
         <aplayer ref="myAplayer" :audio="audio" :autoplay="autoplay" fixed style="z-index: 10;" :volume="0.1"
            :preload="preload" />
      </a-col>
      <!-- <a-modal ref="musicModal" title="" :dialog-style="{ top: '10px' }" :mask="false"
      :maskClosable="false"   :visible="modal1Visible" @ok="() => setModal1Visible(false)" @cancel="() => setModal1Visible(false)">
@@ -13,9 +16,23 @@
   import APlayer from '@moefe/vue-aplayer';
   export default {
      created() {
         this.$nextTick(function() {
            this.$message.info("stop..")
            this.$refs.myAplayer.pause();
         })
      },
      data() {
         return {
            colMain: {
               xs: 0,
               sm: 0,
               md: 1,
               lg: 1,
               xl: 1,
               xxl: 1
            },
            autoplay: false,
            modal1Visible: true,
            secondsToGo: 5,
            preload: "none",