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

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

liyixun committed
60 61
          <c-col :span="24">
            <el-form-item
wangna committed
62
              label="交付收款人"
liyixun committed
63 64 65 66 67 68 69 70 71
              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
72
                placeholder="请选择交付收款人"
liyixun committed
73 74 75 76 77 78 79 80 81 82 83
              >
                <el-option
                  v-for="item in codes.delto"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
84

liyixun committed
85 86
          <c-col :span="24">
            <el-form-item
wangna committed
87
              label="交付地址"
liyixun committed
88 89 90 91 92 93 94 95 96
              prop="gidgrp.blk.deltoadr"
            >
              <c-input
                :rows="4"
                :disabled="model.gidgrp.rec.delto == ''"
                type="textarea"
                v-model="model.gidgrp.blk.deltoadr"
                maxlength="210"
                show-word-limit
wangna committed
97
                placeholder="请输入交付地址"
liyixun committed
98 99 100
              ></c-input>
            </el-form-item>
          </c-col>
101

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

liyixun committed
117 118
        <c-col :span="11" :offset="1">
          <c-col :span="24">
wangna committed
119
            <el-form-item label="收费条款"> </el-form-item>
liyixun committed
120 121
          </c-col>
          <c-col :span="24">
wangna committed
122
            <el-form-item label="费用承担人" prop="gidgrp.rec.chato">
liyixun committed
123 124 125
              <c-select
                v-model="model.gidgrp.rec.chato"
                style="width: 100%"
wangna committed
126
                placeholder="请选择费用承担人"
liyixun committed
127 128
              >
                <el-option
panziyi committed
129
                  v-for="item in codes.gitopn_chato"
liyixun committed
130 131 132 133 134
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
135
              </c-select>
liyixun committed
136 137 138
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
139
            <el-form-item label="收费">
liyixun committed
140 141 142
              <c-fullbox>
                <template slot="footer">
                  <c-checkbox v-model="model.gitp.chargi.chkast"
wangna committed
143
                    >允许</c-checkbox
liyixun committed
144 145 146 147 148 149 150
                  >
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
wangna committed
151
              label="收费代码的其他详细信息"
liyixun committed
152 153 154 155 156 157 158 159 160
              prop="gidgrp.blk.feetxt"
            >
              <c-fullbox>
                <c-input
                  :rows="4"
                  type="textarea"
                  v-model="model.gidgrp.blk.feetxt"
                  maxlength="210"
                  show-word-limit
wangna committed
161
                  placeholder="请输入收费代码的其他详细信息"
liyixun committed
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
                ></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 :span="24">
            <c-col :span="20">
              <el-form-item
wangna committed
179
                label="演示说明"
liyixun committed
180
                prop="gidgrp.blk.preper"
181
                v-if="model.gitp.prepermodflg==''"
liyixun committed
182 183
              >
                <c-input
184
                  disabled
liyixun committed
185 186 187 188 189
                  type="textarea"
                  :rows="5"
                  v-model="model.gidgrp.blk.preper"
                  maxlength="6500"
                  show-word-limit
wangna committed
190
                  placeholder="请输入演示说明"
liyixun committed
191 192
                ></c-input>
              </el-form-item>
193 194 195 196 197 198 199 200 201 202 203 204 205 206
              <el-form-item
                label="Presentation Instr."
                prop="gidgrp.blk.atxpreper"
                v-if="model.gitp.prepermodflg=='X'"
              >
                <c-input
                  type="textarea"
                  :rows="5"
                  v-model="model.gidgrp.blk.atxpreper"
                  maxlength="6500"
                  show-word-limit
                  placeholder="请输入Presentation Instr."
                ></c-input>
              </el-form-item>
liyixun committed
207 208 209 210 211
            </c-col>
            <c-col :span="4">
              <c-checkbox
                v-model="model.gitp.prepermodflg"
                style="margin: 0 0 0 10px"
wangna committed
212
                >是否手工修改保函文本</c-checkbox
liyixun committed
213 214 215 216
              >
              <c-checkbox
                v-model="model.gitp.chkpreper"
                style="margin: 0 0 0 10px"
wangna committed
217
                >允许</c-checkbox
liyixun committed
218 219 220 221 222 223 224 225
              >
              <c-button
                disabled
                size="small"
                type="primary"
                style="margin: 5px 0 0 10px; width: 100px"
                @click="onGitpButdifpreper"
              >
wangna committed
226
                查看系统文本
liyixun committed
227 228 229 230 231 232 233 234
              </c-button>
              <c-button
                disabled
                size="small"
                style="margin: 5px 0 0 10px; width: 100px"
                type="primary"
                @click="onGitpButdifhispreper"
              >
wangna committed
235
                查看历史文本
liyixun committed
236 237 238
              </c-button>
            </c-col>
          </c-col>
239
        </c-col>
liyixun committed
240 241
      </c-col>
    </c-row>
242 243 244
  </div>
</template>
<script>
liyixun committed
245
import Api from "~/service/Api";
246
import commonProcess from "~/mixin/commonProcess";
liyixun committed
247 248
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitpop/Event";
249 250

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