Gidtxtpc.vue 4.19 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
liyixun committed
3 4 5 6 7 8
    <c-row>
      <c-col :span="24">
        <c-col :span="16">
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.gidtxtmodflgc == ''"
wangna committed
9
              label="保函文本可变因素"
liyixun committed
10 11
              prop="gidgrp.blk.gtxgidtxt"
            >
liyixun committed
12
              <c-input-xml
liyixun committed
13 14
                :disabled="model.gitp.gidtxtmodflgc == ''"
                type="textarea"
liyixun committed
15
                :maxRows="10"
liyixun committed
16 17 18
                :model="model.gidgrp.blk.gtxgidtxtc"
                maxlength="32500"
                show-word-limit
wangna committed
19
                placeholder="请输入保函文本可变因素"
liyixun committed
20
              ></c-input-xml>
liyixun committed
21 22 23
            </el-form-item>
            <el-form-item
              v-if="model.gitp.gidtxtmodflgc == 'X'"
wangna committed
24
              label="保函文本可变因素 - 抵消保函文本"
liyixun committed
25 26
              prop="gidgrp.blk.gtxgidtxtc"
            >
liyixun committed
27
              <c-input-xml
liyixun committed
28 29
                type="textarea"
                :modle="model.gidgrp.blk.gtxgidtxtc"
liyixun committed
30
                :maxRows="10"
liyixun committed
31 32
                maxlength="32500"
                show-word-limit
wangna committed
33
                placeholder="请输入保函文本可变因素 - 抵消保函文本"
liyixun committed
34
              ></c-input-xml>
liyixun committed
35 36 37 38 39
            </el-form-item>
          </c-col>
        </c-col>
        <c-col :span="6">
          <c-col :span="24">
liyixun committed
40 41 42 43 44
            <el-form-item label-width="0px" prop="gidgrp.rec.ownref">
              <c-input
                style="margin: 5px 0 0 10px; width: 50%"
                v-model="model.gidgrp.rec.ownref"
                maxlength="16"
wangna committed
45
                placeholder="请输入"
liyixun committed
46 47 48
                disabled
              ></c-input>
            </el-form-item>
liyixun committed
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
          </c-col>
          <c-col :span="24">
            <c-button
              style="margin: 5px 0 0 10px"
              size="small"
              type="primary"
              @click="onGitpButgetref"
            >
              获取
            </c-button>
          </c-col>
          <c-col :span="24">
            <c-checkbox
              v-model="model.gitp.gidtxtmodflgc"
              style="margin: 0 0 0 10px"
wangna committed
64
              >修改保函文本</c-checkbox
liyixun committed
65 66 67 68 69 70
            >
          </c-col>
          <c-col :span="24">
            <c-checkbox
              v-model="model.gitp.chkgidtxtc"
              style="margin: 0 0 0 10px"
wangna committed
71
              >允许</c-checkbox
liyixun committed
72 73
            >
          </c-col>
74

liyixun committed
75 76 77 78 79 80 81 82
          <c-col :span="24">
            <c-button
              disabled
              size="small"
              type="primary"
              style="margin: 5px 0 0 10px; width: 50%"
              @click="onGitpButdifc"
            >
wangna committed
83
              查看系统文本
liyixun committed
84 85
            </c-button>
          </c-col>
86

liyixun committed
87 88 89 90 91 92 93 94
          <c-col :span="24">
            <c-button
              disabled
              size="small"
              type="primary"
              style="margin: 5px 0 0 10px; width: 50%"
              @click="onGitpButdifhisc"
            >
wangna committed
95
              查看历史文本
liyixun committed
96 97
            </c-button>
          </c-col>
98

liyixun committed
99 100 101 102 103 104 105 106
          <template v-if="model.gitp.gidtxtmodflgc == 'X'">
            <c-col :span="24">
              <c-button
                size="small"
                type="primary"
                style="margin: 5px 0 0 10px; width: 50%"
                @click="onGitpShwgidtxtc"
              >
wangna committed
107
                显示文本
liyixun committed
108
              </c-button>
109
            </c-col>
liyixun committed
110 111 112 113 114 115 116 117 118 119 120 121 122
          </template>

          <c-col :span="24">
            <c-button
              disabled
              size="small"
              type="primary"
              style="margin: 5px 0 0 10px; width: 50%"
              @click="onGitpGidtxtmodc"
            >
              修改中文保函文本
            </c-button>
          </c-col>
123
        </c-col>
liyixun committed
124 125
      </c-col>
    </c-row>
126 127 128
  </div>
</template>
<script>
liyixun committed
129
import Api from "~/service/Api";
130
import commonProcess from "~/mixin/commonProcess";
liyixun committed
131 132 133
import CodeTable from "~/config/CodeTable";
import IStreamInput from "~/components/IStreamInput";
import Event from "~/model/Gitopn/Event";
134 135

export default {
liyixun committed
136 137 138 139 140 141 142 143 144 145
  components: { IStreamInput },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
146 147 148
</script>
<style>
</style>