Aamp.vue 2.3 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
            class="m-input-currency" 
            disabled
23
            @keyup.enter.native="$event.target.blur()"
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 41
      <c-col :span="11">
        <el-form-item label="" label-width="5px" prop="ledgrp.cbs.opn2.amt">
          <c-input
zhengxiaokui committed
42
            v-model="model.ledgrp.cbs.opn2.amt"
43
            class="m-input-currency" 
zhengxiaokui committed
44
            placeholder="请输入Open Add. Amount"
45 46
            disabled
          ></c-input>
zhengxiaokui committed
47
        </el-form-item>
zhengxiaokui committed
48 49
      </c-col>

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

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