Amephis.vue 1.01 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
<template>
	<div class="eibs-tab">
		<c-col :span="20">
			<el-form-item :label="$t('hitpam.修改之前的保函文本')" label-width="130px">
				<c-xml-format-editor
					v-model="codes.gtxgidtxtMark"
					disabled
					type="textarea"
					rows="8"
					maxlength="65"
					show-word-limit
					:isShowScale="true"
					placeholder="请输入修改之前的保函文本"
				></c-xml-format-editor>
		</c-col>

		<c-col :span="20">
			<el-form-item :label="$t('hitpam.迄今为止的修订')" label-width="130px">
				<c-xml-format-editor
					v-model="model.nidgrp.blk.gidtxtame"
					disabled
					type="textarea"
					rows="8"
					maxlength="65"
					show-word-limit
					:isShowScale="true"
					placeholder="请输入迄今为止的修订"
				></c-xml-format-editor>
			</el-form-item>
		</c-col>
	</div>
</template>
<script>
import event from "../event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {};
  },
  created: function() {}
};
</script>
<style>
</style>