123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <template>
- <view class="radius shadow fotter-container" v-if="playInfo">
- <view class="fixed-container" @click.stop="toSongDetail">
- <view class="cu-avatar playImage round" :style="'background-image:url(' + playInfo.coverImgUrl + ')'"></view>
- <view class="play-center">
- <view class="music-name">{{ playInfo.title }}</view>
- <!-- <view class="music-author">{{ playInfo.singer }}</view> -->
- </view>
- <view class="play-right">
- <view class="play-list relative" @click.stop="changePlaying">
- <text :class="['iconfont', !paused ? 'icon-playStop' : 'icon-playStart']" style="font-size: 28px"></text>
- </view>
- <text class="iconfont icon-liebiao play-list" @click.stop="modelShow = true"></text>
- </view>
- </view>
- <play-list v-model="modelShow"></play-list>
- </view>
- </template>
- <script>
- import playList from './playList.vue';
- import { mapState } from 'vuex';
- export default {
- data() {
- return {
- modelShow: false
- };
- },
- components: {
- playList
- },
- computed: mapState({
- playInfo: state => state.playInfo,
- paused: state => state.paused
- }),
- methods: {
- //修改播放状态
- changePlaying() {
- let list = this.$audio.audiolist;
- let index = list.findIndex(item => item.id == this.playInfo.id);
- this.$audio.operate(index);
- this.$store.commit('SET_PASUED', !this.paused);
- },
- toSongDetail() {
- if (this.modelShow) return;
- uni.navigateTo({
- url: '../play/index'
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .fotter-container {
- height: 110rpx;
- width: 100%;
- // position: fixed;
- // bottom: 0px;
- // left: 0;
- z-index: 9999;
- .fixed-container {
- position: fixed;
- z-index: 20;
- width: 100%;
- height: 110rpx;
- bottom: 0px;
- // box-shadow: 0 1px 2px rgb(0, 21, 0.1);
- display: flex;
- background: rgba(22, 125, 242, 1);;
- }
- .playImage {
- width: 80rpx;
- height: 80rpx;
- margin: auto 15px auto 10px;
- }
- .play-center {
- flex: auto;
- display: flex;
- flex-wrap: wrap;
- align-content: center;
- max-width: calc(100% - 300rpx);
- .music-name {
- color: #ffffff;
- font-size: 32rpx;
- margin-bottom: 4px;
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .music-author {
- font-size: 24rpx;
- color: rgba(0, 0, 0, 0.5);
- width: 100%;
- }
- }
- .play-right {
- width: 92px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .play-list {
- font-size: 30px;
- margin-right: 12px;
- }
- }
- }
- </style>
|