Aamp.vue 2.06 KB
Newer Older
zhengxiaokui committed
1 2
<template>
  <div class="eibs-tab">
zhengxiaokui committed
3 4 5 6 7 8 9 10 11 12
    <c-col :span="12">
      <c-col :span="13">
        <el-form-item label="追加金额" prop="ledgrp.cbs.max2.cur">
          <c-select
            v-model="model.ledgrp.cbs.max2.cur"
            style="width: 100%"
            placeholder="请选择币种"
            :disabled="true"
          >
          </c-select>
zhengxiaokui committed
13
        </el-form-item>
zhengxiaokui committed
14 15 16 17 18 19 20 21
      </c-col>

      <c-col :span="9">
        <el-form-item label="" label-width="0px" prop="ledgrp.cbs.max2.amt">
          <c-input
            v-model="model.ledgrp.cbs.max2.amt"
            placeholder="请输入Additional Amount"
          ></c-input>
zhengxiaokui committed
22
        </el-form-item>
zhengxiaokui committed
23 24 25 26 27
      </c-col>
    </c-col>

    <c-col :span="12">
      <c-col :span="13">
zhengxiaokui committed
28
        <el-form-item label="Open Add. Amount" prop="ledgrp.cbs.opn2.cur">
zhengxiaokui committed
29 30 31 32 33 34
          <c-select
            v-model="model.ledgrp.cbs.opn2.cur"
            style="width: 100%"
            placeholder="请选择Open Add. Amount"
          >
          </c-select>
zhengxiaokui committed
35
        </el-form-item>
zhengxiaokui committed
36 37 38 39 40 41 42 43
      </c-col>

      <c-col :span="9">
        <el-form-item label="" label-width="0px" prop="ledgrp.cbs.opn2.amt">
          <c-input
            v-model="model.ledgrp.cbs.opn2.amt"
            placeholder="请输入Open Add. Amount"
          ></c-input>
zhengxiaokui committed
44
        </el-form-item>
zhengxiaokui committed
45 46 47 48
      </c-col>
    </c-col>

    <!-- Covered -->
潘际乾 committed
49
    <c-col :span="24">
zhengxiaokui committed
50 51 52 53 54 55 56 57 58 59 60
      <el-form-item label="Covered" prop="ledgrp.blk.addamtcov">
        <c-input
          type="textarea"
          :rows="4"
          v-model="model.ledgrp.blk.addamtcov"
          maxlength="35"
          show-word-limit
          placeholder="请输入Covered"
        ></c-input>
      </el-form-item>
    </c-col>
zhengxiaokui committed
61 62 63
  </div>
</template>
<script>
zhengxiaokui committed
64
import Api from "~/service/Api";
wangren committed
65
import commonProcess from "~/mixin/commonProcess";
zhengxiaokui committed
66 67
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letopn/Event";
zhengxiaokui committed
68 69

export default {
zhengxiaokui committed
70 71
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
72
  mixins: [commonProcess],
zhengxiaokui committed
73 74 75 76 77 78
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
zhengxiaokui committed
79 80 81
</script>
<style>
</style>