Coninfp.vue 2.84 KB
Newer Older
cl committed
1
<template>
cl committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
    <div class="eibs-tab">
      <!-- <c-col :span="24">
          <span  v-text="model.mtabut.coninf.oitinf.labinftxt"   data-path=".mtabut.coninf.oitinf.labinftxt" > </span>
      </c-col> -->
      <c-col :span="24">
        <c-col :span="14">
          <el-form-item label="General">
            <c-input
              type="textarea"
              v-model="model.mtabut.coninf.oitinf.oit.inftxt"
              maxlength="600"
              rows="8"
              show-word-limit
              placeholder=""
            ></c-input>
          </el-form-item>
cl committed
18
        </c-col>
cl committed
19 20 21 22 23 24 25 26 27 28
        <c-col :span="8">
          <el-form-item label="显示方式">
            <c-input
              v-model="model.mtabut.coninf.oitinf.oit.inflev"
              style="width: 100%"
              placeholder=""
              readonly
            >
            </c-input>
          </el-form-item>
cl committed
29
        </c-col>
cl committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
      </c-col>
  
      <c-col :span="24">
          <c-col :span="14">
              <el-form-item label="Settlement">
          <c-input
            type="textarea"
            v-model="model.mtabut.coninf.oitset.oit.inftxt"
            maxlength="600"
            rows="8"
            show-word-limit
            placeholder=""
          ></c-input>
        </el-form-item>
          </c-col>
          <c-col :span="8">
              <el-form-item label="显示方式">
          <c-input
            v-model="model.mtabut.coninf.oitset.oit.inflev"
            style="width: 100%"
            placeholder=""
            readonly
          >
          </c-input>
cl committed
54
        </el-form-item>
cl committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
          </c-col>
      </c-col>
  
  
      <!-- <c-col :span="24">
        <span
          v-text="model.mtabut.coninf.oitset.labinftxt"
          data-path=".mtabut.coninf.oitset.labinftxt"
        >
        </span>
      </c-col> -->
  
  
      <c-col :span="11">
        <el-form-item label="执行日期">
          <c-date-picker
            type="date"
            v-model="model.mtabut.coninf.conexedat"
            style="width: 50%"
            placeholder=""
          ></c-date-picker>
cl committed
76
        </el-form-item>
cl committed
77 78 79 80 81 82 83 84 85 86 87
      </c-col>
  
      <c-col :span="11" :offset="1">
        <el-form-item label="发送">
          <c-input
            v-model="model.mtabut.coninf.usr.extkey"
            maxlength="8"
            style="width: 90%"
            placeholder=""
            readonly
          ></c-input>
cl committed
88
        </el-form-item>
cl committed
89 90 91 92 93 94 95 96 97 98
      </c-col>
    </div>
  </template>
  <script>
  import Api from "~/service/Api";
  import CommonProcess from "~/mixin/CommonProcess";
  import CodeTable from "~/config/CodeTable";
  import Event from "~/model/Cltset/Event";
  
  export default {
cl committed
99
    inject: ['root'],
cl committed
100
    props: ["model", "codes"],
cl committed
101
    mixins: [CommonProcess],
cl committed
102 103
    data() {
      return {};
cl committed
104
    },
cl committed
105 106 107 108 109 110 111
    methods: { ...Event },
    created: function () {},
  };
  </script>
  <style>
  </style>