Smhinfp.vue 2.83 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 67 68 69 70 71 72 73
<template>
  <div class="eibs-tab">
    <c-row>
      <c-col :span="11">
        <c-col :span="16">
          <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="12">
          <c-checkbox v-model="model.infcon.chktrn">Active only</c-checkbox>
        </c-col>
      </c-col>
    </c-row>

    <c-col :span="22">
       <c-istream-table
        :list="stmData.data"
        :columns="stmData.columns"
        prop="infcon.smhstm"
      >
      </c-istream-table>
      <!--el-form-item
        label="stream of documents to selected contract"
        prop="infcon.smhstm"
      >
        <c-input
          v-model="model.infcon.smhstm"
          placeholder="请输入stream of documents to selected contract"
        ></c-input>
      </el-form-item-->
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
wangren committed
74
import commonProcess from "~/mixin/commonProcess";
唐贵贤 committed
75 76 77 78 79 80
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infltd/Event";

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