UclInfo.vue 2.35 KB
Newer Older
hewei committed
1
<template>
hewei committed
2 3 4
  <div class="eibs">
    <el-form
        ref="modelForm"
5
        label-width="160px"
hewei committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
        size="small"
        label-position="right"
        :model="ucl"
        :rules="rules"
        :validate-on-rule-change="false"
        :disabled="operate === 'details'"
    >
      <c-col :span="12" class="col-left">
        <c-col :span="24">
          <el-form-item label="默认的机构标志" prop="usrdef">
            <c-input
                v-model="ucl.usrdef"
                placeholder="请输入默认的机构标志"
            >
            </c-input>
          </el-form-item>
        </c-col>
        <c-col :span="24">
          <el-form-item label="用户ID" prop="usr">
            <c-input
                v-model="ucl.usr"
                placeholder="请输入用户ID"
28
                disabled=true
hewei committed
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
            >
            </c-input>
          </el-form-item>
        </c-col>
        <c-col :span="24">
          <el-form-item label="用户所在机构和用户名称" prop="mannam">
            <c-input
                v-model="ucl.mannam"
                placeholder="请输入用户所在机构和用户名称"
            >
            </c-input>
          </el-form-item>
        </c-col>
      </c-col>
      <c-col :span="12" class="col-right">
        <c-col :span="24">
          <el-form-item label="机构INR" prop="branchinr">
            <c-input
                v-model="ucl.branchinr"
                placeholder="请输入机构INR"
            >
            </c-input>
          </el-form-item>
        </c-col>
        <c-col :span="24">
          <el-form-item label="用户可作业务的列表" prop="objlst">
            <c-input
                v-model="ucl.objlst"
                placeholder="请输入用户可作业务的列表"
            >
            </c-input>
          </el-form-item>
        </c-col>
        <c-col :span="24">
          <el-form-item label="是否参与任务分配" prop="assignflg">
            <c-input
                v-model="ucl.assignflg"
                placeholder="是否参与任务分配"
            >
            </c-input>
          </el-form-item>
        </c-col>
      </c-col>

    </el-form>
hewei committed
74 75 76 77
  </div>
</template>

<script>
hewei committed
78 79
import { Pattern } from "./Ucl";

hewei committed
80
export default {
hewei committed
81 82
  name: "",
  props: ['ucl', 'operate'],
hewei committed
83 84
  data() {
    return {
hewei committed
85
      rules: Pattern,
hewei committed
86
    };
hewei committed
87 88
  }
}
hewei committed
89 90 91 92
</script>

<style>
</style>