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

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

xiameng committed
22
      <c-col :span="2">
23 24 25
      <!-- Credit is Marked as Cumulative -->
        <c-checkbox v-model="model.ledgrp.rec.revcum"
        style="margin-left:10px"
jianglong committed
26
          >累计值</c-checkbox
Eivi committed
27 28
        >
      </c-col>
29 30 31 32 33
    </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
        ></c-input>
      </el-form-item>
Eivi committed
40 41
    </c-col>

42
    <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
        <c-date-picker
          type="date"
          v-model="model.ledgrp.rec.revdat"
Eivi committed
59
          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
        <c-fullbox>
Eivi committed
71
          <c-input
72 73 74 75
          type="textarea"
          v-model="model.ledgrp.blk.revcls"
          maxlength="390"
          show-word-limit
jianglong committed
76
          placeholder="请输入循环条款"
77 78 79 80 81
        ></c-input>
        <template slot="footer">
          <c-button
        size="small"
        type="primary"
xiameng committed
82
        icon="el-icon-more"
83 84
        @click="onRevclauseButtxmsel"
      >
xiameng committed
85
        
86 87 88 89
      </c-button>
        </template>
        </c-fullbox>
      </el-form-item>
Eivi committed
90
    </c-col>
91
    </c-row>
Eivi committed
92

93 94
    <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>
jianglong committed
106
    
zhengxiaokui committed
107 108 109
  </div>
</template>
<script>
Eivi committed
110
import Api from "~/service/Api";
wangren committed
111
import commonProcess from "~/mixin/commonProcess";
Eivi committed
112 113
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letrsv/Event";
zhengxiaokui committed
114 115

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