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

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

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

liyixun committed
96 97 98 99 100 101 102 103
          <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
104
                显示文本
liyixun committed
105
              </c-button>
liyixun committed
106
            </c-col>
liyixun committed
107 108 109 110 111 112 113 114 115 116 117 118 119
          </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>
liyixun committed
120
        </c-col>
liyixun committed
121
      </c-col>
liyixun committed
122
    </c-row>
123 124 125
  </div>
</template>
<script>
liyixun committed
126
import Api from "~/service/Api";
127
import commonProcess from "~/mixin/commonProcess";
liyixun committed
128 129
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitpop/Event";
130 131

export default {
liyixun committed
132 133 134 135 136 137 138 139 140
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
141 142 143
</script>
<style>
</style>