Prtcfg.vue 3.13 KB
Newer Older
潘际乾 committed
1 2
<template>
  <div class="eibs-tab">
潘际乾 committed
3
    <c-col :span="24">
潘际乾 committed
4 5 6 7 8
      <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
      </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>
33 34

    <c-col :span="12">
潘际乾 committed
35 36 37 38 39 40 41 42 43
      <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>
44 45

    <c-col :span="12">
潘际乾 committed
46 47 48 49 50 51 52 53 54
      <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>
55 56

    <c-col :span="12">
潘际乾 committed
57 58 59 60 61 62 63 64 65
      <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>
66

潘际乾 committed
67 68 69 70 71 72 73 74 75 76
    <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>
77

潘际乾 committed
78 79 80 81 82 83 84 85 86 87
    <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>
88 89

    <c-col :span="12">
潘际乾 committed
90 91 92 93 94 95 96
      <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>
97 98

    <!-- <c-col :span="12" :offset="2">
潘际乾 committed
99
      <c-button size="small" type="primary" @click="onCan"> E&xit </c-button>
100
    </c-col> -->
潘际乾 committed
101 102 103
  </div>
</template>
<script>
潘际乾 committed
104
import Api from "~/service/Api";
wangren 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
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
112
  mixins: [commonProcess],
潘际乾 committed
113 114 115 116 117 118
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
潘际乾 committed
119
</script>
潘际乾 committed
120
<style></style>