You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
936 B
49 lines
936 B
![]()
2 years ago
|
<template>
|
||
|
<div class="app-container">
|
||
|
<!-- 标题按钮部分开始 -->
|
||
|
<div class="tab-header webtop">
|
||
|
<!-- 标题 -->
|
||
|
<div>环境监控-视频中心</div>
|
||
|
<!-- start 添加修改按钮 -->
|
||
|
<div />
|
||
|
<!-- end 添加修改按钮 -->
|
||
|
<!-- end 详情按钮 -->
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'MonitorVideos',
|
||
|
data() {
|
||
|
return {
|
||
|
submitdisabled: false,
|
||
|
viewTitle: '视频中心',
|
||
|
tableKey: 0,
|
||
|
index: 0,
|
||
|
totalQuantity: '', // 合计数量
|
||
|
amountInTotal: '', // 合计金额
|
||
|
formobj: {},
|
||
|
rules: {}
|
||
|
}
|
||
|
},
|
||
|
created() {},
|
||
|
methods: {
|
||
|
handleReturn() {
|
||
|
this.formobj = {}
|
||
|
this.$refs['form_obj'].resetFields()
|
||
|
this.$emit('doback')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.title {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
}
|
||
|
</style>
|