bug:15689、15669
parent
92f4c0ef99
commit
269e7d9f6e
|
@ -37,7 +37,8 @@
|
||||||
|
|
||||||
|
|
||||||
<view class="message-warp" v-if="pd.VIDEO_SIGN_ROUTE">
|
<view class="message-warp" v-if="pd.VIDEO_SIGN_ROUTE">
|
||||||
<video :src="baseImgPath + pd.VIDEO_SIGN_ROUTE" controls="true"></video>
|
<image v-show="!isPlayVideo" src="/static/video_placeholder.jpg" style="width: 300px;height: 225px;" @click="playVideo"/>
|
||||||
|
<video v-show="isPlayVideo" id="video" :src="baseImgPath + pd.VIDEO_SIGN_ROUTE" controls="true"></video>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
|
||||||
|
@ -150,6 +151,8 @@
|
||||||
LIVEPHOTOS: '',
|
LIVEPHOTOS: '',
|
||||||
SIGNATUREPICTURE: '',
|
SIGNATUREPICTURE: '',
|
||||||
ATTENDANCE_STATUS: '',
|
ATTENDANCE_STATUS: '',
|
||||||
|
videoContext:null,
|
||||||
|
isPlayVideo: false,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(e){
|
onLoad(e){
|
||||||
|
@ -159,6 +162,13 @@
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
playVideo(){
|
||||||
|
if (!this.videoContext) {
|
||||||
|
this.videoContext = uni.createVideoContext("video");
|
||||||
|
}
|
||||||
|
this.videoContext.play();
|
||||||
|
this.isPlayVideo = true;
|
||||||
|
},
|
||||||
//跳转事件
|
//跳转事件
|
||||||
goToEdit(e) {
|
goToEdit(e) {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
|
@ -467,6 +477,8 @@
|
||||||
this.$refs['showHiddenWindow'].open()
|
this.$refs['showHiddenWindow'].open()
|
||||||
this.showHiddenWindow = true
|
this.showHiddenWindow = true
|
||||||
this.hiddenIsEdit = true
|
this.hiddenIsEdit = true
|
||||||
|
this.videoContext && this.videoContext.pause()
|
||||||
|
this.isPlayVideo = false
|
||||||
},
|
},
|
||||||
|
|
||||||
openAuth(permissionID){
|
openAuth(permissionID){
|
||||||
|
|
|
@ -45,7 +45,15 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {basePath, loginUser} from "../../../common/tool";
|
import {
|
||||||
|
basePath,
|
||||||
|
loginUser,
|
||||||
|
setCorpinfoId,
|
||||||
|
setDeptId,
|
||||||
|
setIsRest,
|
||||||
|
setloginUser,
|
||||||
|
setloginUserId, setPremission
|
||||||
|
} from "../../../common/tool";
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
@ -130,7 +138,19 @@ import {basePath, loginUser} from "../../../common/tool";
|
||||||
title: '提交成功',
|
title: '提交成功',
|
||||||
duration: 1500
|
duration: 1500
|
||||||
});
|
});
|
||||||
that.goback()
|
// that.goback()
|
||||||
|
if(this.form.REVIEW_RESULT=='1'){
|
||||||
|
setloginUserId(null);
|
||||||
|
setCorpinfoId(null);
|
||||||
|
setDeptId(null);
|
||||||
|
setloginUser(null);
|
||||||
|
setIsRest(null);
|
||||||
|
setPremission(null)
|
||||||
|
uni.removeStorage({key: 'USER'});
|
||||||
|
uni.reLaunch({
|
||||||
|
url: '/pages/login/home'
|
||||||
|
});
|
||||||
|
}
|
||||||
}else{
|
}else{
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
|
|
Loading…
Reference in New Issue