Revp.vue 2.98 KB
Newer Older
zhengxiaokui committed
1
<template>
huangxin committed
2
  <div class="eibs">
3

huangxin committed
4 5 6
<!-- ============左边================= -->
<c-col :span="12" style="padding-right: 20px;">
      <c-col :span="24">
jianglong committed
7
        <el-form-item label="循环信用证信息"></el-form-item>
8 9
      </c-col>

huangxin committed
10
      <c-col :span="18">
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>
zhengxiaokui committed
19
        </el-form-item>
20 21
      </c-col>

huangxin committed
22
      <c-col :span="6">
23
      <!-- Credit is Marked as Cumulative -->
24 25
        <c-checkbox v-model="model.ledgrp.rec.revcum"
        style="margin-left:10px"
wangna committed
26
          >累计</c-checkbox
27 28 29 30
        >
      </c-col>


huangxin committed
31
      <c-col :span="12">
jianglong committed
32
      <el-form-item label="循环时间" prop="ledgrp.rec.revtimes">
33 34
        <c-input
          v-model.number="model.ledgrp.rec.revtimes"
jianglong committed
35
          placeholder="请输入循环时间"
36 37 38 39
        ></c-input>
      </el-form-item>
    </c-col>

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

huangxin committed
85
    <c-col :span="24">
jianglong committed
86
      <el-form-item label="受益人须知" prop="ledgrp.blk.revnotes">
87 88 89
        <c-input
          type="textarea"
          v-model="model.ledgrp.blk.revnotes"
90
          maxlength="210"
91
          show-word-limit
jianglong committed
92
          placeholder="请输入受益人须知"
93 94 95
        ></c-input>
      </el-form-item>
    </c-col>
huangxin committed
96
    </c-col>
97

zhengxiaokui committed
98 99 100
  </div>
</template>
<script>
101 102 103 104
import Api from '~/service/Api'
import commonProcess from '~/mixin/commonProcess'
import CodeTable from '~/config/CodeTable'
import Event from '~/model/Letopn/Event'
zhengxiaokui committed
105 106

export default {
107 108 109 110 111 112 113 114
  inject: ['root'],
  props: ['model', 'codes'],
  mixins: [commonProcess],
  data() {
    return {}
  },
  methods: { ...Event },
  created: function () {},
zhengxiaokui committed
115 116
}
</script>
117
<style></style>