Ordpwfm.vue 2.36 KB
Newer Older
1
<template>
wangna committed
2 3
  <div class="eibs-tab">
    <c-col :span="24">
4 5
       <!-- =============== 左边 ================== -->
      <c-col :span="12" style="padding-right: 20px">
wangna committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
        <c-col :span="12">
          <el-form-item
            label="对象"
            prop="clmmod.wfs.objtyp"
          >
            <c-input
              v-model="model.clmmod.wfs.objtyp"
              maxlength="6"
              placeholder="请输入"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>
        <c-col :span="12">
          <el-form-item label="" prop="clmmod.wfs.objinr" label-width="5px">
            <c-input
              v-model="model.clmmod.wfs.objinr"
              maxlength="8"
              placeholder="请输入"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>
30 31
       <!-- =============== 右边 ================== -->
      <c-col :span="12" style="padding-left: 20px">
wangna committed
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
        <c-col :span="24">
          <c-col :span="20">
            <el-form-item label="对象名称" prop="clmmod.wfs.objnam">
              <c-input
                v-model="model.clmmod.wfs.objnam"
                maxlength="40"
                placeholder="请输入"
                disabled
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="4">
            <c-button
              size="small"
              type="primary"
              @click="onClmmodDet"
              label-width="5px"
            >
              详情
            </c-button>
          </c-col>
        </c-col>
      </c-col>
      <c-istream-table :list="stmData.data" :columns="stmData.columns">
      </c-istream-table>
    </c-col>
58 59 60
  </div>
</template>
<script>
wangna committed
61
import Api from "~/service/Api";
62
import commonProcess from "~/mixin/commonProcess";
wangna committed
63 64
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Sptneg/Event";
65 66

export default {
wangna committed
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
      stmData: {
        columns: [
          '4 1 "ID" 150',
          '5 2 "服务" 200',
          '6 3 "交易状态" 150',
          '8 4 "最后更新" 200',
          '14 5 "重试次数" 200',
          '3 6 "文本" 300',
        ],
        data: [],
      },
    };
  },
  methods: { ...Event },
  created: function () {},
};
88 89 90
</script>
<style>
</style>