mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-07 01:46:43 +08:00
1、修改组员查询。2、组员删除
This commit is contained in:
2
.env
2
.env
@@ -9,7 +9,7 @@ VUE_APP_PROXY_URL=//43.143.139.204/manageApi
|
||||
# 登录url
|
||||
VUE_APP_LOGIN_URL=//u-pre.boe.com/web
|
||||
# boe域名
|
||||
VUE_APP_BOE_API_URL=//u-pre.boe.com
|
||||
VUE_APP_BOE_API_URL=https://u-pre.boe.com
|
||||
#打包路径
|
||||
VUE_APP_OUTPUT_DIR=./dist
|
||||
|
||||
|
||||
12582
package-lock.json
generated
12582
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -320,7 +320,7 @@ export default {
|
||||
let obj = {
|
||||
projectGroupId: props.chooseGroupId,
|
||||
projectId: props.projectId,
|
||||
studentIds: state.selectedRows,
|
||||
ids: state.selectedRowKeys,
|
||||
};
|
||||
|
||||
delGroupStudent(obj)
|
||||
@@ -351,7 +351,7 @@ export default {
|
||||
let array = [];
|
||||
data.map((value) => {
|
||||
let obj = {
|
||||
key: value.studentId,
|
||||
key: value.id,
|
||||
projectId: value.projectId, //项目id
|
||||
groupId: value.groupId, //小组id
|
||||
group: value.groupName, //小组名
|
||||
|
||||
@@ -12,24 +12,16 @@ module.exports = defineConfig({
|
||||
publicPath: process.env.VUE_APP_BASE,
|
||||
outputDir: process.env.VUE_APP_OUTPUT_DIR,
|
||||
devServer: {
|
||||
port: 8070,
|
||||
port: 8080,
|
||||
proxy: {
|
||||
"/manageApi": {
|
||||
target: 'http:' + process.env.VUE_APP_PROXY_URL,
|
||||
target: "http://localhost:30001",
|
||||
changeOrigin: true, //表示是否改变原域名
|
||||
pathRewrite: {
|
||||
"^/manageApi": "",
|
||||
},
|
||||
}, "/userbasic": {
|
||||
target: 'https:' + process.env.VUE_APP_BOE_API_URL,
|
||||
changeOrigin: true, //表示是否改变原域名
|
||||
},
|
||||
"/systemapi": {
|
||||
target: 'https:' + process.env.VUE_APP_BOE_API_URL,
|
||||
changeOrigin: true, //表示是否改变原域名
|
||||
},
|
||||
"/api": {
|
||||
target: 'https:' + process.env.VUE_APP_BOE_API_URL,
|
||||
target: process.env.VUE_APP_BOE_API_URL,
|
||||
changeOrigin: true, //表示是否改变原域名
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user