<template>
   <c-row class="eibs-tab">
	<c-col :span="10">
     <c-col :span="24">
            <el-form-item label="保函编号" prop="nidgrp.rec.ownref">
              <c-fullbox>
                <c-input
                  v-model="model.nidgrp.rec.ownref"
                  maxlength="16"
                  placeholder="请输入保函编号"
                  disabled
                ></c-input>
              </c-fullbox>
            </el-form-item>
          </c-col>
		<c-col :span="24">
			<el-form-item label="保函开立状态">
				<c-select
					v-model="model.nidgrp.rec.opnsta"
					:disabled="this.codes.judgeFlag1"
					style="width: 100%"
					placeholder="请选择保函开立状态"
					dbCode="opnsta"
					:isShowKeyAndLabel="true"
				>
				</c-select>
			</el-form-item>
		</c-col>
		<c-col :span="24">
			<el-form-item label="保函修改状态">
				<c-select
					v-model="model.nidgrp.rec.amesta"
					:disabled="this.codes.judgeFlag2"
					style="width: 100%"
					placeholder="请选择保函修改状态"
					dbCode="amesta"
					:isShowKeyAndLabel="true"
				>
				</c-select>
			</el-form-item>
		</c-col>
		<c-col :span="24">
			<el-form-item label="保函撤销状态">
				<c-select
					v-model="model.nidgrp.rec.cansta"
					:disabled="this.codes.judgeFlag3"
					style="width: 100%"
					placeholder="请选择保函撤销状态"
					dbCode="cansta"
					:isShowKeyAndLabel="true"
				>
				</c-select>
			</el-form-item>
		</c-col>
	</c-col>
	
	</c-row>
</template>
<script>
import event from "../event";
import Default from "../model/default";
export default {
	inject: ["root"],
	name: 'Ztbg',
	props: ["model", "codes"],
	data () {
		return {}
	},
}
</script>
<style lang="less" scoped>

</style>