douzhuo il y a 2 ans
Parent
révision
33cae95f96
2 fichiers modifiés avec 15 ajouts et 9 suppressions
  1. +4
    -4
      pages/mine/details.vue
  2. +11
    -5
      pages/mine/details2.vue

+ 4
- 4
pages/mine/details.vue Voir le fichier

@@ -304,18 +304,18 @@
this.init(info)
},
// 在组件实例被从页面节点树移除时执行
destroyed: function() {
async destroyed() {
//暂停
// this.innerAudioContext.pause()
// 销毁
this.innerAudioContext.destroy();
await this.innerAudioContext.destroy();
},
// 销毁实例
onUnload: function() {
async onHide() {
//暂停
// this.innerAudioContext.pause()
// 销毁
this.innerAudioContext.destroy();
await this.innerAudioContext.destroy();
},
methods: {
effectiveAdd(){


+ 11
- 5
pages/mine/details2.vue Voir le fichier

@@ -104,7 +104,7 @@
</view>
<view class="content">
<view @longpress="changanxiaoguo(item,index,i)" v-html="item.onebest"></view>
<view class="tankuangcss" v-if="item.isshow">
<view class="tankuangcss" :class="{bottoms:index == 0}" v-if="item.isshow">
<view @click="clickcopy()"
style="width: 60rpx;font-size: 24rpx;text-align: center;margin-left: 24rpx;">复制
</view>
@@ -580,18 +580,18 @@
},
// 在组件实例被从页面节点树移除时执行
destroyed: function() {
async beforeDestroy() {
//暂停
// this.innerAudioContext.pause()
// 销毁
this.innerAudioContext.destroy();
await this.innerAudioContext.destroy();
},
// 销毁实例
onUnload: function() {
async onHide() {
//暂停
// this.innerAudioContext.pause()
// 销毁
this.innerAudioContext.destroy();
await this.innerAudioContext.destroy();
},
methods: {
rolexuanze(index){
@@ -2316,6 +2316,7 @@
max-width: 442rpx;
color: #FFFFFF;
position: relative;
.tankuangcss {
position: absolute;
top: -140rpx;
@@ -2332,6 +2333,11 @@
border-radius: 15rpx;
z-index: 1000;
}
.bottoms {
top: unset;
bottom: -140rpx;
}
}
.scroll-Y .text.active .content {
color: #38FFF1;


Chargement…
Annuler
Enregistrer