Nidtxtpc.vue 2.74 KB
Newer Older
fukai committed
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 78 79 80 81 82 83
<template>
	<div class="eibs-tab">
		<c-row>
			<c-col :span="24">
				<c-col :span="16">
					<c-col :span="24">
						<el-form-item v-if="model.nitp.gidtxtmodflgc == ''" label="保函文本可变因素" prop="nidgrp.blk.gidtxtc">
							<c-xml-format-editor :disabled="model.nitp.gidtxtmodflgc == ''" v-model="model.nidgrp.blk.gidtxtc" placeholder="请输入保函文本可变因素" :isShowScale="true"></c-xml-format-editor>
						</el-form-item>
						<el-form-item v-if="model.nitp.gidtxtmodflgc == 'X'" label="保函文本可变因素 - 抵消保函文本" prop="nidgrp.blk.gtxgidtxtc">
							<c-xml-format-editor v-model="model.nidgrp.blk.gtxgidtxtc" placeholder="请输入保函文本可变因素 - 抵消保函文本" :isShowScale="true"></c-xml-format-editor>
						</el-form-item>
					</c-col>
				</c-col>
				<c-col :span="6">
					<c-col :span="24">
						<el-form-item label-width="0px" prop="nidgrp.rec.ownref">
							<c-input style="margin: 0 0 0 10px; width: 50%" v-model="model.nidgrp.rec.ownref" maxlength="16" placeholder="请输入" disabled></c-input>
						</el-form-item>
					</c-col>
					<c-col :span="24">
						<c-button disabled style="margin: 5px 0 5px 10px" size="small" type="primary">
							获取
						</c-button>
					</c-col>
					<c-col :span="24">
						<c-checkbox v-model="model.nitp.gidtxtmodflgc" style="margin: 0 0 0 10px;float:left;">修改保函文本</c-checkbox>
					</c-col>
					<c-col :span="24">
						<c-checkbox v-model="model.nitp.chkgidtxtc" style="margin: 0 0 0 10px;float:left;" disabled>允许</c-checkbox>
					</c-col>

					<c-col :span="24">
						<c-button disabled size="small" type="primary" style="margin: 5px 0 0 10px; width: 50%">
							查看系统文本
						</c-button>
					</c-col>

					<c-col :span="24">
						<c-button disabled size="small" type="primary" style="margin: 5px 0 0 10px; width: 50%">
							查看历史文本
						</c-button>
					</c-col>

					<template v-if="model.nitp.gidtxtmodflgc == 'X'">
						<c-col :span="24">
							<c-button size="small" type="primary" style="margin: 5px 0 0 10px; width: 50%">
								显示文本
							</c-button>
						</c-col>
					</template>

					<c-col :span="24">
						<c-button :disabled="model.nitp.gidtxtmodflg == '' || model.nidgrp.rec.giduil != 'CN'" size="small" type="primary" style="margin: 5px 0 0 10px; width: 50%">
							修改中文保函文本
						</c-button>
					</c-col>
				</c-col>
			</c-col>
		</c-row>
	</div>
</template>
<script>
import event from "../event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {};
  },
  methods: {},
  created: function() {}
};
</script>
<style scoped>
.quill-editor >>> .ql-editor {
  min-height: 250px;
  max-height: 500px;
}
</style>