Coninfp.vue 2.63 KB
Newer Older
cl committed
1
<template>
cl committed
2 3 4 5 6 7 8
  <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">
cl committed
9 10
          <c-input
            type="textarea"
cl committed
11
            v-model="model.mtabut.coninf.oitinf.oit.inftxt"
cl committed
12 13 14 15 16 17
            maxlength="600"
            rows="8"
            show-word-limit
            placeholder=""
          ></c-input>
        </el-form-item>
cl committed
18 19 20
      </c-col>
      <c-col :span="8">
        <el-form-item label="显示方式">
cl committed
21
          <c-input
cl committed
22
            v-model="model.mtabut.coninf.oitinf.oit.inflev"
cl committed
23 24 25 26 27 28 29
            style="width: 100%"
            placeholder=""
            readonly
          >
          </c-input>
        </el-form-item>
      </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
    </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
cl committed
52
        >
cl committed
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 86 87 88 89 90 91 92 93
        </c-input>
      </el-form-item>
        </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>
      </el-form-item>
    </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>
      </el-form-item>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
wangren committed
94
import commonProcess from "~/mixin/commonProcess";
cl committed
95 96 97 98 99 100
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Clttra/Event";

export default {
  inject: ['root'],
  props: ["model", "codes"],
wangren committed
101
  mixins: [commonProcess],
cl committed
102 103 104 105 106 107 108 109 110
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>