mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-17 23:06:47 +08:00
feat:增加项目管理页面
This commit is contained in:
@@ -64,6 +64,9 @@
|
||||
<div class="img2"></div>
|
||||
<div class="wz">导出数据</div>
|
||||
</div>
|
||||
<div class="btn btn2" @click="showEScoreModal">
|
||||
<div class="wz">导入成绩</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="line">
|
||||
<div class="inline">
|
||||
@@ -111,17 +114,21 @@
|
||||
<button class="btn2">确定</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 导出成绩抽屉 -->
|
||||
<EScore v-model:eScorevisible="eScorevisible" />
|
||||
</a-drawer>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { toRefs, reactive } from "vue";
|
||||
import { message } from "ant-design-vue";
|
||||
|
||||
import EScore from "../ExportScore.vue";
|
||||
// import * as api from "../../../api/index";
|
||||
export default {
|
||||
name: "ProjectExamManage",
|
||||
|
||||
components: {
|
||||
EScore,
|
||||
},
|
||||
props: {
|
||||
TMvisible: {
|
||||
type: Boolean,
|
||||
@@ -161,7 +168,7 @@ export default {
|
||||
},
|
||||
],
|
||||
selectedRowKeys: [],
|
||||
|
||||
eScorevisible: false, //导入成绩抽屉
|
||||
pageNo: 1,
|
||||
pageSize: 10,
|
||||
currentPage: 1,
|
||||
@@ -274,6 +281,10 @@ export default {
|
||||
message.destroy();
|
||||
message.success("催促" + props.title + "成功");
|
||||
};
|
||||
//导入成绩
|
||||
const showEScoreModal = () => {
|
||||
state.eScorevisible = true;
|
||||
};
|
||||
//表头清空
|
||||
const clearLine = () => {
|
||||
state.selectedRowKeys = [];
|
||||
@@ -287,6 +298,7 @@ export default {
|
||||
onSelectChange,
|
||||
godie,
|
||||
clearLine,
|
||||
showEScoreModal,
|
||||
};
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user