Coninfp.vue 2.59 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
潘际乾 committed
3
    <!-- <c-col :span="24">
4
	    <span  v-text="model.mtabut.coninf.oitinf.labinftxt"   data-path=".mtabut.coninf.oitinf.labinftxt" > </span>
潘际乾 committed
5 6 7
	</c-col> -->
    <c-col :span="24">
      <c-col :span="14">
liushikai committed
8 9 10 11 12 13 14 15 16
        <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>
17
        </el-form-item>
潘际乾 committed
18 19
      </c-col>
      <c-col :span="8">
liushikai committed
20 21 22 23 24 25 26 27
        <el-form-item label="Display Type">
          <c-input
            v-model="model.mtabut.coninf.oitinf.oit.inflev"
            style="width: 100%"
            placeholder=""
            readonly
          >
          </c-input>
28
        </el-form-item>
潘际乾 committed
29 30
      </c-col>
    </c-col>
liushikai committed
31

潘际乾 committed
32 33
    <c-col :span="24">
        <c-col :span="14">
liushikai committed
34 35 36 37 38 39 40 41 42 43
            <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>
潘际乾 committed
44 45
        </c-col>
        <c-col :span="8">
liushikai committed
46 47 48 49 50 51 52 53 54
            <el-form-item label="Infotext Level">
        <c-input
          v-model="model.mtabut.coninf.oitset.oit.inflev"
          style="width: 100%"
          placeholder=""
          readonly
        >
        </c-input>
      </el-form-item>
潘际乾 committed
55 56
        </c-col>
    </c-col>
liushikai committed
57 58


潘际乾 committed
59
    <!-- <c-col :span="24">
liushikai committed
60 61 62 63 64
      <span
        v-text="model.mtabut.coninf.oitset.labinftxt"
        data-path=".mtabut.coninf.oitset.labinftxt"
      >
      </span>
潘际乾 committed
65
    </c-col> -->
liushikai committed
66 67


68
    <c-col :span="14">
liushikai committed
69 70
      <el-form-item label="Execution Date">
        <c-date-picker
71
         style="width:100%"
liushikai committed
72 73 74 75 76
          type="date"
          v-model="model.mtabut.coninf.conexedat"
          placeholder=""
        ></c-date-picker>
      </el-form-item>
潘际乾 committed
77
    </c-col>
liushikai committed
78

79
    <c-col :span="8">
liushikai committed
80 81 82 83 84 85 86 87
      <el-form-item label="Send for Release to">
        <c-input
          v-model="model.mtabut.coninf.usr.extkey"
          maxlength="8"
          placeholder=""
          readonly
        ></c-input>
      </el-form-item>
潘际乾 committed
88
    </c-col>
89 90 91
  </div>
</template>
<script>
liushikai committed
92
import Api from "~/service/Api";
wangren committed
93
import commonProcess from "~/mixin/commonProcess";
liushikai committed
94 95
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptopn/Event";
96 97

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