fix
This commit is contained in:
parent
67d2215c93
commit
529b55bf83
@ -27,9 +27,10 @@
|
|||||||
color="#76C458"
|
color="#76C458"
|
||||||
@click="startRecord"
|
@click="startRecord"
|
||||||
@touchend="stopRecord"
|
@touchend="stopRecord"
|
||||||
|
:disabled="isAnimate"
|
||||||
></u-button>
|
></u-button>
|
||||||
<view style="margin-top: 20rpx;">
|
<view style="margin-top: 20rpx;">
|
||||||
<u-button text="确认" shape="circle" color="#76C458" @click="back"></u-button>
|
<u-button text="确认" shape="circle" color="#76C458" @click="back" :disabled="isEnd"></u-button>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@ -42,7 +43,8 @@ export default {
|
|||||||
return {
|
return {
|
||||||
isAnimate: false,
|
isAnimate: false,
|
||||||
tempVideoPath: "",
|
tempVideoPath: "",
|
||||||
tips: "⚪录制"
|
tips: "⚪录制",
|
||||||
|
isEnd: true
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
@ -63,6 +65,7 @@ export default {
|
|||||||
this.$common.msgToast("录制完成");
|
this.$common.msgToast("录制完成");
|
||||||
this.tempVideoPath = res.tempVideoPath;
|
this.tempVideoPath = res.tempVideoPath;
|
||||||
this.tips = "⚪录制完成";
|
this.tips = "⚪录制完成";
|
||||||
|
this.isEnd = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}, 5000);
|
}, 5000);
|
||||||
@ -139,6 +142,7 @@ export default {
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
.dot {
|
.dot {
|
||||||
width: 30rpx;
|
width: 30rpx;
|
||||||
height: 30rpx;
|
height: 30rpx;
|
||||||
|
Loading…
Reference in New Issue
Block a user