123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- <template>
- <section class="content">
- <div class="box box-info">
- <div
- v-loading.body="loading"
- v-loading.fullscreen="loading"
- class="box-body"
- element-loading-text="请稍后..."
- >
- <!-- 表单 -->
- <el-form inline :model="searchForm">
- <el-form-item label="登录名">
- <el-input
- v-model="searchForm.loginName"
- placeholder="请输入登录名"
- style="width: 180px"
- />
- </el-form-item>
- <el-form-item label="角色">
- <el-select
- v-model="searchForm.roleId"
- clearable
- placeholder="请选择"
- class="input_width"
- >
- <el-option
- v-for="item in roleList4Search"
- :key="item.roleId"
- :label="item.roleName"
- :value="item.roleId"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="操作时间">
- <el-date-picker
- v-model="timeRange"
- class="input"
- type="datetimerange"
- start-placeholder="开始日期"
- range-separator="至"
- end-placeholder="结束日期"
- value-format="yyyy-MM-dd HH:mm:ss"
- :clearable="false"
- size="small"
- @change="changeTimeRange"
- ></el-date-picker>
- </el-form-item>
- <el-form-item>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-search"
- @click="handleSearchBtn"
- >
- 查询
- </el-button>
- </el-form-item>
- </el-form>
- <div class="block-seperator"></div>
- <!-- 页面列表 -->
- <el-table :data="tableData" border resizable stripe style="width: 100%">
- <el-table-column width="120" prop="loginName" label="登录名">
- </el-table-column>
- <el-table-column width="120" prop="name" label="姓名">
- </el-table-column>
- <el-table-column prop="roles" label="用户角色"> </el-table-column>
- <el-table-column width="120" prop="operateIp" label="IP地址">
- </el-table-column>
- <el-table-column width="200" prop="operate" label="操作">
- </el-table-column>
- <el-table-column width="150" prop="operateTime" label="操作时间">
- </el-table-column>
- </el-table>
- <div class="page pull-right">
- <el-pagination
- v-if="paginationShow"
- :current-page="currentPage"
- :page-size="pageSize"
- :page-sizes="[10, 20, 50, 100, 200, 300]"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- @current-change="handleCurrentChange"
- @size-change="handleSizeChange"
- />
- </div>
- </div>
- </div>
- </section>
- </template>
- <script>
- import { CORE_API } from "@/constants/constants.js";
- import { mapState } from "vuex";
- export default {
- name: "Project",
- data() {
- return {
- examList: [],
- loading: false,
- paginationShow: false,
- roleList4Search: [],
- timeRange: [],
- searchForm: {
- startTime: null,
- endTime: null,
- loginName: "",
- roleId: "",
- },
- tableData: [],
- currentPage: 1,
- pageSize: 10,
- total: 10,
- };
- },
- computed: {
- ...mapState({ user: (state) => state.user }),
- },
- //初始化查询
- created() {
- this.init();
- },
- methods: {
- changeTimeRange(e) {
- if (e && e.length > 0) {
- this.searchForm.startTime = e[0];
- this.searchForm.endTime = e[1];
- } else {
- this.searchForm.startTime = "";
- this.searchForm.endTime = "";
- }
- },
- handleSearchBtn() {
- this.currentPage = 1;
- this.search();
- },
- handleSizeChange(val) {
- this.pageSize = val;
- this.currentPage = 1;
- this.search();
- },
- handleCurrentChange(val) {
- this.currentPage = val;
- this.search();
- },
- //查询
- search() {
- this.loading = true;
- var url =
- CORE_API +
- "/adminOperate/page/" +
- this.currentPage +
- "/" +
- this.pageSize;
- this.$httpWithMsg
- .get(url, { params: this.searchForm })
- .then((response) => {
- this.tableData = response.data.list;
- this.total = response.data.total;
- this.loading = false;
- this.$nextTick(function () {
- this.paginationShow = true;
- });
- })
- .finally(() => (this.loading = false));
- },
- init() {
- this.search();
- var url =
- CORE_API +
- "/rolePrivilege/getRoles?includeSuperAdmin=true&rootOrgId=" +
- this.user.rootOrgId;
- Promise.all([this.$httpWithMsg.post(url)]).then(([resp]) => {
- this.roleList4Search = resp.data;
- });
- },
- },
- };
- </script>
- <style scoped>
- .page {
- margin-top: 10px;
- }
- .pull-length {
- width: 300px;
- }
- .pull-center {
- margin-top: 20px;
- }
- .editForm .el-form-item {
- margin-bottom: 12px;
- }
- </style>
|