Gidtxtpc.vue 4.04 KB
Newer Older
1
<template>
huangxin committed
2
  <div class="eibs">
3 4
<!-- ============左边================= -->
        <c-col :span="12" style="padding-right: 20px;">
liyixun committed
5 6
          <c-col :span="24">
            <el-form-item
7
              v-if="model.gitp.gidtxtmodflgc == ''"
wangna committed
8
              label="保函文本可变因素"
liyixun committed
9 10
              prop="gidgrp.blk.gtxgidtxt"
            >
11
              <c-input-xml
liyixun committed
12 13 14
                :disabled="model.gitp.gidtxtmodflgc == ''"
                type="textarea"
                rows="15"
15 16
                :model="model.gidgrp.blk.gtxgidtxtc"
                maxlength="65"
liyixun committed
17
                show-word-limit
wangna committed
18
                placeholder="请输入保函文本可变因素"
19 20 21 22
              ></c-input-xml>
            </el-form-item>
            <el-form-item
              v-if="model.gitp.gidtxtmodflgc == 'X'"
wangna committed
23
              label="保函文本可变因素 - 抵消保函文本"
24 25 26 27 28 29 30 31
              prop="gidgrp.blk.gtxgidtxtc"
            >
              <c-input-xml
                type="textarea"
                :modle="model.gidgrp.blk.gtxgidtxtc"
                rows="15"
                maxlength="65"
                show-word-limit
wangna committed
32
                placeholder="请输入保函文本可变因素 - 抵消保函文本"
33
              ></c-input-xml>
liyixun committed
34 35 36
            </el-form-item>
          </c-col>
        </c-col>
37 38
        <!-- ============右边================= -->
        <c-col :span="12" style="padding-left: 20px;">
liyixun committed
39 40 41 42 43
          <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>
121 122 123
  </div>
</template>
<script>
liyixun committed
124
import Api from "~/service/Api";
125
import commonProcess from "~/mixin/commonProcess";
liyixun committed
126 127
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitpop/Event";
128 129

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