云端录像详情页添加返回按钮

This commit is contained in:
648540858
2022-08-31 18:07:53 +08:00
parent 275b272160
commit 703c2e292a
5 changed files with 19 additions and 14 deletions

View File

@@ -1,7 +1,9 @@
<template>
<div id="recordDetail">
<el-container>
<el-aside width="300px">
<div class="record-list-box-box">
<el-date-picker size="mini" v-model="chooseDate" :picker-options="pickerOptions" type="date" value-format="yyyy-MM-dd" placeholder="日期" @change="dateChange()"></el-date-picker>
<div class="record-list-box" :style="recordListStyle">
@@ -423,6 +425,9 @@
}).catch(function (error) {
console.log(error);
});
},
goBack(){
this.$router.push('/cloudRecord');
}
}
};