Preperp.vue 8.01 KB
Newer Older
liyixun committed
1
<template>
huangxin committed
2
  <div class="eibs">
3 4
<!-- ============左边================= -->
<c-col :span="12" style="padding-right: 20px;">
liyixun committed
5
          <c-col :span="24">
liyixun committed
6 7
            <c-col :span="12">
              <el-form-item
wangna committed
8
                label="保函文本交付"
liyixun committed
9 10
                prop="gidgrp.rec.delori"
              >
liyixun committed
11 12 13 14 15 16 17
                <c-select
                  :disabled="
                    model.gidgrp.rec.purpos == 'ICCO' ||
                    model.gidgrp.rec.purpos == 'ISCO'
                  "
                  v-model="model.gidgrp.rec.delori"
                  style="width: 100%"
wangna committed
18
                  placeholder="请选择保函文本交付"
liyixun committed
19 20 21 22 23 24 25 26 27
                >
                  <el-option
                    v-for="item in codes.delori1"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </c-select>
liyixun committed
28 29 30 31 32 33 34 35 36 37
              </el-form-item>
            </c-col>
            <c-col :span="12">
              <c-input
                :disabled="
                  model.gidgrp.rec.delori != 'COUR' &&
                  model.gidgrp.rec.delori != 'OTHR'
                "
                v-model="model.gidgrp.rec.deloritxt"
                maxlength="35"
wangna committed
38
                placeholder="请输入保函文本交付"
liyixun committed
39 40
              ></c-input>
            </c-col>
liyixun committed
41
          </c-col>
liyixun committed
42

liyixun committed
43
          <c-col :span="24">
wangna committed
44
            <el-form-item label="发送保函文本" prop="gidgrp.rec.sndto">
liyixun committed
45 46 47 48
              <c-select
                disabled
                v-model="model.gidgrp.rec.sndto"
                style="width: 100%"
wangna committed
49
                placeholder="请选择发送保函文本"
liyixun committed
50
                :code="getValues('gidgrp.rec.sndto')"
liyixun committed
51
              >
liyixun committed
52 53 54
              </c-select>
            </el-form-item>
          </c-col>
liyixun committed
55

liyixun committed
56 57
          <c-col :span="24">
            <el-form-item
wangna committed
58
              label="交付收款人"
liyixun committed
59 60 61 62 63 64 65 66 67
              prop="gidgrp.rec.delto"
            >
              <c-select
                :disabled="
                  model.gidgrp.rec.purpos == 'ICCO' ||
                  model.gidgrp.rec.purpos == 'ISCO'
                "
                v-model="model.gidgrp.rec.delto"
                style="width: 100%"
wangna committed
68
                placeholder="请选择交付收款人"
liyixun committed
69 70 71 72 73 74 75 76 77 78 79
              >
                <el-option
                  v-for="item in codes.getame_delto"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
liyixun committed
80

liyixun committed
81 82
          <c-col :span="24">
            <el-form-item
wangna committed
83
              label="交付地址"
liyixun committed
84 85 86
              prop="gidgrp.blk.deltoadr"
            >
              <c-input
liyixun committed
87 88 89 90 91 92 93 94
                :disabled="
                  model.gidgrp.rec.purpos == 'ISCO' ||
                  model.gidgrp.rec.purpos == 'ICCO' ||
                  (model.gidgrp.rec.purpos != 'ISCO' &&
                    model.gidgrp.rec.purpos != 'ICCO' &&
                    model.gidgrp.rec.delto != '' &&
                    model.gidgrp.rec.delto != 'OTHR')
                "
liyixun committed
95 96 97 98
                type="textarea"
                v-model="model.gidgrp.blk.deltoadr"
                maxlength="210"
                show-word-limit
wangna committed
99
                placeholder="请输入交付地址"
liyixun committed
100 101 102
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
103

liyixun committed
104
          <c-col :span="24">
wangna committed
105
            <el-form-item label="转让条件" prop="gidgrp.blk.trfcond">
liyixun committed
106 107 108 109 110 111
              <c-input
                disabled
                type="textarea"
                v-model="model.gidgrp.blk.trfcond"
                maxlength="780"
                show-word-limit
wangna committed
112
                placeholder="请输入转让条件"
liyixun committed
113 114 115 116
              ></c-input>
            </el-form-item>
          </c-col>
        </c-col>
liyixun committed
117

118 119
        <!-- ============右边================= -->
        <c-col :span="12" style="padding-left: 20px;">
liyixun committed
120
          <c-col :span="24">
wangna committed
121
            <el-form-item label="收费条件"> </el-form-item>
liyixun committed
122 123
          </c-col>
          <c-col :span="24">
wangna committed
124
            <el-form-item label="我行费用责任人" prop="gidgrp.rec.chato">
liyixun committed
125 126 127
              <c-select
                v-model="model.gidgrp.rec.chato"
                style="width: 100%"
wangna committed
128
                placeholder="请选择我行费用责任人"
liyixun committed
129 130 131 132 133 134 135 136 137 138 139 140
              >
                <el-option
                  v-for="item in codes.getame_chato"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
141
            <el-form-item label="收费">
liyixun committed
142 143 144
              <c-fullbox>
                <template slot="footer">
                  <c-checkbox v-model="model.gitp.chargi.chkast"
wangna committed
145
                    >允许</c-checkbox
liyixun committed
146 147 148 149 150 151 152
                  >
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
wangna committed
153
              label="收费代码附加详情"
liyixun committed
154 155 156 157 158 159 160 161
              prop="gidgrp.blk.feetxt"
            >
              <c-fullbox>
                <c-input
                  type="textarea"
                  v-model="model.gidgrp.blk.feetxt"
                  maxlength="210"
                  show-word-limit
wangna committed
162
                  placeholder="请输入收费代码附加详情"
liyixun committed
163 164 165 166 167 168 169 170 171 172 173 174 175 176
                ></c-input>
                <template slot="footer">
                  <c-button
                    size="small"
                    type="primary"
                    icon="el-icon-search"
                    @click="onChargiButtxmsel"
                  >
                    ...
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
liyixun committed
177
        </c-col>
liyixun committed
178

liyixun committed
179 180 181 182
      <c-col :span="13">
        <c-col :span="20">
          <el-form-item
            v-if="model.gitp.prepermodflg == ''"
wangna committed
183
            label="演示说明"
liyixun committed
184 185 186 187 188 189 190 191 192
            prop="gidgrp.blk.preper"
          >
            <c-input
              disabled
              type="textarea"
              :rows="5"
              v-model="model.gidgrp.blk.preper"
              maxlength="6500"
              show-word-limit
wangna committed
193
              placeholder="请输入演示说明"
liyixun committed
194 195 196 197
            ></c-input>
          </el-form-item>
          <c-form-item
            v-if="model.gitp.prepermodflg == 'X'"
wangna committed
198
            label="演示说明"
liyixun committed
199 200 201 202 203 204 205 206
            prop="gidgrp.blk.atxpreper"
          >
            <c-input
              type="textarea"
              :rows="5"
              v-model="model.gidgrp.blk.atxpreper"
              maxlength="6500"
              show-word-limit
wangna committed
207
              placeholder="请输入演示说明"
liyixun committed
208 209 210 211 212 213 214
            ></c-input>
          </c-form-item>
        </c-col>
        <c-col :span="4">
          <c-checkbox
            v-model="model.gitp.prepermodflg"
            style="margin: 0 0 0 10px"
wangna committed
215
            >修改文本</c-checkbox
liyixun committed
216 217
          >
          <c-checkbox v-model="model.gitp.chkpreper" style="margin: 0 0 0 10px"
wangna committed
218
            >允许</c-checkbox
liyixun committed
219 220 221 222 223 224 225 226
          >
          <c-button
            disabled
            size="small"
            type="primary"
            style="margin: 5px 0 0 10px; width: 100px"
            @click="onGitpButdifpreper"
          >
wangna committed
227
            查看系统文本
liyixun committed
228 229 230 231 232 233 234 235
          </c-button>
          <c-button
            disabled
            size="small"
            style="margin: 5px 0 0 10px; width: 100px"
            type="primary"
            @click="onGitpButdifhispreper"
          >
wangna committed
236
            查看历史文本
liyixun committed
237
          </c-button>
liyixun committed
238
        </c-col>
liyixun committed
239
      </c-col>
liyixun committed
240 241 242
  </div>
</template>
<script>
liyixun committed
243
import Api from "~/service/Api";
liyixun committed
244
import commonProcess from "~/mixin/commonProcess";
liyixun committed
245 246
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getame/Event";
liyixun committed
247 248

export default {
liyixun committed
249 250 251 252 253 254 255 256 257
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
liyixun committed
258 259 260
</script>
<style>
</style>