Prtcfg.vue 3.25 KB
Newer Older
潘际乾 committed
1 2
<template>
  <div class="eibs-tab">
潘际乾 committed
3 4 5 6 7 8
    <c-col :span="23">
      <c-col :span="12">
        <el-form-item label="" prop="srvprtm.prtmod.cltprtflg">
          <c-checkbox v-model="model.chgetyprt"
            >Print message when entity is changed</c-checkbox
          >
潘际乾 committed
9
        </el-form-item>
潘际乾 committed
10 11 12 13 14 15 16 17 18 19
      </c-col>

      <c-col :span="12">
        <el-form-item label="Client Printing" prop="srvprtm.prtmod.cltprtflg">
          <c-select
            v-model="model.srvprtm.prtmod.cltprtflg"
            style="width: 100%"
            placeholder="请选择Client Printing"
          >
          </c-select>
潘际乾 committed
20
        </el-form-item>
潘际乾 committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 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 94 95 96 97 98 99 100
      </c-col>
    </c-col>

    <c-col :span="12">
      <el-form-item label="Text for Header" prop="srvprtm.prt.heatxt">
        <c-input
          v-model="model.srvprtm.prt.heatxt"
          maxlength="40"
          placeholder="请输入Text for Header"
        ></c-input>
      </el-form-item>
    </c-col>
    <c-col></c-col>
    <c-col :span="10">
      <el-form-item label="Technical Form" prop="srvprtm.prt.tef">
        <c-select
          v-model="model.srvprtm.prt.tef"
          style="width: 100%"
          placeholder="请选择Technical Form"
        >
        </c-select>
      </el-form-item>
    </c-col>
    <c-col></c-col>
    <c-col :span="9">
      <el-form-item label="Default Printer from:" prop="srvprtm.prt.getprt">
        <c-select
          v-model="model.srvprtm.prt.getprt"
          style="width: 100%"
          placeholder="请选择Default Printer from:"
        >
        </c-select>
      </el-form-item>
    </c-col>
    <c-col></c-col>
    <c-col :span="16">
      <el-form-item label="Printer" prop="srvprtm.prt.prt">
        <c-select
          v-model="model.srvprtm.prt.prt"
          style="width: 100%"
          placeholder="请选择Printer"
        >
        </c-select>
      </el-form-item>
    </c-col>
    <c-col></c-col>
    <c-col :span="12">
      <el-form-item label="Paperbin" prop="srvprtm.prt.bin">
        <c-select
          v-model="model.srvprtm.prt.bin"
          style="width: 100%"
          placeholder="请选择Paperbin"
        >
        </c-select>
      </el-form-item>
    </c-col>
    <c-col></c-col>
    <c-col :span="12">
      <el-form-item label="Bin for 2nd Page" prop="srvprtm.prt.bin2">
        <c-select
          v-model="model.srvprtm.prt.bin2"
          style="width: 100%"
          placeholder="请选择Bin for 2nd Page"
        >
        </c-select>
      </el-form-item>
    </c-col>
    <c-col></c-col>
    <c-col :span="6">
      <el-form-item label="# of Copies" prop="srvprtm.prt.cpycnt">
        <c-input
          v-model="model.srvprtm.prt.cpycnt"
          placeholder="请输入# of Copies"
        ></c-input>
      </el-form-item>
    </c-col>
    <c-col></c-col>
    <c-col :span="12" :offset="2">
      <c-button size="small" type="primary" @click="onCan"> E&xit </c-button>
    </c-col>
潘际乾 committed
101 102 103
  </div>
</template>
<script>
潘际乾 committed
104
import Api from "~/service/Api";
潘际乾 committed
105
import CommonProcess from "~/mixin/CommonProcess";
潘际乾 committed
106 107
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Sptrou/Event";
潘际乾 committed
108 109

export default {
潘际乾 committed
110 111 112 113 114 115 116 117 118
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [CommonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
潘际乾 committed
119
</script>
潘际乾 committed
120
<style></style>