Aacp.vue 2.39 KB
Newer Older
WH committed
1
<template>
李少勇 committed
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
  <div class="eibs">
    <c-row>
      <c-col :span="24">
        <c-col :span="12" style="padding-right: 20px;">
          <c-col :span="24">
            <c-col :span="12">
              <el-form-item
                label="附加金额"
                prop="gidgrp.cbs.mac2.cur"
              >
                <c-input
                  disabled
                  v-model="model.gidgrp.cbs.mac2.cur"
                  maxlength="3"
                  placeholder="请输入附加金额"
                ></c-input>
              </el-form-item>
            </c-col>
            <c-col :span="12">
              <el-form-item label-width="5px" prop="gidgrp.cbs.opc2.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="附加金额余额" prop="gidgrp.cbs.opc2.cur">
                <c-input
                  disabled
                  v-model="model.gidgrp.cbs.opc2.cur"
                  maxlength="3"
                  placeholder="请输入附加金额余额"
                ></c-input>
              </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>
        <c-col :span="12" style="padding-left: 20px;">
          <c-col :span="24">
            <el-form-item label="39C场" prop="gidgrp.blk.addamtcovc">
              <c-input
                type="textarea"
                :rows="4"
                v-model="model.gidgrp.blk.addamtcovc"
                maxlength="780"
                show-word-limit
                placeholder="请输入39C场"
              ></c-input>
            </el-form-item>
          </c-col>
        </c-col>
      </c-col>
    </c-row>
  </div>
</template>
<script>
71
import event from '../event'
李少勇 committed
72 73 74
export default {
  inject: ["root"],
  props: ["model", "codes"],
75
  mixins: [event],
李少勇 committed
76 77 78
  data() {
    return {};
  },
79
  methods: {},
李少勇 committed
80 81 82 83 84
  created: function () {},
};
</script>
<style>
</style>