Smhinfp.vue 2.67 KB
Newer Older
唐贵贤 committed
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 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
<template>
  <div class="eibs-tab">
    <c-row>
      <c-col :span="24">
        <c-col :span="11">
          <c-col :span="24">
            <el-form-item label="Type of Document" prop="infcon.smhcortyp">
              <c-select
                v-model="model.infcon.smhcortyp"
                style="width: 100%"
                placeholder="请选择Type of Document"
              >
              </c-select>
            </el-form-item>
          </c-col>
          <c-col :span="12">
            <el-form-item label="Created between " prop="infcon.smhdatfrom">
              <c-date-picker
                type="date"
                v-model="model.infcon.smhdatfrom"
                style="width: 100%"
                placeholder="请选择Created between "
              ></c-date-picker>
            </el-form-item>
          </c-col>
          <c-col :span="12">
            <el-form-item label="created till" prop="infcon.smhdatto">
              <c-date-picker
                type="date"
                v-model="model.infcon.smhdatto"
                style="width: 100%"
                placeholder="请选择created till"
              ></c-date-picker>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item label="Direction" prop="infcon.smhdir">
              <c-select
                v-model="model.infcon.smhdir"
                style="width: 100%"
                placeholder="请选择Direction"
              >
              </c-select>
            </el-form-item>
          </c-col>
        </c-col>
        <c-col :span="11" :offset="1">
          <c-col :span="24">
            <c-checkbox v-model="model.infcon.chktrn">Active only</c-checkbox>
          </c-col>
        </c-col>
      </c-col>
    </c-row>

    <c-col :span="20">
      <c-istream-table
        :list="stmData.data"
        :columns="stmData.columns"
        prop="infcon.smhstm"
      >
      </c-istream-table>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
wangren committed
67
import commonProcess from "~/mixin/commonProcess";
唐贵贤 committed
68 69 70 71 72 73
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infbtd/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
74
  mixins: [commonProcess],
唐贵贤 committed
75 76 77 78
  data() {
    return {
      stmData: {
        columns: [
唐贵贤 committed
79 80 81 82 83
          '1 1 \"Type\" 175 ',
          '8 2 \"Key\" 175',
          '9 3 \"Document\" 175',
          '11 4 \"Created\" 175',
          '12 5 \"Direction\" 175',
唐贵贤 committed
84
          // "18 5 \"MT\" 100",
唐贵贤 committed
85 86 87
          '3 6 \"SMHINR\" 175',
          '4 7 \" \" 175',
          '5 8 \" \" 175',
唐贵贤 committed
88 89 90 91 92 93 94 95 96 97 98
        ],
        data: [],
      },
    };
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>