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
48
49
50
51
52
53
54
55
56
57
58
59
60
<template>
<div class="eContainer">
<c-page title="Info Acknowledgment">
<c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="tabClick">
<el-tab-pane label="INFACK" name="infsea">
<c-content>
<m-infsea :model="model" :codes="codes" />
</c-content>
</el-tab-pane>
</c-tabs>
</c-page>
</div>
</template>
<script>
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
import Infack from "../model";
import Infsea from "./Infsea";
import event from "../event";
import operationFunc from "~/mixin/operationFunc";
import commonDepend from "~/mixin/commonDepend";
export default {
name: "Infack",
components: {
"m-infsea": Infsea,
},
provide() {
return {
root: this,
activeNames: ["infsea"]
};
},
mixins: [operationFunc, event, commonDepend],
data() {
return {
tabVal: "infsea",
trnName: "infack",
model: new Infack().data,
codes: {
...CodeTable
},
};
},
methods:{
},
// mounted() {
// this.model.gitp.usr.extkey = window.sessionStorage.userName
// },
};
</script>
<style scoped>
.eContainer {
padding-top: 20px !important;
}
</style>