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

              <c-col :span="10">
                <el-form-item prop="gidgrp.rec.deloritxt" label-width="5px">
liyixun committed
32 33 34 35 36 37 38
                  <c-input
                    :disabled="
                      model.gidgrp.rec.delori != 'COUR' &&
                      model.gidgrp.rec.delori != 'OTHR'
                    "
                    v-model="model.gidgrp.rec.deloritxt"
                    maxlength="35"
wangna committed
39
                    placeholder="请输入保函文本交付"
liyixun committed
40 41 42
                  ></c-input>
            </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
        </c-col>
116 117
        <!-- ============右边================= -->
        <c-col :span="12" style="padding-left: 20px;">
liyixun committed
118
          <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
                ></c-input>
                <template slot="footer">
                  <c-button
                    size="small"
                    type="primary"
huangxin committed
167
                    icon="el-icon-more"
liyixun committed
168 169 170 171 172 173 174 175
                    @click="onChargiButtxmsel"
                  >
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
          <c-col :span="24">
huangxin committed
176
            <c-col :span="18">
liyixun committed
177
              <el-form-item
wangna committed
178
                label="演示说明"
liyixun committed
179
                prop="gidgrp.blk.preper"
180
                v-if="model.gitp.prepermodflg==''"
liyixun committed
181 182
              >
                <c-input
183
                  disabled
liyixun committed
184
                  type="textarea"
huangxin committed
185
                  :rows="7"
liyixun committed
186 187 188
                  v-model="model.gidgrp.blk.preper"
                  maxlength="6500"
                  show-word-limit
wangna committed
189
                  placeholder="请输入演示说明"
liyixun committed
190 191
                ></c-input>
              </el-form-item>
192 193 194 195 196 197 198
              <el-form-item
                label="Presentation Instr."
                prop="gidgrp.blk.atxpreper"
                v-if="model.gitp.prepermodflg=='X'"
              >
                <c-input
                  type="textarea"
huangxin committed
199
                  :rows="7"
200 201 202 203 204 205
                  v-model="model.gidgrp.blk.atxpreper"
                  maxlength="6500"
                  show-word-limit
                  placeholder="请输入Presentation Instr."
                ></c-input>
              </el-form-item>
liyixun committed
206
            </c-col>
huangxin committed
207
            <c-col :span="6">
liyixun committed
208 209
              <c-checkbox
                v-model="model.gitp.prepermodflg"
huangxin committed
210
                style="margin: 0 0 0 10px;float:left"
wangna committed
211
                >是否手工修改保函文本</c-checkbox
liyixun committed
212 213 214
              >
              <c-checkbox
                v-model="model.gitp.chkpreper"
huangxin committed
215
                style="margin: 0 0 0 10px;float:left"
wangna committed
216
                >允许</c-checkbox
liyixun committed
217 218 219 220 221
              >
              <c-button
                disabled
                size="small"
                type="primary"
huangxin committed
222
                style="margin: 5px 0 0 10px"
liyixun committed
223 224
                @click="onGitpButdifpreper"
              >
wangna committed
225
                查看系统文本
liyixun committed
226 227 228 229
              </c-button>
              <c-button
                disabled
                size="small"
huangxin committed
230
                style="margin: 5px 0 0 10px;"
liyixun committed
231 232 233
                type="primary"
                @click="onGitpButdifhispreper"
              >
wangna committed
234
                查看历史文本
liyixun committed
235 236 237
              </c-button>
            </c-col>
          </c-col>
238 239 240 241
        </c-col>
  </div>
</template>
<script>
liyixun committed
242
import Api from "~/service/Api";
243
import commonProcess from "~/mixin/commonProcess";
liyixun committed
244 245
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitpop/Event";
246 247

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