Docpan.vue 2.15 KB
Newer Older
liyixun committed
1
<template>
huangxin committed
2
  <div class="eibs">
3 4
<!-- ============左边================= -->
<c-col :span="12" style="padding-right: 20px;">
5 6
          <c-col :span="24">
            <c-form-item
wangna committed
7
              label="验证证书编号"
8 9 10 11 12 13 14
              prop="lendoc.vercerref"
            >
              <c-input
                type="textarea"
                v-model="model.lendoc.vercerref"
                maxlength="20"
                show-word-limit
wangna committed
15
                placeholder="请输入验证证书编号"
16 17 18 19
              ></c-input>
            </c-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
20
            <c-form-item label="申报编号" prop="lendoc.decnum">
21 22 23
              <c-input
                v-model="model.lendoc.decnum"
                maxlength="22"
wangna committed
24
                placeholder="请输入申报编号"
25 26 27 28
              ></c-input>
            </c-form-item>
          </c-col>
        </c-col>
29 30
        <!-- ============右边================= -->
        <c-col :span="12" style="padding-left: 20px;">
31 32 33 34 35 36 37 38 39 40 41 42 43
          <c-col :span="24">
            <c-form-item label="ACT" prop="lendoc.account">
              <c-input
                :disabled="model.lendoc.actflg != 'X'"
                type="textarea"
                v-model="model.lendoc.account"
                maxlength="25"
                show-word-limit
                placeholder="请输入ACT"
              ></c-input>
            </c-form-item>
          </c-col>
          <c-col :span="24">
44 45
            <c-col :span="6">
              <el-form-item label=" " prop="lendoc.actflg" label-width="120px" style=" float:left;">
46
              <c-checkbox v-model="model.lendoc.actflg"
wangna committed
47
                >输入帐户</c-checkbox
48
              >
49
            </el-form-item>
50
            </c-col>
51
          </c-col>
liyixun committed
52
        </c-col>
liyixun committed
53 54 55
  </div>
</template>
<script>
56
import Api from "~/service/Api";
liyixun committed
57
import commonProcess from "~/mixin/commonProcess";
58 59
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getset/Event";
liyixun committed
60 61

export default {
62 63 64 65 66 67 68 69 70
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
liyixun committed
71 72 73
</script>
<style>
</style>