Gitsetp1.vue 15.2 KB
Newer Older
1
<template>
huangxin committed
2
  <div class="eibs">
liyixun committed
3
    <!-- -----------上层------------- -->
4 5
      <!-- ============左边================= -->
<c-col :span="12" style="padding-right: 20px;">
liyixun committed
6
          <c-col :span="24">
wangna committed
7
            <c-form-item label="保函编号" prop="gidgrp.rec.ownref">
liyixun committed
8 9 10 11 12
              <c-fullbox>
                <c-input
                  disabled
                  v-model="model.gidgrp.rec.ownref"
                  maxlength="16"
wangna committed
13
                  placeholder="请输入保函编号"
liyixun committed
14 15 16
                ></c-input>
                <template slot="footer">
                  <c-button
17
                  style="float:right;"
liyixun committed
18 19 20
                    size="small"
                    type="primary"
                  >
nanrui committed
21
                    <i class="el-icon-info" style="font-size:15px"></i>
liyixun committed
22 23 24 25 26
                  </c-button>
                </template>
              </c-fullbox>
            </c-form-item>
          </c-col>
liyixun committed
27

liyixun committed
28
          <c-col :span="24">
wangna committed
29
            <c-form-item label="索赔编号" prop="gcdgrp.rec.ownref">
liyixun committed
30 31 32 33 34
              <c-fullbox>
                <c-input
                  disabled
                  v-model="model.gcdgrp.rec.ownref"
                  maxlength="16"
wangna committed
35
                  placeholder="请输入索赔编号"
liyixun committed
36 37 38 39 40 41 42
                ></c-input>
                <template slot="footer">
                  <c-button
                    style="margin: 0 10px 0 10px; padding: 0 12px"
                    size="small"
                    type="primary"
                  >
nanrui committed
43
                    <i class="el-icon-info" style="font-size:15px"></i>
liyixun committed
44
                  </c-button>
liyixun committed
45

liyixun committed
46 47 48 49 50 51 52 53 54 55 56 57
                  <c-button
                    style="margin: 0 0"
                    disabled
                    size="small"
                    type="primary"
                  >
                    获取
                  </c-button>
                </template>
              </c-fullbox>
            </c-form-item>
          </c-col>
liyixun committed
58

liyixun committed
59 60
          <c-col :span="24">
            <c-col :span="12">
wangna committed
61
              <c-form-item label="索赔金额" prop="gcdgrp.cbs.max.cur">
liyixun committed
62 63 64 65
                <c-input
                  disabled
                  v-model="model.gcdgrp.cbs.max.cur"
                  maxlength="3"
wangna committed
66
                  placeholder="请输入索赔金额"
liyixun committed
67 68 69 70 71 72 73 74
                ></c-input>
              </c-form-item>
            </c-col>
            <c-col :span="12">
              <c-form-item label-width="5px" prop="gcdgrp.cbs.max.amt">
                <c-input
                  disabled
                  v-model="model.gcdgrp.cbs.max.amt"
wangna committed
75
                  placeholder="请输入"
liyixun committed
76 77 78 79
                ></c-input>
              </c-form-item>
            </c-col>
          </c-col>
liyixun committed
80

liyixun committed
81 82
          <c-col :span="24">
            <c-col :span="12">
wangna committed
83
              <c-form-item label="保函余额" prop="gcdgrp.cbs.opn1.cur">
liyixun committed
84 85 86 87
                <c-input
                  disabled
                  v-model="model.gcdgrp.cbs.opn1.cur"
                  maxlength="3"
wangna committed
88
                  placeholder="请输入保函余额"
liyixun committed
89 90 91 92 93 94 95 96
                ></c-input>
              </c-form-item>
            </c-col>
            <c-col :span="12">
              <c-form-item label-width="5px" prop="gcdgrp.cbs.opn1.amt">
                <c-input
                  disabled
                  v-model="model.gcdgrp.cbs.opn1.amt"
wangna committed
97
                  placeholder="请输入"
liyixun committed
98 99
                ></c-input>
              </c-form-item>
liyixun committed
100 101
            </c-col>
          </c-col>
liyixun committed
102
          <c-col :span="24">
wangna committed
103
            <el-form-item label="保函种类" prop="gidgrp.rec.gartyp">
liyixun committed
104 105 106 107 108
              <c-select
                :code="codes.typgar2"
                disabled
                v-model="model.gidgrp.rec.gartyp"
                style="width: 100%"
wangna committed
109
                placeholder="请输入保函种类"
liyixun committed
110 111 112 113 114
              >
              </c-select>
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
115
            <el-form-item label="索赔日期" prop="gcdgrp.rec.clmdat">
liyixun committed
116 117 118 119 120
              <c-date-picker
                disabled
                type="date"
                v-model="model.gcdgrp.rec.clmdat"
                style="width: 100%"
wangna committed
121
                placeholder="请选择索赔日期"
liyixun committed
122 123 124 125
              ></c-date-picker>
            </el-form-item>
          </c-col>
        </c-col>
liyixun committed
126

127 128
        <!-- ============右边================= -->
        <c-col :span="12" style="padding-left: 20px;">
liyixun committed
129 130
          <c-col :span="24">
            <c-col :span="12">
wangna committed
131
              <c-form-item label="保函余额" prop="gidgrp.cbs.opn1.cur">
liyixun committed
132 133 134 135
                <c-input
                  disabled
                  v-model="model.gidgrp.cbs.opn1.cur"
                  maxlength="3"
wangna committed
136
                  placeholder="请输入保函余额"
liyixun committed
137 138 139 140 141 142 143 144
                ></c-input>
              </c-form-item>
            </c-col>
            <c-col :span="12">
              <c-form-item label-width="5px" prop="gidgrp.cbs.opn1.amt">
                <c-input
                  disabled
                  v-model="model.gidgrp.cbs.opn1.amt"
wangna committed
145
                  placeholder="请输入"
liyixun committed
146 147 148
                ></c-input>
              </c-form-item>
            </c-col>
liyixun committed
149
          </c-col>
liyixun committed
150
          <c-col :span="24">
wangna committed
151
            <c-form-item label="简略信息" prop="gcdgrp.rec.nam">
liyixun committed
152 153 154 155
              <c-input
                disabled
                v-model="model.gcdgrp.rec.nam"
                maxlength="40"
wangna committed
156
                placeholder="请输入简略信息"
liyixun committed
157 158 159 160
              ></c-input>
            </c-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
161
            <c-form-item label="申请人参考号" prop="gcdgrp.apl.pts.ref">
liyixun committed
162 163 164 165
              <c-input
                disabled
                v-model="model.gcdgrp.apl.pts.ref"
                maxlength="16"
wangna committed
166
                placeholder="请输入申请人参考号"
liyixun committed
167 168 169 170
              ></c-input>
            </c-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
171
            <c-form-item label="当事人名称" prop="gcdgrp.apl.pts.nam">
liyixun committed
172 173 174 175
              <c-input
                disabled
                v-model="model.gcdgrp.apl.pts.nam"
                maxlength="40"
wangna committed
176
                placeholder="请输入当事人名称"
liyixun committed
177 178 179 180
              ></c-input>
            </c-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
181
            <c-form-item label="受益人参考号" prop="gcdgrp.ben.pts.ref">
liyixun committed
182 183 184
              <c-input
                v-model="model.gcdgrp.ben.pts.ref"
                maxlength="16"
wangna committed
185
                placeholder="请输入受益人参考号"
liyixun committed
186 187 188 189
              ></c-input>
            </c-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
190
            <c-form-item label="当事人名称" prop="gcdgrp.ben.pts.nam">
liyixun committed
191 192 193 194
              <c-input
                disabled
                v-model="model.gcdgrp.ben.pts.nam"
                maxlength="40"
wangna committed
195
                placeholder="请输入当事人名称"
liyixun committed
196 197 198 199
              ></c-input>
            </c-form-item>
          </c-col>
          <c-col :span="24">
200 201
            <c-col :span="6">
              <el-form-item label=" " prop="gctp.adaflg" label-width="120px" style=" float:left;">
liyixun committed
202
              <c-checkbox disabled v-model="model.gctp.adaflg"
wangna committed
203
                >附加金额</c-checkbox
liyixun committed
204
              >
205
            </el-form-item>
liyixun committed
206 207 208 209
            </c-col>
          </c-col>
        </c-col>

210

liyixun committed
211

liyixun committed
212
    <!----------下层-------- -->
213 214
<!-- ============左边================= -->
<c-col :span="12" style="padding-right: 20px;">
liyixun committed
215 216
          <c-col :span="24">
            <c-col :span="12">
wangna committed
217
              <c-form-item label="索赔金额" prop="gcdgrp.cbs.max.cur">
liyixun committed
218 219 220 221
                <c-input
                  disabled
                  v-model="model.gcdgrp.cbs.max.cur"
                  maxlength="3"
wangna committed
222
                  placeholder="请输入索赔金额"
liyixun committed
223 224 225 226 227 228 229 230
                ></c-input>
              </c-form-item>
            </c-col>
            <c-col :span="12">
              <c-form-item label-width="5px" prop="gcdgrp.cbs.max.amt">
                <c-input
                  disabled
                  v-model="model.gcdgrp.cbs.max.amt"
wangna committed
231
                  placeholder="请输入"
liyixun committed
232 233 234 235 236 237
                ></c-input>
              </c-form-item>
            </c-col>
          </c-col>
          <c-col :span="24">
            <c-col :span="12">
wangna committed
238
              <el-form-item label="附加金额" prop="gcdgrp.cbs.opn2.cur">
liyixun committed
239 240 241 242
                <c-select
                  disabled
                  v-model="model.gcdgrp.cbs.opn2.cur"
                  style="width: 100%"
wangna committed
243
                  placeholder="请选择附加金额"
liyixun committed
244 245 246 247 248 249 250 251 252 253 254 255 256 257
                >
                </c-select>
              </el-form-item>
            </c-col>
            <c-col :span="12">
              <c-form-item label-width="5px" prop="gcdgrp.cbs.max2.amt">
                <c-input
                  disabled
                  v-model="model.gcdgrp.cbs.max2.amt"
                  placeholder=""
                ></c-input>
              </c-form-item>
            </c-col>
            <c-col :span="24">
258 259
              <c-col :span="6">
                <c-form-item  prop="gcdgrp.rec.cannowflg" style=" float:left;">
panziyi committed
260
                  <c-checkbox v-model="model.gcdgrp.rec.cannowflg" checked
wangna committed
261
                    >保函注销情况下的付款</c-checkbox
liyixun committed
262 263
                  >
                </c-form-item>
liyixun committed
264
              </c-col>
liyixun committed
265 266
            </c-col>
            <c-col :span="24">
267 268
              <c-col :span="6">
                <c-form-item  prop="mtabut.clsflg" style=" float:left;">
liyixun committed
269
                  <c-checkbox v-model="model.mtabut.clsflg"
wangna committed
270
                    >是否闭卷</c-checkbox
liyixun committed
271 272 273 274 275
                  >
                </c-form-item>
              </c-col>
            </c-col>
            <c-col :span="24">
276 277
              <c-col :span="6">
                <c-form-item  prop="gcdgrp.rec.frepayflg" style=" float:left;">
liyixun committed
278
                  <c-checkbox v-model="model.gcdgrp.rec.frepayflg"
wangna committed
279
                    >免费付款</c-checkbox
liyixun committed
280 281
                  >
                </c-form-item>
liyixun committed
282
              </c-col>
liyixun committed
283
            </c-col>
liyixun committed
284
          </c-col>
liyixun committed
285
        </c-col>
286 287
        <!-- ============右边================= -->
        <c-col :span="12" style="padding-left: 20px;">
liyixun committed
288
          <c-col :span="24">
wangna committed
289
            <c-form-item label="索赔当事人" prop="gcdgrp.rec.docprbrol">
liyixun committed
290 291
              <c-select
                v-model="model.gcdgrp.rec.docprbrol"
wangna committed
292
                placeholder="请选择索赔当事人"
liyixun committed
293 294 295 296 297 298 299 300 301 302 303 304
                style="width: 100%"
                disabled
              >
                <el-option
                  v-for="item in codes.docprbrol"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
              </c-select>
            </c-form-item>
          </c-col>
liyixun committed
305

liyixun committed
306
          <c-col :span="24">
wangna committed
307
            <el-form-item label="保函编号" prop="gcdgrp.prb.pts.ref">
liyixun committed
308 309 310
              <c-input
                v-model="model.gcdgrp.prb.pts.ref"
                maxlength="16"
wangna committed
311
                placeholder="请输入保函编号"
liyixun committed
312 313 314 315
                disabled
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
316

liyixun committed
317 318 319 320 321 322 323
          <c-col :span="24">
            <el-form-item label="" prop="gcdgrp.prb.pts.extkey">
              <c-fullbox>
                <c-input
                  disabled
                  v-model="model.gcdgrp.prb.pts.extkey"
                  maxlength="16"
wangna committed
324
                  placeholder="请输入"
liyixun committed
325 326 327 328 329 330 331 332 333 334 335
                  @keyup.enter.native="
                    showGridPromptDialog('gcdgrp.prb.pts.extkey')
                  "
                ></c-input>
                <template slot="footer">
                  <c-button
                    v-model="model.gctp.prbp.ptsget.sdamod.seainf"
                    style="margin: 0 10px 0 10px; padding: 0 12px"
                    size="small"
                    type="primary"
                  >
nanrui committed
336
                    <i class="el-icon-info"></i>
liyixun committed
337 338 339 340 341 342 343 344 345 346 347 348 349
                  </c-button>
                  <c-button
                    size="small"
                    type="primary"
                    v-model="model.gctp.prbp.det"
                    style="margin: 0 0"
                  >
                    Temp.
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
liyixun committed
350

liyixun committed
351 352 353 354 355 356 357 358 359
          <c-col :span="24">
            <el-form-item label="" prop="gcdgrp.prb.pts.adrblk">
              <c-input
                disabled
                type="textarea"
                rows="4"
                v-model="model.gcdgrp.prb.pts.adrblk"
                maxlength="100"
                show-word-limit
wangna committed
360
                placeholder="请输入"
liyixun committed
361 362 363 364
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
365
            <c-form-item label="向索人" prop="gcdgrp.rec.payrol">
liyixun committed
366 367
              <c-select
                v-model="model.gcdgrp.rec.payrol"
wangna committed
368
                placeholder="请选择向索人"
panziyi committed
369
                disabled
liyixun committed
370 371 372 373 374 375 376 377 378 379 380
                style="width: 100%"
              >
                <el-option
                  v-for="item in codes.payrol"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                ></el-option>
              </c-select>
            </c-form-item>
          </c-col>
liyixun committed
381

liyixun committed
382 383 384 385 386 387 388
          <c-col :span="24">
            <el-form-item label="" prop="gcdgrp.oth.pts.extkey">
              <c-fullbox>
                <c-input
                  disabled
                  v-model="model.gcdgrp.oth.pts.extkey"
                  maxlength="16"
wangna committed
389
                  placeholder="请输入"
liyixun committed
390 391 392 393 394 395 396 397 398 399 400 401
                  @keyup.enter.native="
                    showGridPromptDialog('gcdgrp.oth.pts.extkey')
                  "
                >
                </c-input>
                <template slot="footer">
                  <c-button
                    v-model="model.gctp.othp.ptsget.sdamod.seainf"
                    style="margin: 0 10px 0 10px; padding: 0 12px"
                    size="small"
                    type="primary"
                  >
nanrui committed
402
                    <i class="el-icon-info"></i>
liyixun committed
403 404 405 406 407 408 409
                  </c-button>
                  <c-button
                    v-model="model.gctp.othp.det"
                    style="margin: 0 0"
                    size="small"
                    type="primary"
                  >
wangna committed
410
                    详情
liyixun committed
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>

          <c-col :span="24">
            <el-form-item label="" prop="gcdgrp.oth.pts.adrblk">
              <c-input
                disabled
                type="textarea"
                rows="4"
                v-model="model.gcdgrp.oth.pts.adrblk"
                maxlength="100"
                show-word-limit
wangna committed
426
                placeholder="请输入"
liyixun committed
427 428
              ></c-input>
            </el-form-item>
liyixun committed
429
          </c-col>
liyixun committed
430
        </c-col>
liyixun committed
431
  </div>
432 433
</template>
<script>
liyixun committed
434
import Api from "~/service/Api";
435
import commonProcess from "~/mixin/commonProcess";
liyixun committed
436 437
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getset/Event";
438 439

export default {
liyixun committed
440 441 442 443 444
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
liyixun committed
445
  },
liyixun committed
446 447 448 449 450 451 452
  computed: {},
  methods: { ...Event },
  created: function () {},
  watch: {
    "model.mtabut.clsflg": function () {
      if (this.model.mtabut.clsflg == "C") {
        this.model.mtabut.clsflg = "X";
liyixun committed
453
      }
liyixun committed
454 455 456
    },
  },
};
457 458 459
</script>
<style>
</style>