Revp.vue 2.99 KB
Newer Older
1
<template>
huangxin committed
2
  <div class="eibs">
huangxin committed
3 4 5
    <!-- ============左边================= -->
<c-col :span="12" style="padding-right: 20px;">
      <c-col :span="24">
jianglong committed
6
        <el-form-item label="循环信用证信息"></el-form-item>
7 8
      </c-col>

huangxin committed
9
      <c-col :span="18">
jianglong committed
10
        <el-form-item label="循环类型" prop="ledgrp.rec.revtyp">
11 12 13
          <c-select
            v-model="model.ledgrp.rec.revtyp"
            style="width: 100%"
jianglong committed
14
            placeholder="请选择循环类型"
15 16 17
            :code="codes.revtyp"
          >
          </c-select>
18
        </el-form-item>
19 20
      </c-col>

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


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

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

huangxin committed
84
    <c-col :span="24">
jianglong committed
85
      <el-form-item label="受益人须知" prop="ledgrp.blk.revnotes">
86 87 88 89 90
        <c-input
          type="textarea"
          v-model="model.ledgrp.blk.revnotes"
          maxlength="210"
          show-word-limit
jianglong committed
91
          placeholder="请输入受益人须知"
92 93 94
        ></c-input>
      </el-form-item>
    </c-col>
huangxin committed
95
  </c-col>
96 97 98
  </div>
</template>
<script>
99 100 101 102
import Api from '~/service/Api'
import commonProcess from '~/mixin/commonProcess'
import CodeTable from '~/config/CodeTable'
import Event from '~/model/Letdrw/Event'
103 104

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