Aamp.vue 3.91 KB
Newer Older
zhengxiaokui committed
1 2
<template>
  <div class="eibs-tab">
Eivi committed
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
    <!-- left -->
    <c-col :span="11">
      <c-col :span="24">
        <c-col :span="12">
          <el-form-item label="Additional Amount" prop="ledgrp.cbs.max2.cur">
            <c-select
              v-model="model.ledgrp.cbs.max2.cur"
              style="width: 100%"
              placeholder="Please select cur"
              disabled
              :code="codes.curtxt1"
            >
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="12">
          <el-form-item label="" label-width="20px" prop="ledgrp.cbs.max2.amt">
            <c-input-currency
              v-model="model.ledgrp.cbs.max2.amt"
              style="width: 100%"
              placeholder="Please input Additional Amount"
            ></c-input-currency>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="12">
          <el-form-item label="Open Add. Amount" prop="ledgrp.cbs.opn2.cur">
            <c-select
              v-model="model.ledgrp.cbs.opn2.cur"
              style="width: 100%"
              placeholder="Please select cur"
              :code="codes.curtxt1"
              disabled
            >
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="12">
          <el-form-item label="" label-width="20px" prop="ledgrp.cbs.opn2.amt">
            <c-input-currency
              v-model="model.ledgrp.cbs.opn2.amt"
              style="width: 100%"
              placeholder="Please input Open Add. Amount"
              disabled
            ></c-input-currency>
          </el-form-item>
        </c-col>
      </c-col>
    </c-col>

    <!-- right -->
    <c-col :span="11" :offset="1">
      <c-col :span="24">
zhengxiaokui committed
60
        <el-form-item label="Covered" prop="ledgrp.blk.addamtcov">
Eivi committed
61 62 63 64 65 66 67
          <c-input
            type="textarea"
            v-model="model.ledgrp.blk.addamtcov"
            maxlength="35"
            show-word-limit
            placeholder="请输入Covered"
          ></c-input>
zhengxiaokui committed
68
        </el-form-item>
Eivi committed
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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
      </c-col>
    </c-col>

    <!-- <c-col :span="12">
      <el-form-item label="Additional Amount" prop="ledgrp.cbs.max2.cur">
        <c-select
          v-model="model.ledgrp.cbs.max2.cur"
          style="width: 100%"
          placeholder="请选择Additional Amount"
        >
        </c-select>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="Additional Amount" prop="ledgrp.cbs.max2.amt">
        <c-input
          v-model="model.ledgrp.cbs.max2.amt"
          placeholder="请输入Additional Amount"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="Open Add. Amount" prop="ledgrp.cbs.opn2.cur">
        <c-select
          v-model="model.ledgrp.cbs.opn2.cur"
          style="width: 100%"
          placeholder="请选择Open Add. Amount"
        >
        </c-select>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="Open Add. Amount" prop="ledgrp.cbs.opn2.amt">
        <c-input
          v-model="model.ledgrp.cbs.opn2.amt"
          placeholder="请输入Open Add. Amount"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="Covered" prop="ledgrp.blk.addamtcov">
        <c-input
          type="textarea"
          v-model="model.ledgrp.blk.addamtcov"
          maxlength="35"
          show-word-limit
          placeholder="请输入Covered"
        ></c-input>
      </el-form-item>
    </c-col> -->
zhengxiaokui committed
123 124 125
  </div>
</template>
<script>
Eivi committed
126
import Api from "~/service/Api";
wangren committed
127
import commonProcess from "~/mixin/commonProcess";
Eivi committed
128 129
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letrsv/Event";
zhengxiaokui committed
130 131

export default {
Eivi committed
132 133 134 135 136 137 138 139 140
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
zhengxiaokui committed
141 142 143
</script>
<style>
</style>