Oitpan.vue 1.39 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
<template>
  <div class="eibs-tab">
    <!-- <c-col :span="12">
	    <span  v-text="model.recpan.ptainf.labinftxt"   data-path=".recpan.ptainf.labinftxt" > </span>
	</c-col> -->

    <c-col :span="11">
      <el-form-item label="General">
        <c-input
          type="textarea"
          v-model="model.recpan.ptainf.oit.inftxt"
          disabled
          maxlength="60"
          rows="3"
          show-word-limit
          placeholder="请输入"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="11" :offset="1">
      <el-form-item label="Display Type" prop="recpan.ptainf.oit.inflev">
        <c-select
          v-model="model.recpan.ptainf.oit.inflev"
          style="width: 100%"
          placeholder="请选择"
          disabled
        >
          <el-option
            v-for="item in codes.inflev"
            :key="item.value"
            :label="item.label"
            :value="item.value"
          ></el-option>
        </c-select>
      </el-form-item>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
wangren committed
42
import commonProcess from "~/mixin/commonProcess";
43 44 45 46 47 48
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infpta/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
49
  mixins: [commonProcess],
50 51 52 53 54 55 56 57 58
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>