Aamp.vue 2.27 KB
Newer Older
zhengxiaokui committed
1 2
<template>
  <div class="eibs-tab">
3 4
    <!-- ====================左边======================= -->
    <c-col :span="11">
zhengxiaokui committed
5
      <c-col :span="13">
6
        <el-form-item label="Additional Amount" prop="ledgrp.cbs.max2.cur">
zhengxiaokui committed
7 8 9
          <c-select
            v-model="model.ledgrp.cbs.max2.cur"
            style="width: 100%"
10 11
            placeholder="请选择Additional Amount"
            disabled
zhengxiaokui committed
12 13
          >
          </c-select>
zhengxiaokui committed
14
        </el-form-item>
zhengxiaokui committed
15
      </c-col>
16 17
      <c-col :span="11">
        <el-form-item label="" label-width="5px" prop="ledgrp.cbs.max2.amt">
zhengxiaokui committed
18 19 20
          <c-input
            v-model="model.ledgrp.cbs.max2.amt"
            placeholder="请输入Additional Amount"
21 22 23
            @keyup.enter.native="
              defaultFunction('ledgrp.cbs.max2.amt', model.ledgrp.cbs.max2.amt)
            "
zhengxiaokui committed
24
          ></c-input>
zhengxiaokui committed
25
        </el-form-item>
zhengxiaokui committed
26 27 28
      </c-col>

      <c-col :span="13">
zhengxiaokui committed
29
        <el-form-item label="Open Add. Amount" prop="ledgrp.cbs.opn2.cur">
zhengxiaokui committed
30 31 32 33
          <c-select
            v-model="model.ledgrp.cbs.opn2.cur"
            style="width: 100%"
            placeholder="请选择Open Add. Amount"
34
            disabled
zhengxiaokui committed
35 36
          >
          </c-select>
zhengxiaokui committed
37
        </el-form-item>
zhengxiaokui committed
38
      </c-col>
39 40
      <c-col :span="11">
        <el-form-item label="" label-width="5px" prop="ledgrp.cbs.opn2.amt">
zhengxiaokui committed
41 42 43
          <c-input
            v-model="model.ledgrp.cbs.opn2.amt"
            placeholder="请输入Open Add. Amount"
44
            disabled
zhengxiaokui committed
45
          ></c-input>
zhengxiaokui committed
46
        </el-form-item>
zhengxiaokui committed
47 48
      </c-col>

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

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