Preperpc.vue 6.44 KB
Newer Older
liyixun committed
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="12">
          <c-col :span="24">
            <el-form-item
wangna committed
8
              label="保函文本交付"
liyixun committed
9 10 11 12 13 14
              prop="gidgrp.rec.deloric"
            >
              <c-fullbox>
                <c-select
                  v-model="model.gidgrp.rec.deloric"
                  style="width: 100%"
wangna committed
15
                  placeholder="请选择保函文本交付"
liyixun committed
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
                >
                  <el-option
                    v-for="item in codes.deloric"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </c-select>
                <template slot="footer">
                  <c-input
                    :disabled="
                      model.gidgrp.rec.deloric != 'OTHR' &&
                      model.gidgrp.rec.deloric != 'COUR'
                    "
                    v-model="model.gidgrp.rec.deloritxtc"
                    maxlength="35"
wangna committed
33
                    placeholder="请输入保函文本交付"
liyixun committed
34 35 36 37 38 39 40
                  ></c-input>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
wangna committed
41
              label="交付收款人"
liyixun committed
42 43 44 45 46
              prop="gidgrp.rec.deltoc"
            >
              <c-select
                v-model="model.gidgrp.rec.deltoc"
                style="width: 100%"
wangna committed
47
                placeholder="请选择交付收款人"
liyixun committed
48 49 50 51 52 53 54 55 56 57 58 59 60
              >
                <el-option
                  v-for="item in codes.deltoc"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
wangna committed
61
              label="交付地址"
liyixun committed
62 63 64 65 66 67 68 69 70
              prop="gidgrp.blk.deltoadrc"
            >
              <c-input
                :disabled="model.gidgrp.rec.deltoc == 'BENE'"
                type="textarea"
                rows="4"
                v-model="model.gidgrp.blk.deltoadrc"
                maxlength="35"
                show-word-limit
wangna committed
71
                placeholder="请输入交付地址"
liyixun committed
72 73 74 75 76 77 78
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <c-col :span="20">
              <el-form-item
                v-if="model.gitp.prepercmodflg == ''"
wangna committed
79
                label="演示说明"
liyixun committed
80 81 82 83 84 85 86 87 88
                prop="gidgrp.blk.preperc"
              >
                <c-input
                  disabled
                  rows="6"
                  type="textarea"
                  v-model="model.gidgrp.blk.preperc"
                  maxlength="65"
                  show-word-limit
wangna committed
89
                  placeholder="请输入演示说明"
liyixun committed
90 91 92 93
                ></c-input>
              </el-form-item>
              <c-form-item
                v-if="model.gitp.prepercmodflg == 'X'"
wangna committed
94
                label="演示说明"
liyixun committed
95 96 97 98 99 100 101 102
                prop="gidgrp.blk.atxpreperc"
              >
                <c-input
                  rows="6"
                  type="textarea"
                  v-model="model.gidgrp.blk.atxpreperc"
                  maxlength="65"
                  show-word-limit
wangna committed
103
                  placeholder="请输入演示说明"
liyixun committed
104 105
                ></c-input>
              </c-form-item>
liyixun committed
106
            </c-col>
liyixun committed
107 108 109 110
            <c-col :span="4">
              <c-checkbox
                v-model="model.gitp.prepercmodflg"
                style="margin: 0 0 0 10px"
wangna committed
111
                >修改文本</c-checkbox
liyixun committed
112 113 114 115
              >
              <c-checkbox
                v-model="model.gitp.chkpreperc"
                style="margin: 0 0 0 10px"
wangna committed
116
                >允许</c-checkbox
liyixun committed
117 118 119 120 121 122 123 124
              >
              <c-button
                disabled
                size="small"
                type="primary"
                style="margin: 5px 0 0 10px; width: 98px"
                @click="onGitpButdifpreperc"
              >
wangna committed
125
                查看系统文本
liyixun committed
126 127 128 129 130 131 132 133
              </c-button>
              <c-button
                disabled
                size="small"
                style="margin: 5px 0 0 10px; width: 98px"
                type="primary"
                @click="onGitpButdifhispreperc"
              >
wangna committed
134
                查看历史文本
liyixun committed
135
              </c-button>
liyixun committed
136
            </c-col>
liyixun committed
137
          </c-col>
liyixun committed
138
        </c-col>
liyixun committed
139 140 141 142
        <c-col :span="11" :offset="1">
          <c-col :span="24">
            <c-col :span="20">
              <el-form-item
wangna committed
143
                label="收费代码附加详情"
liyixun committed
144 145 146 147 148 149 150 151
                prop="gidgrp.blk.feetxtc"
              >
                <c-input
                  rows="4"
                  type="textarea"
                  v-model="model.gidgrp.blk.feetxtc"
                  maxlength="35"
                  show-word-limit
wangna committed
152
                  placeholder="请输入收费代码附加详情"
liyixun committed
153 154 155 156 157 158 159 160 161 162 163 164 165
                ></c-input>
              </el-form-item>
            </c-col>
            <c-col :span="4">
              <c-button
                style="margin: 5px 0 0 10px"
                size="small"
                type="primary"
                icon="el-icon-search"
                @click="onChargicButtxmsel"
              >
                ...
              </c-button>
liyixun committed
166

liyixun committed
167 168 169
              <c-checkbox
                style="margin: 0 0 0 10px"
                v-model="model.gitp.chargic.chkast"
wangna committed
170
                >允许</c-checkbox
liyixun committed
171 172 173 174 175
              >
            </c-col>
          </c-col>
          <c-col :span="24">
            <el-form-item
wangna committed
176
              label="转让条件"
liyixun committed
177 178 179 180 181 182 183 184 185
              prop="gidgrp.blk.trfcondc"
            >
              <c-input
                disabled
                rows="5"
                type="textarea"
                v-model="model.gidgrp.blk.trfcondc"
                maxlength="65"
                show-word-limit
wangna committed
186
                placeholder="请输入转让条件"
liyixun committed
187 188 189
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
190
        </c-col>
liyixun committed
191 192
      </c-col>
    </c-row>
liyixun committed
193 194 195
  </div>
</template>
<script>
liyixun committed
196
import Api from "~/service/Api";
liyixun committed
197
import commonProcess from "~/mixin/commonProcess";
liyixun committed
198 199
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitame/Event";
liyixun committed
200 201

export default {
liyixun committed
202 203 204 205 206 207 208 209 210
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
liyixun committed
211 212 213
</script>
<style>
</style>