From 2aac44c550cdb242225a2a18f7238fb41c618779 Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: Mon, 06 Jan 2025 09:21:57 +0800
Subject: [PATCH] bug修改
---
src/views/safetyReview/userManage/institutionUsers/index.vue | 17 +++++++++++++++--
1 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/src/views/safetyReview/userManage/institutionUsers/index.vue b/src/views/safetyReview/userManage/institutionUsers/index.vue
index 15b4c5f..44ed63e 100644
--- a/src/views/safetyReview/userManage/institutionUsers/index.vue
+++ b/src/views/safetyReview/userManage/institutionUsers/index.vue
@@ -1,5 +1,12 @@
<template>
<div class="app-container">
+ <div style="margin-top: 15px;margin-bottom: 15px;">
+ <el-radio-group v-model="queryParams.attribute" @change="changeBtn">
+ <el-radio-button label="">全部</el-radio-button>
+ <el-radio-button label="0">疆内</el-radio-button>
+ <el-radio-button label="1">疆外</el-radio-button>
+ </el-radio-group>
+ </div>
<div style="margin-bottom: 10px">
<el-form :inline="true" style="display: flex;align-items: flex-start;flex-wrap: wrap;" >
<el-form-item label="机构名称:" >
@@ -39,6 +46,7 @@
</div>
<!-- 表格数据 -->
<el-table v-loading="loading" :data="dataList" :border="true">
+ <el-table-column label="序号" type="index" align="center" width="60" />
<el-table-column label="用户ID" prop="id" align="center"/>
<el-table-column label="机构名称" prop="agency.name" align="center"/>
<el-table-column label="信用代码" prop="agency.creditCode" align="center"/>
@@ -121,7 +129,8 @@
pageNum: 1,
pageSize: 10,
agencyName: '',
- state: null
+ state: null,
+ attribute: "",
},
total: 0,
dataList: [],
@@ -232,6 +241,9 @@
})
}
+const changeBtn = (val) => {
+ getList()
+}
const handleDelete = (val) => {
@@ -265,7 +277,8 @@
pageNum: 1,
pageSize: 10,
agencyName: '',
- state: null
+ state: null,
+ attribute: "",
}
getList();
}
--
Gitblit v1.9.2