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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<template>
<div class="eibs-tab">
<!--<c-col :span="12">
<el-form-item label="stream of CBEs" prop="infcon.cbestm">
<c-input v-model="model.infcon.cbestm" placeholder="请输入stream of CBEs"></c-input>
</el-form-item>
</c-col>-->
<div style="height: 90%">
<c-col :span="24" style="height: 24px">
<el-form-item class="formItemLabel" label="发生额信息:" label-width="108px">
</el-form-item>
</c-col>
<c-col :span="24">
<el-table id='infgidSpTableRef' v-loading="cbeload" :data="cbetableData" :highlight-current-row="true" :border="true" style="width:100%" size="medium">
<el-table-column label="金额类型" prop="extid" align="left">
</el-table-column>
<el-table-column label="记录类型" prop="cbt" width="150px" align="left">
</el-table-column>
<el-table-column label="产生记录的表类型" prop="trntyp" align="left">
</el-table-column>
<el-table-column label="发生日期" prop="dat" width="150px" align="left">
</el-table-column>
<el-table-column label="币种" prop="cur" align="left">
</el-table-column>
<el-table-column label="金额" prop="amt" width="150px" align="left">
<template slot-scope="scope">
<span> {{moneyFormat(scope.row.amt, scope.row.cur) }}
</span>
</template>
</el-table-column>
<el-table-column label="折算币种" prop="xrfcur" align="left">
</el-table-column>
<el-table-column label="折算金额" prop="xrfamt" width="150px" align="left">
<template slot-scope="scope">
<span> {{moneyFormat(scope.row.xrfamt, scope.row.xrfcur) }}
</span>
</template>
</el-table-column>
<el-table-column label="授权标志" prop="relflg" align="left">
</el-table-column>
<el-table-column label="创建日期" prop="credat" width="150px" align="left">
</el-table-column>
<el-table-column label="可选日期" prop="optdat" align="left">
</el-table-column>
<el-table-column label="描述" prop="nam" width="200px" align="left">
</el-table-column>
<el-table-column label="账号" prop="acc" width="200px" align="left">
</el-table-column>
<el-table-column label="产生记录表主键" prop="trninr" width="150px" align="left">
</el-table-column>
</el-table>
</c-col>
</div>
</div>
</template>
<script>
import Api from "~/service/Api"
// import CommonProcess from "~/mixin/CommonProcess";
import CodeTable from "~/config/CodeTable"
import event from "../event";
export default {
inject: ['root'],
props:["model","codes","cbetableData"],
mixins: [event],
// mixins: [CommonProcess],
data(){
return {
cbeload:false,
}
},
}
</script>
<style>
</style>