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