Rgfdet.vue 2.79 KB
Newer Older
lianyang committed
1 2 3
<template>
  <div class="eibs-tab">
    <!-- SF000060 : 远期单据指示 -->
lianyang committed
4 5 6
  <c-col :span="20">
    <c-col :span="21">
      <c-form-item label="Instructions regarding Usance Documengts" prop="bedsnd.usadet">
lianyang committed
7 8 9
        <c-input
          type="textarea"
          v-model="model.bedsnd.usadet"
lianyang committed
10 11
          maxlength="650"
          :rows="8"
lianyang committed
12
          show-word-limit
lianyang committed
13
          placeholder="请输入远期单据指示"
lianyang committed
14 15 16
        ></c-input>
      </c-form-item>
    </c-col>
lianyang committed
17
    <c-col :span="3">
lianyang committed
18 19 20 21
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
22
        @click="showGridPromptDialog('bedsnd.usatxt.buttxmsel',null,null,{TXT:'bedsnd.usadet'},{TXT:false},'doxpDialog')"
lianyang committed
23
      >
24
      <!-- @click="onUsatxtButtxmsel" -->
lianyang committed
25
        ...
lianyang committed
26 27
      </c-button>
    </c-col>
lianyang committed
28
  </c-col>
lianyang committed
29

lianyang committed
30 31 32 33
    <!-- SF000059 : 偿付条款 -->
  <c-col :span="20">
    <c-col :span="21">
      <c-form-item label="Reimmursement Pharse" prop="bedsnd.addphr">
lianyang committed
34 35 36
        <c-input
          type="textarea"
          v-model="model.bedsnd.addphr"
lianyang committed
37 38
          maxlength="650"
          :rows="8"
lianyang committed
39
          show-word-limit
lianyang committed
40
          placeholder="请输入偿付条款"
lianyang committed
41 42 43 44
        ></c-input>
      </c-form-item>
    </c-col>

lianyang committed
45
    <c-col :span="3">
lianyang committed
46 47 48 49
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
50
        @click="showGridPromptDialog('bedsnd.rgfphr.buttxmsel',null,null,{TXT:'bedsnd.addphr'},{TXT:false},'doxpDialog')"
lianyang committed
51
      >
52
      <!-- @click="onRgfphrButtxmsel" -->
lianyang committed
53
        ...
lianyang committed
54 55
      </c-button>
    </c-col>
lianyang committed
56
  </c-col>
lianyang committed
57

lianyang committed
58 59 60
    <!-- SG000345 : 新受益人地址 -->
    <c-col :span="20">
      <c-form-item label="New Ben.Address" prop="bedsnd.newbenadr">
lianyang committed
61 62 63
        <c-input
          type="textarea"
          v-model="model.bedsnd.newbenadr"
lianyang committed
64 65
          maxlength="175"
          :rows="5"
lianyang committed
66
          show-word-limit
lianyang committed
67 68 69
          placeholder="请输入新受益人地址"
          :disabled="model.ameadrflg==''"
          style="width:60%"
lianyang committed
70 71 72 73
        ></c-input>
      </c-form-item>
    </c-col>
    <!-- S0000347 : 新受益人编号 -->
lianyang committed
74 75
    <c-col :span="20">
      <c-form-item label="New Beneficiary Ref." prop="bedgrp.blk.benref">
lianyang committed
76 77 78
        <c-input
          type="textarea"
          v-model="model.bedgrp.blk.benref"
lianyang committed
79 80
          maxlength="160"
          :rows="5"
lianyang committed
81
          show-word-limit
lianyang committed
82 83
          placeholder="请输入新受益人编号"
          style="width:60%"
lianyang committed
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
        ></c-input>
      </c-form-item>
    </c-col>
  </div>
</template>
<script>
import Api from '~/service/Api'
import commonProcess from '~/mixin/commonProcess'
import CodeTable from '~/config/CodeTable'
import Event from '~/model/Betsnd/Event'

export default {
  inject: ['root'],
  props: ['model', 'codes'],
  mixins: [commonProcess],
  data() {
    return {}
  },
  methods: { ...Event },
  created: function () {},
}
</script>
<style></style>