UsrInfo.vue 7.16 KB
Newer Older
hewei committed
1 2 3 4
<template>
  <div class="eibs-tab">
    <c-col :span="12" class="col-left">
      <c-col :span="24">
5
        <el-form-item label="用户ID" prop="extkey">
hewei committed
6 7
          <c-input
              v-model="model.extkey"
8
              placeholder="请输入用户ID"
hewei committed
9 10 11 12 13
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
14
        <el-form-item label="用户名" prop="nam">
hewei committed
15 16
          <c-input
              v-model="model.nam"
17
              placeholder="请输入用户名"
hewei committed
18 19 20 21 22
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
23
        <el-form-item label="禁止登录" prop="lgiflg">
zhouqian committed
24 25 26 27 28 29
          <c-select style="width: 100%"
                v-model="model.lgiflg"
               placeholder="请选择禁止登录标识"
                :code="getCodesByKey('lgiflg')"
            >
            </c-select>
hewei committed
30 31 32
        </el-form-item>
      </c-col>
      <c-col :span="24">
33
        <el-form-item label="最近登录时间" prop="ssnbegdattim">
hewei committed
34
          <c-date-picker
zhouqian committed
35
              style="width: 100%"
hewei committed
36
              v-model="model.ssnbegdattim"
37
              placeholder="请选择最近登录时间"
hewei committed
38 39 40 41 42
          >
          </c-date-picker>
        </el-form-item>
      </c-col>
      <c-col :span="24">
43
        <el-form-item label="SSN ID" prop="ssninr">
hewei committed
44 45
          <c-input
              v-model="model.ssninr"
46
              placeholder="请输入SSN ID"
hewei committed
47 48 49 50 51
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
52
        <el-form-item label="实体标志" prop="pri">
hewei committed
53 54
          <c-input
              v-model="model.pri"
55
              placeholder="请输入实体标志"
hewei committed
56 57 58 59 60
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
61
        <el-form-item label="实体" prop="ety">
hewei committed
62 63
          <c-input
              v-model="model.ety"
64
              placeholder="请输入实体"
hewei committed
65 66 67 68 69
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
70
        <el-form-item label="用户组" prop="usg">
hewei committed
71 72
          <c-input
              v-model="model.usg"
73
              placeholder="请输入用户组"
hewei committed
74 75 76 77 78
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
79
        <el-form-item label="最近DIA查看时间" prop="lstdiadat">
hewei committed
80
          <c-date-picker
zhouqian committed
81
              style="width: 100%"
hewei committed
82
              v-model="model.lstdiadat"
83
              placeholder="请选择最近DIA查看时间"
hewei committed
84 85 86 87 88
          >
          </c-date-picker>
        </el-form-item>
      </c-col>
      <c-col :span="24">
89
        <el-form-item label="授权币种" prop="relcur">
zhouqian committed
90
          <c-select v-model="model.relcur" style="width: 100%" placeholder="请选择账号币种" :code="getCodesByKey('curtxt')"> </c-select>
hewei committed
91 92 93
        </el-form-item>
      </c-col>
      <c-col :span="24">
94
        <el-form-item label="授权金额" prop="relamt">
95
          <c-input-currency class="input-currency-left"
hewei committed
96
              v-model="model.relamt"
97
              placeholder="请输入授权金额"
hewei committed
98
          >
99
          </c-input-currency>
hewei committed
100 101 102
        </el-form-item>
      </c-col>
      <c-col :span="24">
103
        <el-form-item label="第二授权金额" prop="relamt2nd">
104
          <c-input-currency class="input-currency-left"
hewei committed
105
              v-model="model.relamt2nd"
106
              placeholder="请输入第二授权金额"
hewei committed
107
          >
108
          </c-input-currency>
hewei committed
109 110 111 112 113 114
        </el-form-item>
      </c-col>
    </c-col>

    <c-col :span="12" class="col-right">
      <c-col :span="24">
115
        <el-form-item label="授权组" prop="relgrp">
hewei committed
116 117
          <c-input
              v-model="model.relgrp"
118
              placeholder="请输入授权组"
hewei committed
119 120 121 122 123
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
124
        <el-form-item label="电话" prop="tel">
hewei committed
125 126
          <c-input
              v-model="model.tel"
127
              placeholder="请输入电话"
hewei committed
128 129 130 131 132
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
hewei committed
133
        <el-form-item label="传真" prop ="fax">
hewei committed
134 135
          <c-input
              v-model="model.fax"
136
              placeholder="请输入传真"
hewei committed
137 138 139 140 141
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
142
        <el-form-item label="电子邮箱" prop="eml">
hewei committed
143 144
          <c-input
              v-model="model.eml"
145
              placeholder="请输入电子邮箱"
hewei committed
146 147 148 149 150
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
151
        <el-form-item label="可用时间" prop="quepow">
152
          <c-input-currency class="input-currency-left"
hewei committed
153
              v-model="model.quepow"
154
              placeholder="请输入可用时间"
hewei committed
155
          >
156
          </c-input-currency>
hewei committed
157 158 159
        </el-form-item>
      </c-col>
      <c-col :span="24">
160
        <el-form-item label="实体名称" prop="etyextkey">
hewei committed
161 162
          <c-input
              v-model="model.etyextkey"
163
              placeholder="请输入实体名称"
hewei committed
164 165 166 167 168
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
169
        <el-form-item label="组织" prop="oenr">
hewei committed
170 171
          <c-input
              v-model="model.oenr"
172
              placeholder="请输入组织"
hewei committed
173 174 175 176 177
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
178
        <el-form-item label="实体地址" prop="etaextkey">
hewei committed
179 180
          <c-input
              v-model="model.etaextkey"
181
              placeholder="请输入实体地址"
hewei committed
182 183 184 185 186
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
187
        <el-form-item label="客户经理" prop="resusrflg">
hewei committed
188 189
          <c-input
              v-model="model.resusrflg"
190
              placeholder="请输入客户经理"
hewei committed
191 192 193 194 195
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
196
        <el-form-item label="用户状态" prop="secsta">
hewei committed
197 198
          <c-input
              v-model="model.secsta"
199
              placeholder="请输入用户状态"
hewei committed
200 201 202 203 204
          >
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
205
        <el-form-item label="信件的组织单位" prop="letoenr">
hewei committed
206 207
          <c-input
              v-model="model.letoenr"
208
              placeholder="请输入信件的组织单位"
hewei committed
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
          >
          </c-input>
        </el-form-item>
      </c-col>
<!--      <c-col :span="24">-->
<!--        <el-form-item label="ubrList" prop="ubrList">-->
<!--          <c-input-->
<!--              v-model="model.ubrList"-->
<!--              placeholder="请输入ubrList"-->
<!--          >-->
<!--          </c-input>-->
<!--        </el-form-item>-->
<!--      </c-col>-->
<!--      <c-col :span="24">-->
<!--        <el-form-item label="uclList" prop="uclList">-->
<!--          <c-input-->
<!--              v-model="model.uclList"-->
<!--              placeholder="请输入uclList"-->
<!--          >-->
<!--          </c-input>-->
<!--        </el-form-item>-->
<!--      </c-col>-->
    </c-col>
  </div>
</template>

<script>
236
import codes from "~/config/CodeTable";
hewei committed
237 238 239 240 241 242
export default {
  name: "",
  props: ["model"],
  data() {
    return {};
  },
243 244 245 246 247
  methods: {
    getCodesByKey(key) {
      return codes[key] ?? [];
    },
  },
hewei committed
248 249 250 251 252
};
</script>

<style>
</style>