| | |
| | | > |
| | | <el-input |
| | | v-model="queryForm.uname" |
| | | size="small" |
| | | :placeholder="$t('userManage.userInfoObj.unamePlaceholder')" |
| | | style="width: 200px" |
| | | /> |
| | | > |
| | | <i slot="suffix" class="el-icon-search" @click="queryInfo"></i> |
| | | </el-input> |
| | | </el-form-item> |
| | | <el-form-item |
| | | prop="depid" |
| | |
| | | <el-select |
| | | :popper-append-to-body="false" |
| | | v-model="queryForm.depName" |
| | | size="small" |
| | | placeholder="请选择" |
| | | style="width: 200px" |
| | | > |
| | |
| | | </div> |
| | | </el-form> |
| | | </div> |
| | | <div class="dividing-line"></div> |
| | | <div |
| | | class="table_box" |
| | | :style="styleVar" |
| | |
| | | :data="tableData" |
| | | style="width: 100%" |
| | | class="table_height" |
| | | height="calc(100% - 57px)" |
| | | height="calc(100% - 45px)" |
| | | @selection-change="handleSelectionChange" |
| | | > |
| | | <el-table-column |
| | |
| | | <!-- <el-table-column |
| | | align="center" |
| | | prop="bak" |
| | | |
| | | |
| | | :label="$t('userManage.userInfoObj.bak')" |
| | | /> --> |
| | | <el-table-column |
| | |
| | | </el-table-column> |
| | | </el-table> |
| | | <div |
| | | style="margin-top: 25px" |
| | | style="margin-top: 10px;" |
| | | class="pagination_box" |
| | | > |
| | | <el-pagination |
| | |
| | | ref="editForm" |
| | | :rules="rules" |
| | | style="display: flex" |
| | | |
| | | |
| | | > |
| | | <div> |
| | | <el-form-item |
| | |
| | | :before-close="handleClose" |
| | | |
| | | > |
| | | |
| | | |
| | | <el-form |
| | | :model="pwdForm" |
| | | ref="pwdForm" |
| | |
| | | ></el-input> |
| | | </el-form-item> |
| | | </el-form> |
| | | |
| | | |
| | | <div |
| | | slot="footer" |
| | | class="dialog-footer" |
| | |
| | | this.$nextTick(() => { |
| | | const rect = this.$refs.container.getBoundingClientRect(); |
| | | this.tableHeight = `${rect.height + 97}px`; |
| | | this.styleVar["height"] = `calc(100% - ${rect.height + 97}px)`; |
| | | this.styleVar["height"] = `calc(100% - ${rect.height + 30}px)`; |
| | | }); |
| | | }, |
| | | ...mapActions(["login", "getpublickey"]), |
| | |
| | | }, |
| | | }; |
| | | </script> |
| | | |
| | | |
| | | <style lang="less" scoped> |
| | | //@import url(); 引入公共css类 |
| | | .userInfo_box { |
| | | height: 98%; |
| | | width: 98%; |
| | | padding: 1%; |
| | | padding: 0.5%; |
| | | |
| | | .el-input { |
| | | width: 300px; |
| | |
| | | position: relative; |
| | | height: auto; |
| | | |
| | | padding: 8px; |
| | | margin-top: 20px; |
| | | //padding: 10px; |
| | | //margin-top: 20px; |
| | | |
| | | border-radius: 5px; |
| | | |
| | | margin-bottom: 20px; |
| | | //margin-bottom: 20px; |
| | | .el-form-item { |
| | | margin: 5px; |
| | | } |
| | |
| | | } |
| | | } |
| | | </style> |
| | | |
| | | |