注册页面测试成功
This commit is contained in:
parent
bc733e3d66
commit
b48b2ab96a
3
src/LoginRegister/EmailRegister.vue
Normal file
3
src/LoginRegister/EmailRegister.vue
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<template>
|
||||||
|
|
||||||
|
</template>
|
126
src/LoginRegister/Register.vue
Normal file
126
src/LoginRegister/Register.vue
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
<template>
|
||||||
|
<div style="display: flex; justify-content: center; margin-top: 10vh; width: auto;">
|
||||||
|
<a-card style="width: 25vw; display: flex; justify-content: center; background-color: #f9f9f9">
|
||||||
|
<a-button style="margin-left: 15vw; font-size: medium" type="text" @click="$router.push('/emailregister')"><MailOutlined />邮箱注册</a-button>
|
||||||
|
<h1 style="display: flex; font-weight: bold">用户注册</h1>
|
||||||
|
<a-form
|
||||||
|
:label-col="{ span: 8 }"
|
||||||
|
:model="formState"
|
||||||
|
:wrapper-col="{ span: 16 }"
|
||||||
|
autocomplete="off"
|
||||||
|
name="basic"
|
||||||
|
style="margin-top: 3vh"
|
||||||
|
@finish="onFinish"
|
||||||
|
@finishFailed="onFinishFailed"
|
||||||
|
>
|
||||||
|
<a-form-item
|
||||||
|
:rules="[{ required: true, message: '请输入您的用户名!' }]"
|
||||||
|
label="用户名"
|
||||||
|
name="username"
|
||||||
|
>
|
||||||
|
<a-input v-model:value="formState.username" type="text" />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item
|
||||||
|
:rules="[{ required: true, message: '请输入您的密码!' }]"
|
||||||
|
label="用户密码"
|
||||||
|
name="password"
|
||||||
|
>
|
||||||
|
<a-input-password v-model:value="formState.password" />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item
|
||||||
|
:rules="[{ required: true, message: '请输入家庭地址!' }]"
|
||||||
|
label="家庭地址"
|
||||||
|
name="address"
|
||||||
|
>
|
||||||
|
<a-input v-model:value="formState.address" type="text" />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item
|
||||||
|
:rules="[{ required: true, message: '请输入手机号码!' }]"
|
||||||
|
label="手机号"
|
||||||
|
name="phone"
|
||||||
|
>
|
||||||
|
<a-input v-model:value="formState.phone" type="text" />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item
|
||||||
|
:rules="[{ required: true, message: '请输入邮箱!' }]"
|
||||||
|
label="邮箱"
|
||||||
|
name="email"
|
||||||
|
>
|
||||||
|
<a-input v-model:value="formState.email" type="email" />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item
|
||||||
|
:rules="[{ required: true, message: '请输入年龄!' }]"
|
||||||
|
label="年龄"
|
||||||
|
name="age"
|
||||||
|
>
|
||||||
|
<a-input-number v-model:value="formState.age" />
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item
|
||||||
|
:rules="[{ required: true, message: '请输入性别!' }]"
|
||||||
|
label="性别"
|
||||||
|
name="sex"
|
||||||
|
>
|
||||||
|
<a-radio-group v-model:value="formState.sex">
|
||||||
|
<a-radio :value="0">保密</a-radio>
|
||||||
|
<a-radio :value="1">男</a-radio>
|
||||||
|
<a-radio :value="2">女</a-radio>
|
||||||
|
</a-radio-group>
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item :wrapper-col="{ offset: 8, span: 16 }" style="margin-top: 4vh">
|
||||||
|
<a-button html-type="submit" type="primary" @click="registerUser">立即注册</a-button>
|
||||||
|
</a-form-item>
|
||||||
|
</a-form>
|
||||||
|
</a-card>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {reactive} from 'vue';
|
||||||
|
import {MailOutlined} from "@ant-design/icons-vue";
|
||||||
|
import requests from '../public/request.js'
|
||||||
|
import {message} from "ant-design-vue";
|
||||||
|
import {useRouter} from "vue-router";
|
||||||
|
|
||||||
|
const router = useRouter()
|
||||||
|
|
||||||
|
message.config({
|
||||||
|
background: true
|
||||||
|
})
|
||||||
|
|
||||||
|
const formState = reactive({
|
||||||
|
username: '',
|
||||||
|
password: '',
|
||||||
|
address:'',
|
||||||
|
phone:'',
|
||||||
|
email:'',
|
||||||
|
sex:'',
|
||||||
|
age:0,
|
||||||
|
});
|
||||||
|
const onFinish = values => {
|
||||||
|
console.log('Success:', values);
|
||||||
|
};
|
||||||
|
const onFinishFailed = errorInfo => {
|
||||||
|
console.log('Failed:', errorInfo);
|
||||||
|
};
|
||||||
|
|
||||||
|
function registerUser() {
|
||||||
|
|
||||||
|
formState.sex = parseInt(formState.sex)
|
||||||
|
console.log("registerData:",formState)
|
||||||
|
requests.register(formState).then((res) => {
|
||||||
|
console.log("registerData:",formState)
|
||||||
|
console.log("registerResult:",res)
|
||||||
|
if (res.data.code === 200) {
|
||||||
|
//注册成功,提示+跳转页面
|
||||||
|
console.log('注册成功')
|
||||||
|
message.success('注册成功')
|
||||||
|
router.push("/login")
|
||||||
|
} else {
|
||||||
|
//注册失败,消息提示
|
||||||
|
console.log('注册失败')
|
||||||
|
}
|
||||||
|
console.log(res)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
@ -2,8 +2,8 @@
|
|||||||
<div style="display: flex; background-color: #74abe3; height: 70px; width: auto; position: relative; justify-content: flex-end; padding: 0 20px;">
|
<div style="display: flex; background-color: #74abe3; height: 70px; width: auto; position: relative; justify-content: flex-end; padding: 0 20px;">
|
||||||
<a-button ghost style="border: none; font-size: 25px; font-weight: bold; display: flex; position: absolute; top: 20%; left: 20px;" @click="">LOGO</a-button>
|
<a-button ghost style="border: none; font-size: 25px; font-weight: bold; display: flex; position: absolute; top: 20%; left: 20px;" @click="">LOGO</a-button>
|
||||||
<div style="display: flex; position: absolute; right: 20px; top: 50%; transform: translateY(-50%)">
|
<div style="display: flex; position: absolute; right: 20px; top: 50%; transform: translateY(-50%)">
|
||||||
<a-button style="color: white" type="text">登陆</a-button>
|
<a-button style="color: white" type="text" @click="$router.push('/login')">登陆</a-button>
|
||||||
<a-button style="color: white" type="text">注册</a-button>
|
<a-button style="color: white" type="text" @click="$router.push('/register')">注册</a-button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
placeholder="请选择状态"
|
placeholder="请选择状态"
|
||||||
ref="select"
|
ref="select"
|
||||||
style="width: 120px"
|
style="width: 120px"
|
||||||
@focus="focus"
|
|
||||||
>
|
>
|
||||||
<a-select-option value="启用">启用</a-select-option>
|
<a-select-option value="启用">启用</a-select-option>
|
||||||
<a-select-option value="禁用">禁用</a-select-option>
|
<a-select-option value="禁用">禁用</a-select-option>
|
||||||
@ -23,8 +23,8 @@
|
|||||||
<!--新增角色对话框-->
|
<!--新增角色对话框-->
|
||||||
<a-modal v-model:open="AddDiaLog" cancel-text="取消" ok-text="确认" title="新增角色" @cancel="addCancel" @ok="addOk">
|
<a-modal v-model:open="AddDiaLog" cancel-text="取消" ok-text="确认" title="新增角色" @cancel="addCancel" @ok="addOk">
|
||||||
<div>
|
<div>
|
||||||
<div>角色名称:<a-input v-model="addData.name" style="width: 250px; margin-bottom: 10px"/></div>
|
<div>角色名称:<a-input v-model:value="addData.name" style="width: 250px; margin-bottom: 10px"/></div>
|
||||||
<div>角色备注:<a-input v-model="addData.displayName" style="width: 250px; margin-bottom: 10px;"/></div>
|
<div>角色备注:<a-input v-model:value="addData.displayName" style="width: 250px; margin-bottom: 10px;"/></div>
|
||||||
</div>
|
</div>
|
||||||
</a-modal>
|
</a-modal>
|
||||||
|
|
||||||
@ -52,17 +52,17 @@
|
|||||||
</a-modal>
|
</a-modal>
|
||||||
|
|
||||||
<div class="table">
|
<div class="table">
|
||||||
<a-table :row-selection="rowSelection" :columns="columns" :data-source="data" :pagination="pagination"
|
<a-table :columns="columns" :data-source="states.data" :pagination="pagination" :row-selection="rowSelection"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
@change="handleTableChange">
|
@change="handleTableChange">
|
||||||
<template #bodyCell="{ column, record }">
|
<template #bodyCell="{ column, record }">
|
||||||
<template v-if="column.key === 'role_name'">
|
<template v-if="column.key === 'role_name'">
|
||||||
<a>
|
|
||||||
{{ record.role_name }}
|
{{ record.role_name }}
|
||||||
</a>
|
</template>
|
||||||
|
<template v-else-if="column.key === 'role_id'">
|
||||||
|
{{record.role_id}}
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="column.key === 'role_state'">
|
<template v-else-if="column.key === 'role_state'">
|
||||||
<span>
|
|
||||||
<a-tag
|
<a-tag
|
||||||
v-for="tag in record.role_state"
|
v-for="tag in record.role_state"
|
||||||
:key="tag"
|
:key="tag"
|
||||||
@ -70,7 +70,12 @@
|
|||||||
>
|
>
|
||||||
{{ tag.toUpperCase() }}
|
{{ tag.toUpperCase() }}
|
||||||
</a-tag>
|
</a-tag>
|
||||||
</span>
|
</template>
|
||||||
|
<template v-else-if="column.key === 'createdAt'">
|
||||||
|
{{record.createdAt}}
|
||||||
|
</template>
|
||||||
|
<template v-else-if="column.key === 'updatedAt'">
|
||||||
|
{{record.updatedAt}}
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="column.key === 'role_action'">
|
<template v-else-if="column.key === 'role_action'">
|
||||||
<span style="margin-left: 10px">
|
<span style="margin-left: 10px">
|
||||||
@ -97,8 +102,8 @@ const value1 = ref('');
|
|||||||
const roleid = ref('');
|
const roleid = ref('');
|
||||||
const AddDiaLog = ref(false);
|
const AddDiaLog = ref(false);
|
||||||
const DeleteDiaLog = ref(false);
|
const DeleteDiaLog = ref(false);
|
||||||
const editDiaLog = ref(false)
|
const editDiaLog = ref(false);
|
||||||
const token = window.localStorage.getItem('token')
|
const token = 'eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNiIsImV4cCI6MTcwNzA0OTQxM30.E5c9_3_PTAKUpCTXmgX7PCN5giV9zp66b1JUesxXURM'
|
||||||
const states = reactive({
|
const states = reactive({
|
||||||
data:[]
|
data:[]
|
||||||
})
|
})
|
||||||
@ -107,7 +112,8 @@ const updateData = reactive({
|
|||||||
name: '',
|
name: '',
|
||||||
displayName: '',
|
displayName: '',
|
||||||
|
|
||||||
})
|
});
|
||||||
|
const loadingTable = ref(true);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 配置代码
|
* 配置代码
|
||||||
@ -131,9 +137,9 @@ function getAll() {
|
|||||||
// states.data = res.data.data
|
// states.data = res.data.data
|
||||||
// console.log(res.data.data)
|
// console.log(res.data.data)
|
||||||
loadingTable.value = false
|
loadingTable.value = false
|
||||||
for (let i = 0; i < res.data.data.length; i++) {
|
/*for (let i = 0; i < res.data.data.length; i++) {
|
||||||
states.data[i] = res.data.data[i].user
|
states.data[i] = res.data.data[i].user
|
||||||
}
|
}*/
|
||||||
console.log("getAll:",states.data)
|
console.log("getAll:",states.data)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -177,7 +183,7 @@ function addCancel () {
|
|||||||
const deleteId = ref(0)
|
const deleteId = ref(0)
|
||||||
function showDeleteDiaLog(){
|
function showDeleteDiaLog(){
|
||||||
DeleteDiaLog.value = true
|
DeleteDiaLog.value = true
|
||||||
deleteId.value = row.id
|
deleteId.value = record.id
|
||||||
}
|
}
|
||||||
|
|
||||||
function deleteOk() {
|
function deleteOk() {
|
||||||
@ -199,11 +205,11 @@ function deleteCancel(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*修改用户*/
|
/*修改用户*/
|
||||||
function showEditDiaLog(){
|
function showEditDiaLog(record){
|
||||||
editDiaLog.value = true
|
editDiaLog.value = true
|
||||||
updateData.id = row.id
|
updateData.id = record.id
|
||||||
updateData.name = row.roleName
|
updateData.name = record.role_name
|
||||||
updateData.displayName = row.displayName
|
updateData.displayName = record.displayName
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -280,13 +286,13 @@ const columns = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '创建时间',
|
title: '创建时间',
|
||||||
key: 'create_time',
|
key: 'createdAt',
|
||||||
dataIndex: 'create_time',
|
dataIndex: 'createdAt',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '更新时间',
|
title: '更新时间',
|
||||||
key: 'update_time',
|
key: 'updatedAt',
|
||||||
dataIndex: 'update_time'
|
dataIndex: 'updatedAt'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
@ -294,72 +300,7 @@ const columns = [
|
|||||||
dataIndex: 'role_action'
|
dataIndex: 'role_action'
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
const data = [
|
|
||||||
{
|
|
||||||
key: '1',
|
|
||||||
role_name: 'John Brown',
|
|
||||||
role_id: 32,
|
|
||||||
role_state: ['启用'],
|
|
||||||
create_time:'1.28',
|
|
||||||
update_time:'1.28',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: '2',
|
|
||||||
role_name: 'John Brown',
|
|
||||||
role_id: 32,
|
|
||||||
role_state: ['启用'],
|
|
||||||
create_time:'1.28',
|
|
||||||
update_time:'1.28',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: '3',
|
|
||||||
role_name: 'John Brown',
|
|
||||||
role_id: 32,
|
|
||||||
role_state: ['启用'],
|
|
||||||
create_time:'1.28',
|
|
||||||
update_time:'1.28',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: '4',
|
|
||||||
role_name: 'John Brown',
|
|
||||||
role_id: 32,
|
|
||||||
role_state: ['启用'],
|
|
||||||
create_time:'1.28',
|
|
||||||
update_time:'1.28',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: '5',
|
|
||||||
role_name: 'John Brown',
|
|
||||||
role_id: 32,
|
|
||||||
role_state: ['启用'],
|
|
||||||
create_time:'1.28',
|
|
||||||
update_time:'1.28',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: '6',
|
|
||||||
role_name: 'John Brown',
|
|
||||||
role_id: 32,
|
|
||||||
role_state: ['启用'],
|
|
||||||
create_time:'1.28',
|
|
||||||
update_time:'1.28',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: '7',
|
|
||||||
role_name: 'John Brown',
|
|
||||||
role_id: 32,
|
|
||||||
role_state: ['启用'],
|
|
||||||
create_time:'1.28',
|
|
||||||
update_time:'1.28',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: '8',
|
|
||||||
role_name: 'John Brown',
|
|
||||||
role_id: 32,
|
|
||||||
role_state: ['启用'],
|
|
||||||
create_time:'1.28',
|
|
||||||
update_time:'1.28',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
|
|
||||||
const rowSelection = {
|
const rowSelection = {
|
||||||
@ -367,7 +308,6 @@ const rowSelection = {
|
|||||||
console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows);
|
console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows);
|
||||||
},
|
},
|
||||||
getCheckboxProps: record => ({
|
getCheckboxProps: record => ({
|
||||||
// Column configuration not to be checked
|
|
||||||
role_name: record.role_name,
|
role_name: record.role_name,
|
||||||
}),
|
}),
|
||||||
};
|
};
|
||||||
|
@ -65,9 +65,6 @@
|
|||||||
</a-form>
|
</a-form>
|
||||||
</a-modal>
|
</a-modal>
|
||||||
|
|
||||||
<!--删除用户对话框-->
|
|
||||||
<a-modal v-model:open="DeleteDiaLog" cancel-text="取消" ok-text="确认" title="删除用户" @cancel="deleteCancel" @ok="deleteOk"></a-modal>
|
|
||||||
|
|
||||||
<!--修改用户对话框-->
|
<!--修改用户对话框-->
|
||||||
<a-modal
|
<a-modal
|
||||||
v-model:open="EditDiaLog"
|
v-model:open="EditDiaLog"
|
||||||
@ -183,7 +180,7 @@
|
|||||||
<template v-else-if="column.key==='action'">
|
<template v-else-if="column.key==='action'">
|
||||||
<span style="margin-left: 10px">
|
<span style="margin-left: 10px">
|
||||||
<a-button size="small" style="color: dodgerblue" type="text" @click="showEditDiaLog(record)"><EditOutlined />修改</a-button>
|
<a-button size="small" style="color: dodgerblue" type="text" @click="showEditDiaLog(record)"><EditOutlined />修改</a-button>
|
||||||
<a-button size="small" style="color: dodgerblue" type="text" @click="showDeleteDiaLog"><DeleteOutlined />删除</a-button>
|
<a-button size="small" style="color: dodgerblue" type="text" @click="showDeleteConfirm"><DeleteOutlined />删除</a-button>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
@ -193,21 +190,25 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import {onMounted, reactive, ref} from 'vue';
|
import {createVNode, onMounted, reactive, ref} from 'vue';
|
||||||
import {DeleteOutlined, EditOutlined, PlusOutlined, SearchOutlined} from '@ant-design/icons-vue';
|
import {
|
||||||
import {message} from "ant-design-vue";
|
DeleteOutlined,
|
||||||
|
EditOutlined,
|
||||||
|
ExclamationCircleOutlined,
|
||||||
|
PlusOutlined,
|
||||||
|
SearchOutlined
|
||||||
|
} from '@ant-design/icons-vue';
|
||||||
|
import {message, Modal} from "ant-design-vue";
|
||||||
import requests from "@/public/request.js";
|
import requests from "@/public/request.js";
|
||||||
|
|
||||||
const value1 = ref('');
|
const value1 = ref('');
|
||||||
const value2 = ref('');
|
const value2 = ref('');
|
||||||
const AddDiaLog = ref(false);
|
const AddDiaLog = ref(false);
|
||||||
const DeleteDiaLog = ref(false);
|
|
||||||
const EditDiaLog = ref(false);
|
const EditDiaLog = ref(false);
|
||||||
const DeleteId = ref(0);
|
|
||||||
let dataSource = ref([]);
|
let dataSource = ref([]);
|
||||||
let data = ref([]);
|
let data = ref([]);
|
||||||
const dataLoaded = ref(false);
|
const dataLoaded = ref(false);
|
||||||
const token = "eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNiIsImV4cCI6MTcwNjk0MjE1NH0.fDLQMglvD9MZtyrZgBFSM_sX17smhvODww8IUfpJeKg"
|
const token = "eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNiIsImV4cCI6MTcwNzA0OTQxM30.E5c9_3_PTAKUpCTXmgX7PCN5giV9zp66b1JUesxXURM"
|
||||||
const requestBody = {
|
const requestBody = {
|
||||||
"page": null,
|
"page": null,
|
||||||
"limit": null,
|
"limit": null,
|
||||||
@ -270,6 +271,9 @@ const userLock = reactive({
|
|||||||
isLock: 1
|
isLock: 1
|
||||||
})
|
})
|
||||||
|
|
||||||
|
function setRowClassName(record,index) {
|
||||||
|
return 'custom-row';
|
||||||
|
}
|
||||||
|
|
||||||
const states = reactive({
|
const states = reactive({
|
||||||
data:[],
|
data:[],
|
||||||
@ -283,9 +287,6 @@ const states = reactive({
|
|||||||
message.config({
|
message.config({
|
||||||
background: true
|
background: true
|
||||||
})
|
})
|
||||||
function setRowClassName(record, index) {
|
|
||||||
return 'custom-record';
|
|
||||||
}
|
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
getAll()
|
getAll()
|
||||||
@ -359,28 +360,35 @@ function addCancel () {
|
|||||||
|
|
||||||
|
|
||||||
/*删除用户*/
|
/*删除用户*/
|
||||||
function showDeleteDiaLog(record){
|
|
||||||
DeleteDiaLog.value = true;
|
|
||||||
DeleteId.value = record.id;
|
|
||||||
}
|
|
||||||
|
|
||||||
function deleteOk() {
|
const showDeleteConfirm = (record, tableData, token) => {
|
||||||
DeleteDiaLog.value = false;
|
Modal.confirm({
|
||||||
console.log(DeleteId.value)
|
title: '确认删除',
|
||||||
requests.userDelete(DeleteId.value, token).then((res) => {
|
icon: createVNode(ExclamationCircleOutlined),
|
||||||
console.log("deleteResult:", res)
|
content: '确定删除该数据吗',
|
||||||
if (res.data.code === 200) {
|
okText: '确认',
|
||||||
message.success('删除成功')
|
cancelText: '取消',
|
||||||
} else {
|
onOk: () => {
|
||||||
message.error('删除失败')
|
const id = record.id;
|
||||||
|
requests.userDelete(id, token).then((res) => {
|
||||||
|
console.log("deleteResult:", res)
|
||||||
|
if (res.data.code === 200) {
|
||||||
|
message.success('删除成功');
|
||||||
|
// 从表格数据中移除该行
|
||||||
|
const index = tableData.findIndex(item => item.id === id);
|
||||||
|
if (index !== -1) {
|
||||||
|
tableData.splice(index, 1);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
message.error('删除失败');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
onCancel: () => {
|
||||||
|
message.info('取消删除');
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
function deleteCancel(){
|
|
||||||
DeleteDiaLog.value = false;
|
|
||||||
message.info('取消删除')
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -499,11 +507,13 @@ const rowSelection = {
|
|||||||
onChange: (selectedRowKeys, selectedRows) => {
|
onChange: (selectedRowKeys, selectedRows) => {
|
||||||
console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows);
|
console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows);
|
||||||
},
|
},
|
||||||
getCheckboxProps: record => ({
|
getCheckboxProps: (record) => ({
|
||||||
username: record.username,
|
// 设置每行选择框的属性
|
||||||
|
checked: record.isSelected, // 这里的 record.isSelected 应该是你的数据中记录的选中状态
|
||||||
}),
|
}),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
async function fetchData() {
|
async function fetchData() {
|
||||||
try {
|
try {
|
||||||
const queryData = await requests.userAllCurrent(
|
const queryData = await requests.userAllCurrent(
|
||||||
@ -513,7 +523,7 @@ async function fetchData() {
|
|||||||
search: null,
|
search: null,
|
||||||
role: null
|
role: null
|
||||||
},
|
},
|
||||||
"eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNiIsImV4cCI6MTcwNjk0MjE1NH0.fDLQMglvD9MZtyrZgBFSM_sX17smhvODww8IUfpJeKg"
|
"eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNiIsImV4cCI6MTcwNzA0OTQxM30.E5c9_3_PTAKUpCTXmgX7PCN5giV9zp66b1JUesxXURM"
|
||||||
);
|
);
|
||||||
console.log(queryData.data); // 访问数据
|
console.log(queryData.data); // 访问数据
|
||||||
dataSource.value = queryData.data.data;
|
dataSource.value = queryData.data.data;
|
||||||
|
@ -13,6 +13,16 @@ const router = createRouter({
|
|||||||
name:'login',
|
name:'login',
|
||||||
component:()=>import('@/LoginRegister/Login.vue')
|
component:()=>import('@/LoginRegister/Login.vue')
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path:'/register',
|
||||||
|
name:'register',
|
||||||
|
component:()=>import('../LoginRegister/Register.vue')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path:'/emailregister',
|
||||||
|
name:'emailregister',
|
||||||
|
component:()=>import('../LoginRegister/EmailRegister.vue')
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path:'/Manager',
|
path:'/Manager',
|
||||||
name:'Manager',
|
name:'Manager',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user