提价一下没改什么

dev_2022-05-11
e 3 years ago
parent 8af271dbd5
commit bd4eff8659
  1. 20
      src/pages/project/list/index.vue
  2. 2
      src/pages/student/list/index.vue
  3. 4
      src/setting.js

@ -84,21 +84,21 @@
{{ stateKeys[scope.row.state] }}
</template>
</el-table-column>
<el-table-column label="操作">
<el-table-column label="操作" align="center">
<template slot-scope="scope">
<el-button type="text" @click="edit(scope.row,'0')">查看</el-button>
<el-button v-if="scope.row.founder != 0" type="text" @click="edit(scope.row,'1')">编辑</el-button>
<el-button v-if="scope.row.founder != 0" type="text" @click="handleDelete(scope.row.projectId)">删除</el-button>
<el-button v-if="auth('复制')" type="text" @click="copyData(scope.row.projectId)">复制</el-button>
<el-switch
v-if="auth('禁用')"
v-model="scope.row.isOpen"
:active-text="scope.row.isOpen ? '关闭' : '启用'"
:active-value="0"
:inactive-value="1"
style="margin: 0 10px 0 10px"
@change="switchOff(scope.row)"
></el-switch>
<!-- <el-switch-->
<!-- v-if="auth('禁用')"-->
<!-- v-model="scope.row.isOpen"-->
<!-- :active-text="scope.row.isOpen ? '关闭' : '启用'"-->
<!-- :active-value="0"-->
<!-- :inactive-value="1"-->
<!-- style="margin: 0 10px 0 10px"-->
<!-- @change="switchOff(scope.row)"-->
<!-- ></el-switch>-->
</template>
</el-table-column>
</el-table>

@ -994,7 +994,7 @@ export default {
}
util.successMsg(`上传成功${res.data.successNum},上传失败${res.data.failureNum}`);
this.handleRefresh();
util.successMsg(`本次上传有${res.data.failureNum}失败`);
util.successMsg(`本次上传有${res.data.failureNum}错误信息录入`);
this.getClassTreeData('','1','')
} else {

@ -35,8 +35,8 @@ if (isHh) {
title = "职站服务端管理系统";
} else if (isDev) {
jumpPath = "http://192.168.31.154:8087/";
host = "http://39.108.250.202:9000/"; // 中台测试服
// host = "http://192.168.31.151:9000/"; // 榕
// host = "http://39.108.250.202:9000/"; // 中台测试服
host = "http://192.168.31.151:9000/"; // 榕
// host = "http://192.168.31.125:9000/"; // 坤
// host = 'http://192.168.31.137:9000/'; // 赓
title = "职站服务端管理系统";

Loading…
Cancel
Save