Aamp.vue 2.28 KB
Newer Older
zhengxiaokui committed
1
<template>
huangxin committed
2
  <div class="eibs">
huangxin committed
3 4
<!-- ============左边================= -->
<c-col :span="12" style="padding-right: 20px;">
zhengxiaokui committed
5
      <c-col :span="13">
jianglong committed
6
        <el-form-item label="附加金额" prop="ledgrp.cbs.max2.cur">
zhengxiaokui committed
7 8 9
          <c-select
            v-model="model.ledgrp.cbs.max2.cur"
            style="width: 100%"
jianglong committed
10
            placeholder="请选择附加金额"
11
            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
          <c-input
            v-model="model.ledgrp.cbs.max2.amt"
jianglong committed
20
            placeholder="请输入附加金额"
21
            @keyup.enter.native="$event.target.blur()"
zhengxiaokui committed
22
          ></c-input>
23 24
            <!-- @keyup.enter.native="$event.target.blur()" :回车触发失去焦点发生的事件 -->
          </el-form-item>
zhengxiaokui committed
25 26 27
      </c-col>

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

48
      <c-col :span="24">
wangna committed
49
        <el-form-item label="39C场" prop="ledgrp.blk.addamtcov">
50 51 52 53 54
          <c-input
            type="textarea"
            v-model="model.ledgrp.blk.addamtcov"
            maxlength="140"
            show-word-limit
wangna committed
55
            placeholder="请输入39C场"
56 57 58 59
            rows="4"
          ></c-input>
        </el-form-item>
      </c-col>
zhengxiaokui committed
60
    </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>