Aamp.vue 2.72 KB
Newer Older
huangxin committed
1
<template>
2
  <div class="eibs">
huangxin 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 60 61 62 63 64 65 66 67 68 69 70 71
    <c-col :span="20">
      <c-col :span="10">
        <el-form-item label="附加金额" prop="lidgrp.cbs.max2.cur">
          <c-select
            v-model="model.lidgrp.cbs.max2.cur"
            style="width: 100%"
            placeholder="请选择币种"
            disabled
          >
            <el-option
              v-for="item in codes.cur"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="12">
        <el-form-item
          style="text-align: left"
          label-width="20px"
          prop="lidgrp.cbs.max2.amt"
        >
          <c-input
          disabled
            v-model="model.lidgrp.cbs.max2.amt"
            style="text-align: left; width: 100%"
            placeholder="0"
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="10">
        <el-form-item label="附加金额余额" prop="lidgrp.cbs.opn2.cur">
          <c-select
            v-model="model.lidgrp.cbs.opn2.cur"
            style="width: 100%"
            placeholder=""
            disabled
          >
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="12">
        <el-form-item
          label=""
          style="text-align: left"
          label-width="20px"
          prop="lidgrp.cbs.opn2.amt"
        >
          <c-input
            v-model="model.lidgrp.cbs.opn2.amt"
            style="text-align: left; width: 100%"
            placeholder="0"
            disabled
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="39C场覆盖" prop="litp.aamp.addamtcov">
          <c-input
          disabled
            type="textarea"
            v-model="model.litp.aamp.addamtcov"
xiameng committed
72
            maxlength="140"
huangxin committed
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
            :rows="4"
            show-word-limit
            placeholder=""
          ></c-input>
        </el-form-item>
      </c-col>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litdla/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

        }
    },
    methods:{...Event,
    max2Amt(){
    this.executeDefault("max2.amt").then(
                (res) => {
                    if (res.respCode == SUCCESS){
                        Utils.copyValueFromVO(this.model, res.data);
                    }
                }
            );
    }
    },
    created:function(){

    }
}
</script>
<style>
</style>