Aacp.vue 2.51 KB
Newer Older
1 2 3
<template>
  <div class="eibs-tab">
    <c-row>
liyixun committed
4 5 6 7 8
      <c-col :span="24">
        <c-col :span="12">
          <c-col :span="24">
            <c-col :span="14">
              <el-form-item
wangna committed
9
                label="附加金额"
liyixun committed
10 11 12 13 14 15
                prop="gidgrp.cbs.mac2.cur"
              >
                <c-input
                  disabled
                  v-model="model.gidgrp.cbs.mac2.cur"
                  maxlength="3"
wangna committed
16
                  placeholder="请输入附加金额"
liyixun committed
17 18 19 20 21 22 23
                ></c-input>
              </el-form-item>
            </c-col>
            <c-col :span="10">
              <el-form-item label-width="5px" prop="gidgrp.cbs.mac2.amt">
                <c-input
                  v-model="model.gidgrp.cbs.mac2.amt"
wangna committed
24
                  placeholder="请输入"
liyixun committed
25 26 27 28
                ></c-input>
              </el-form-item>
            </c-col>
          </c-col>
29

liyixun committed
30 31
          <c-col :span="24">
            <c-col :span="14">
wangna committed
32
              <el-form-item label="附加金额余额" prop="gidgrp.cbs.opc2.cur">
liyixun committed
33 34 35 36
                <c-input
                  disabled
                  v-model="model.gidgrp.cbs.opc2.cur"
                  maxlength="3"
wangna committed
37
                  placeholder="请输入附加金额余额"
liyixun committed
38 39
                ></c-input>
              </el-form-item>
40
            </c-col>
liyixun committed
41 42 43 44 45
            <c-col :span="10">
              <el-form-item label-width="5px" prop="gidgrp.cbs.opc2.amt">
                <c-input
                  disabled
                  v-model="model.gidgrp.cbs.opc2.amt"
wangna committed
46
                  placeholder="请输入"
liyixun committed
47 48
                ></c-input>
              </el-form-item>
49
            </c-col>
liyixun committed
50 51 52 53
          </c-col>
        </c-col>
        <c-col :span="11" :offset="1">
          <c-col :span="24">
wangna committed
54
            <el-form-item label="39C场" prop="gidgrp.blk.addamtcovc">
liyixun committed
55 56 57 58 59 60
              <c-input
                type="textarea"
                :rows="4"
                v-model="model.gidgrp.blk.addamtcovc"
                maxlength="65"
                show-word-limit
wangna committed
61
                placeholder="39C场"
liyixun committed
62 63 64
              ></c-input>
            </el-form-item>
          </c-col>
65
        </c-col>
liyixun committed
66
      </c-col>
67 68 69 70
    </c-row>
  </div>
</template>
<script>
liyixun committed
71
import Api from "~/service/Api";
72
import commonProcess from "~/mixin/commonProcess";
liyixun committed
73 74
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitpop/Event";
75 76

export default {
liyixun committed
77 78 79 80 81 82 83 84 85
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
86 87 88
</script>
<style>
</style>