Glelst.vue 1.02 KB
Newer Older
fukai committed
1
<template>
liuxiaojing committed
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
	<div>
		<div class="title">会计分录</div>
		<div class="e-table-wrapper">
			<el-table
				:data="model.setmod.glemod.glelst"
				style="width: 100%"
				>
				<el-table-column
					prop="dbtcdt"
					label="借/贷">
				</el-table-column>
				<el-table-column
					prop="act"
					label="账号">
				</el-table-column>
				<el-table-column
					prop="cur"
					label="币种">
				</el-table-column>
				<el-table-column
					prop="amt"
					label="金额">
				</el-table-column>
				<el-table-column
					prop="valdat"
					label="起息日">
傅凯 committed
28 29 30
					<template slot-scope="scope">
						{{dateFormat(scope.row.valdat)	}}
					</template>
liuxiaojing committed
31 32 33 34 35 36 37 38 39 40 41 42
				</el-table-column>
				<el-table-column
					prop="trmtyp"
					label="科目号">
				</el-table-column>
				<el-table-column
					prop="fctsgn"
					label="记账方式">
				</el-table-column>
			</el-table>
		</div>
	</div>
fukai committed
43 44 45
</template>
<script>
export default {
liuxiaojing committed
46
    props:['model']
fukai committed
47
}
liuxiaojing committed
48 49 50 51 52 53 54 55
</script>

<style scoped>
.title {
	color: rgba(0, 0, 0, 0.65);
	font-size: 14px;
}
</style>