123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <template name="audioComment">
- <view>
- <view class="banner">
- <dever-audio
- :src="item.audio"
- :pic="item.pic"
- :control="true"
- :loop="true"
- :load.sync="load"
- :disabled="disabled"
- @play="play"
- ref="audio"
- >
- </dever-audio>
- </view>
- <block v-if="item.type == 2">
- <dever-comment ref="comment" :item="item" :type="`content/audio_comment`" :type_id="item.id"></dever-comment>
- </block>
- <block v-if="item.type == 1">
- <dever-seat ref="seat" :item="item" :index="index" :type="`content/audio_comment`" :type_id="item.id" @start="start" @stop="stop" @setDisabled="setDisabled"></dever-seat>
- </block>
- </view>
- </template>
- <script>
- import deverAudio from '@/lib/dever/components/audio.nvue';
- import deverComment from "@/lib/dever/components/comment.vue";
- import deverSeat from '@/lib/dever/components/seat.vue';
- export default {
- name: "audioComment",
- props: {
- control : {
- type : Object,
- value : null
- },
- item : {
- type : Object,
- value : null
- },
- index : 0
- },
- data() {
- return {
- load : false,
- //默认不能播放
- disabled : true,
- }
- },
- mounted() {
- this.control[this.index] = this;
- },
- methods:{
- start : function() {
- this.$refs.audio.start();
- },
- stop : function() {
- this.$refs.audio.stop();
- },
- setDisabled : function(value) {
- this.disabled = value;
- },
- play : function(state, time) {
- if (this.item.type == 1) {
- var method = 'seat';
- } else {
- var method = 'comment';
- }
- if (state == 'start') {
- this.$refs[method].start();
- } else if (state == 'stop') {
- this.$refs[method].stop();
- } else if (state == 'time' && time) {
- this.$refs[method].time(time);
- }
- },
- },
- components:{
- deverAudio,deverComment,deverSeat
- }
- }
- </script>
- <style>
- .banner{
- position: relative;
- width: 750rpx;
- height: 422rpx;
- display: block;
- }
- </style>
|