Aacp.vue 2.49 KB
Newer Older
fukai committed
1 2 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 72 73 74 75 76 77 78 79 80 81 82 83 84 85
<template>
  <div class="eibs-tab">
<!-- ============左边================= -->
<c-col :span="12" style="padding-right: 20px;">
          <c-col :span="24">
            <c-col :span="12">
              <el-form-item
                :label="$t('getopn.附加金额')"
                prop="gidgrp.cbs.mac2.cur"
              >
                <c-select
                  disabled
                  v-model="model.gidgrp.cbs.mac2.cur"
                  dbCode="curtxt"
                  style="width: 100%"
                  placeholder="请选择附加金额"
                ></c-select>
              </el-form-item>
            </c-col>
            <c-col :span="12">
              <el-form-item label-width="5px" prop="gidgrp.cbs.mac2.amt">
              <c-input
                v-model="model.gidgrp.cbs.mac2.amt"
                placeholder="请输入"
              ></c-input>
              </el-form-item>
            </c-col>
          </c-col>

          <c-col :span="24">
            <c-col :span="12">
              <el-form-item :label="$t('getopn.附加金额余额')" prop="gidgrp.cbs.opc2.cur">
                <c-select
                  disabled
                  v-model="model.gidgrp.cbs.opc2.cur"
                  dbCode="curtxt" 
                  style="width: 100%"
                  placeholder="请选择附加金额余额"
                ></c-select>
              </el-form-item>
            </c-col>
            <c-col :span="12">
              <el-form-item label-width="5px" prop="gidgrp.cbs.opc2.amt">
              <c-input
                disabled
                v-model="model.gidgrp.cbs.opc2.amt"
                placeholder="请输入"
              ></c-input>
              </el-form-item>
            </c-col>
          </c-col>

          <c-col :span="24">
            <el-form-item :label="$t('getopn.39C场')" prop="gidgrp.blk.addamtcovc">
              <c-input
                type="textarea"
                :rows="6"
                v-model="model.gidgrp.blk.addamtcovc"
                maxlength="65"
                show-word-limit
                placeholder="请输入39C场"
              ></c-input>
            </el-form-item>
          </c-col>
        </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
import event from "../event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {};
  },
  methods: {},
  created: function () {},
};
</script>
<style>
</style>