Revp.vue 2.84 KB
Newer Older
WF1020 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
<template>
  <div class="eibs">
    <!-- ============左边================= -->
<c-col :span="12" style="padding-right: 20px;">
      <c-col :span="24">
        <el-form-item label="循环信用证信息"></el-form-item>
      </c-col>

      <c-col :span="18">
        <el-form-item label="循环类型" prop="ledgrp.rec.revtyp">
          <c-select
            v-model="model.ledgrp.rec.revtyp"
            style="width: 100%"
            placeholder="请选择循环类型"
            :code="codes.revtyp"
          >
          </c-select>
        </el-form-item>
      </c-col>

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


      <c-col :span="12">
      <el-form-item label="循环时间" prop="ledgrp.rec.revtimes">
        <c-input
          v-model.number="model.ledgrp.rec.revtimes"
          placeholder="请输入循环时间"
        ></c-input>
      </el-form-item>
      </c-col>

    <c-col :span="12">
      <el-form-item label="循环次数" prop="ledgrp.rec.revnbr">
        <c-input
          v-model.number="model.ledgrp.rec.revnbr"
          placeholder="请输入循环次数"
          disabled
        ></c-input>
      </el-form-item>
    </c-col>
    
      <c-col :span="24">
      <el-form-item label="下一循环日期" prop="ledgrp.rec.revdat">
        <c-date-picker
          type="date"
          v-model="model.ledgrp.rec.revdat"
          style="width: 100%"
          placeholder="请选择下一循环日期"
          value-format="yyyy-MM-dd"
        ></c-date-picker>
      </el-form-item>
    </c-col>
    
      <c-col :span="24">
      <el-form-item label="循环条款" prop="ledgrp.blk.revcls">
        <c-fullbox>
          <c-input
          type="textarea"
          v-model="model.ledgrp.blk.revcls"
          maxlength="390"
          show-word-limit
          placeholder="请输入循环条款"
        ></c-input>
        <template slot="footer">
          <c-button
        size="small"
        type="primary"
        icon="el-icon-more"
        @click="onRevclauseButtxmsel"
      >
      </c-button>
        </template>
        </c-fullbox>
      </el-form-item>
    </c-col>

    <c-col :span="24">
      <el-form-item label="受益人须知" prop="ledgrp.blk.revnotes">
        <c-input
          type="textarea"
          v-model="model.ledgrp.blk.revnotes"
          maxlength="210"
          show-word-limit
          placeholder="请输入受益人须知"
        ></c-input>
      </el-form-item>
    </c-col>
  </c-col>
  </div>
</template>
<script>
WH committed
99
import event from '../event'
WF1020 committed
100 101 102 103

export default {
  inject: ['root'],
  props: ['model', 'codes'],
WH committed
104
  mixins: [event],
WF1020 committed
105 106 107
  data() {
    return {}
  },
WH committed
108
  methods: { event },
WF1020 committed
109 110 111 112
  created: function () {},
}
</script>
<style></style>