Revp.vue 3.04 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
3 4
    <c-row>
      <c-col :span="16">
jianglong committed
5
        <el-form-item label="循环信用证信息"></el-form-item>
6 7 8 9 10
      </c-col>
    </c-row>

    <c-row>
      <c-col :span="16">
jianglong committed
11
        <el-form-item label="循环类型" prop="ledgrp.rec.revtyp">
12 13 14
          <c-select
            v-model="model.ledgrp.rec.revtyp"
            style="width: 100%"
jianglong committed
15
            placeholder="请选择循环类型"
16 17 18
            :code="codes.revtyp"
          >
          </c-select>
19
        </el-form-item>
20 21 22 23 24 25 26 27 28 29 30 31 32 33
      </c-col>

      <c-col :span="8">
      <!-- Credit is Marked as Cumulative -->
        <c-checkbox v-model="model.ledgrp.rec.revcum"
        style="margin-left:10px"
          >Cumulative</c-checkbox
        >
      </c-col>
    </c-row>


    <c-row>
      <c-col :span="8">
jianglong committed
34
      <el-form-item label="循环时间" prop="ledgrp.rec.revtimes">
35 36
        <c-input
          v-model.number="model.ledgrp.rec.revtimes"
jianglong committed
37
          placeholder="请输入循环时间"
38 39 40 41 42
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="8">
jianglong committed
43
      <el-form-item label="循环次数" prop="ledgrp.rec.revnbr">
44 45
        <c-input
          v-model.number="model.ledgrp.rec.revnbr"
jianglong committed
46
          placeholder="请输入循环次数"
47 48 49 50 51 52 53 54
          disabled
        ></c-input>
      </el-form-item>
    </c-col>
    </c-row>
    
    <c-row>
      <c-col :span="16">
jianglong committed
55
      <el-form-item label="下一循环日期" prop="ledgrp.rec.revdat">
56 57 58 59
        <c-date-picker
          type="date"
          v-model="model.ledgrp.rec.revdat"
          style="width: 100%"
jianglong committed
60
          placeholder="请选择下一循环日期"
61 62 63 64 65 66 67 68
          value-format="yyyy-MM-dd"
        ></c-date-picker>
      </el-form-item>
    </c-col>
    </c-row>
    
    <c-row>
      <c-col :span="16">
jianglong committed
69
      <el-form-item label="循环条款" prop="ledgrp.blk.revcls">
70 71 72 73 74 75
        <c-fullbox>
          <c-input
          type="textarea"
          v-model="model.ledgrp.blk.revcls"
          maxlength="390"
          show-word-limit
jianglong committed
76
          placeholder="请输入循环条款"
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
        ></c-input>
        <template slot="footer">
          <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
        @click="onRevclauseButtxmsel"
      >
        ...
      </c-button>
        </template>
        </c-fullbox>
      </el-form-item>
    </c-col>
    </c-row>

    <c-row>
    <c-col :span="16">
jianglong committed
95
      <el-form-item label="受益人须知" prop="ledgrp.blk.revnotes">
96 97 98 99 100
        <c-input
          type="textarea"
          v-model="model.ledgrp.blk.revnotes"
          maxlength="210"
          show-word-limit
jianglong committed
101
          placeholder="请输入受益人须知"
102 103 104 105
        ></c-input>
      </el-form-item>
    </c-col>
  </c-row>
106 107 108
  </div>
</template>
<script>
109 110 111 112
import Api from '~/service/Api'
import commonProcess from '~/mixin/commonProcess'
import CodeTable from '~/config/CodeTable'
import Event from '~/model/Letdrw/Event'
113 114

export default {
115 116 117 118 119 120 121 122
  inject: ['root'],
  props: ['model', 'codes'],
  mixins: [commonProcess],
  data() {
    return {}
  },
  methods: { ...Event },
  created: function () {},
123 124
}
</script>
125
<style></style>