Aamp.vue 2.38 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 18
      <c-col :span="11">
        <el-form-item label="" label-width="5px" prop="ledgrp.cbs.max2.amt">
          <c-input
zhengxiaokui committed
19 20
            v-model="model.ledgrp.cbs.max2.amt"
            placeholder="请输入Additional Amount"
21 22 23 24 25 26
            class="m-input-currency" 
            disabled
            @keyup.enter.native="
              defaultFunction('ledgrp.cbs.max2.amt', model.ledgrp.cbs.max2.amt)
            "
          ></c-input>
zhengxiaokui committed
27
        </el-form-item>
zhengxiaokui committed
28 29 30
      </c-col>

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

52 53 54 55 56 57 58 59 60 61 62 63 64
      <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"
            disabled
          ></c-input>
        </el-form-item>
      </c-col>
zhengxiaokui committed
65
    </c-col>
zhengxiaokui committed
66 67 68
  </div>
</template>
<script>
69 70 71 72
import Api from '~/service/Api'
import commonProcess from '~/mixin/commonProcess'
import CodeTable from '~/config/CodeTable'
import Event from '~/model/Letame/Event'
zhengxiaokui committed
73 74

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