Preperp.vue 7.33 KB
Newer Older
wangna committed
1 2
<template>
  <div class="eibs-tab">
wangna committed
3
    <c-row>
wangna committed
4
      <c-col :span="24">
wangna committed
5 6 7
        <c-col :span="11">
          <c-col :span="24">
            <el-form-item
wangna committed
8
              label="保函文本交付"
wangna committed
9 10 11 12 13 14
              prop="gidgrp.rec.delori"
            >
              <c-fullbox>
                <c-select
                  v-model="model.gidgrp.rec.delori"
                  style="width: 100%"
wangna committed
15
                  placeholder="请选择保函文本交付"
wangna committed
16 17
                >
                  <el-option
wangna committed
18
                    v-for="item in codes.delori1"
wangna committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </c-select>
                <template slot="footer">
                  <c-input
                    :disabled="
                      model.gidgrp.rec.delori == '' ||
                      model.gidgrp.rec.delori == 'COLL' ||
                      model.gidgrp.rec.delori == 'MAIL' ||
                      model.gidgrp.rec.delori == 'MESS' ||
                      model.gidgrp.rec.delori == 'REGM'
                    "
                    v-model="model.gidgrp.rec.deloritxt"
                    maxlength="35"
wangna committed
36
                    placeholder="请输入保函文本交付"
wangna committed
37 38 39 40 41 42 43
                  ></c-input>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>

          <c-col :span="24">
wangna committed
44
            <el-form-item label="发送保函文本" prop="gidgrp.rec.sndto">
wangna committed
45 46 47
              <c-select
                v-model="model.gidgrp.rec.sndto"
                style="width: 100%"
wangna committed
48
                placeholder="请选择发送保函文本"
wangna committed
49 50 51 52 53 54
                :disabled="
                  model.gidgrp.rec.hndtyp == 'OC' ||
                  model.gidgrp.rec.hndtyp == 'FR' ||
                  model.gidgrp.rec.hndtyp == 'FG'
                "
                :code="sndto"
wangna committed
55 56 57 58 59 60 61
              >
              </c-select>
            </el-form-item>
          </c-col>

          <c-col :span="24">
            <el-form-item
wangna committed
62
              label="交付收款人"
wangna committed
63 64 65 66 67
              prop="gidgrp.rec.delto"
            >
              <c-select
                v-model="model.gidgrp.rec.delto"
                style="width: 100%"
wangna committed
68
                placeholder="请选择交付收款人"
wangna committed
69 70
              >
                <el-option
wangna committed
71
                  v-for="item in codes.delto1"
wangna committed
72 73 74 75 76 77 78 79 80 81 82
                  :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
83
              label="交付地址"
wangna committed
84 85 86 87
              prop="gidgrp.blk.deltoadr"
            >
              <c-input
                :disabled="
wangna committed
88 89 90
                  model.gidgrp.rec.delto == 'APPL' ||
                  model.gidgrp.rec.delto == 'BENE'
                "
wangna committed
91
                type="textarea"
wangna committed
92
                :rows="4"
wangna committed
93 94 95
                v-model="model.gidgrp.blk.deltoadr"
                maxlength="35"
                show-word-limit
wangna committed
96
                placeholder="请输入交付地址"
wangna committed
97 98 99 100 101
              ></c-input>
            </el-form-item>
          </c-col>

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

        <c-col :span="11" :offset="1">
          <c-col :span="24">
wangna committed
117
            <el-form-item label="收费条件"> </el-form-item>
wangna committed
118 119 120
          </c-col>

          <c-col :span="24">
wangna committed
121
            <el-form-item label="我行费用责任人" prop="gidgrp.rec.chato">
wangna committed
122 123 124
              <c-select
                v-model="model.gidgrp.rec.chato"
                style="width: 100%"
wangna committed
125
                placeholder="请选择我行费用责任人"
wangna committed
126 127 128 129 130 131 132 133 134 135 136 137 138
              >
                <el-option
                  v-for="item in codes.trnchato"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>

          <c-col :span="24">
wangna committed
139
            <el-form-item label="收费">
wangna committed
140 141 142
              <c-fullbox>
                <template slot="footer">
                  <c-checkbox v-model="model.gitp.chargi.chkast"
wangna committed
143
                    >允许</c-checkbox
wangna committed
144 145 146 147 148
                  >
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
wangna committed
149

wangna committed
150 151
          <c-col :span="24">
            <el-form-item
wangna committed
152
              label="收费代码附加详情"
wangna committed
153 154 155 156 157 158 159 160
              prop="gidgrp.blk.feetxt"
            >
              <c-fullbox>
                <c-input
                  type="textarea"
                  v-model="model.gidgrp.blk.feetxt"
                  maxlength="35"
                  show-word-limit
wangna committed
161
                  placeholder="请输入收费代码附加详情"
wangna committed
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
                ></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>
        </c-col>
      </c-col>

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

export default {
wangna committed
232
  inject: ["root"],
wangna committed
233
  props: ["model", "sndto"],
wangna committed
234 235 236 237 238 239 240 241 242 243 244
  mixins: [commonProcess],
  data() {
    return {
      codes: {
        ...CodeTable,
      },
    };
  },
  methods: { ...Event },
  created: function () {},
};
wangna committed
245 246 247
</script>
<style>
</style>