Yx.vue 2.35 KB
<template>
	<div class="eibs-tab">
		<c-col :span="12">
			<el-form-item label="影像编号" prop="bftp.imggrdm.fftref">
				<c-input v-model="model.bftp.imggrdm.fftref" maxlength="20" placeholder="请输入"></c-input>
			</el-form-item>
		</c-col>
		<!-- SG000272 : 新增交单单据附件影像 -->
		<!-- SG000273 : 历史交单单据附件影像 -->
		<c-col :span="24">
			<span style="margin-left:20px">新增交单单据附件影像</span>
		</c-col>

		<c-col :span="24">
			<div style="padding: 0 20px">
				<el-table :list="model.bftp.imggrdm.imggrd || []" style="width: 100%">
					<el-table-column prop="CMAIL1" label="影像ID" sortable min-width="100">
					</el-table-column>
					<el-table-column prop="CMAIL2" label="影像类型" sortable min-width="100">
					</el-table-column>
					<el-table-column prop="CMAIL3" label="影像描述" sortable min-width="100">
					</el-table-column>
					<el-table-column prop="CMAIL4" label="有效标识" sortable min-width="100">
					</el-table-column>
					<el-table-column prop="CMAIL5" label="显示在电证报文" sortable min-width="150">
					</el-table-column>
					<el-table-column prop="CMAIL6" label="文件名" sortable min-width="100">
					</el-table-column>
				</el-table>
			</div>
		</c-col>

		<c-col :span="24">
			<span style="margin-left:20px">历史交单单据附件影像</span>
		</c-col>

		<c-col :span="24">
			<div style="padding: 0 20px">
				<el-table :list="model.bftp.imggrdm.hisimggrd || []" style="width: 100%">
					<el-table-column prop="CMAIL1" label="影像ID" sortable min-width="100">
					</el-table-column>
					<el-table-column prop="CMAIL2" label="影像类型" sortable min-width="100">
					</el-table-column>
					<el-table-column prop="CMAIL3" label="影像描述" sortable min-width="100">
					</el-table-column>
					<el-table-column prop="CMAIL4" label="有效标识" sortable min-width="100">
					</el-table-column>
					<el-table-column prop="CMAIL5" label="显示在电证报文" sortable min-width="150">
					</el-table-column>
					<el-table-column prop="CMAIL6" label="文件名" sortable min-width="100">
					</el-table-column>
				</el-table>
			</div>
		</c-col>
	</div>
</template>
<script>
import event from "../event";
export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {};
  },
  created() {}
};
</script>
<style>
</style>