Compare commits
No commits in common. "155c75d08f3fe4ddd62213420f34c73f3eef15f3" and "ca34ca05a8cb35960791153b53471f1982b756de" have entirely different histories.
155c75d08f
...
ca34ca05a8
@ -26,6 +26,7 @@
|
||||
shape="circle"
|
||||
color="#76C458"
|
||||
@click="startRecord"
|
||||
@touchend="stopRecord"
|
||||
:disabled="isAnimate"
|
||||
></u-button>
|
||||
<view style="margin-top: 20rpx;">
|
||||
@ -91,7 +92,11 @@ export default {
|
||||
// },
|
||||
back() {
|
||||
uni.navigateTo({
|
||||
url: "/pages/realName/realName?tempVideoPath=" + this.tempVideoPath
|
||||
url:
|
||||
"/pages/realName/realName?tempVideoPath=" +
|
||||
this.tempVideoPath +
|
||||
"&isfinish=" +
|
||||
!!this.tempVideoPath
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -56,9 +56,6 @@ export default {
|
||||
this.infoOrders()
|
||||
this.info()
|
||||
},
|
||||
onShow() {
|
||||
this.infoOrders()
|
||||
},
|
||||
methods: {
|
||||
async infoOrders(){
|
||||
const res = await this.$api.mine.infoOrders()
|
||||
|
File diff suppressed because one or more lines are too long
@ -98,11 +98,13 @@ export default {
|
||||
fileList: [],
|
||||
fileList2: [],
|
||||
video: '',
|
||||
isfinish: false,
|
||||
isChecked: false
|
||||
};
|
||||
},
|
||||
async onLoad(options) {
|
||||
if (options.tempVideoPath) {
|
||||
this.isfinish = JSON.parse(options.isfinish) || false
|
||||
this.video = await this.uploadFilePromise(options.tempVideoPath)
|
||||
console.log('this.video', this.video)
|
||||
const data = {
|
||||
|
Loading…
Reference in New Issue
Block a user