1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| <template>
| <div class="ill">
| <!-- 到达现场情况 -->
| <MyArrive></MyArrive>
| <!-- 调查取证 -->
| <MyEvidence></MyEvidence>
| <!-- 文种书类 -->
| <MyBook></MyBook>
| <!-- 底部按钮 -->
| <div class="footer">
| <el-button @click="handleSubmit" type="primary">确定</el-button>
| <el-button>返回</el-button>
| </div>
| </div>
| </template>
| <script>
| import MyArrive from '../components/arrive'
| import MyEvidence from "../components/evidence"
| import MyBook from "../components/book"
| export default {
| components:{
| MyArrive,MyEvidence,MyBook
| },
| data() {
| return {
|
| }
| },
| props:['caseId'],
| created(){
| },
| methods:{
| handleSubmit(){
|
| }
| }
| }
| </script>
| <style lang="scss" scoped>
| .ill{
| padding: 20px 200px;
| }
| .footer {
| display: flex;
| justify-content: flex-end;
| }
| </style>
|
|