From 54e06ab83d8fbebf91f8e0c3a621da743ac5af26 Mon Sep 17 00:00:00 2001 From: 黄何裕 <1053952480@qq.com> Date: 星期四, 08 八月 2024 09:28:06 +0800 Subject: [PATCH] 课表页面开发 --- src/views/comment/index.vue | 244 +++++++++++++++++++++++++++++++----------------- 1 files changed, 158 insertions(+), 86 deletions(-) diff --git a/src/views/comment/index.vue b/src/views/comment/index.vue index 0bcef35..004ad03 100644 --- a/src/views/comment/index.vue +++ b/src/views/comment/index.vue @@ -1,118 +1,190 @@ <template> - <div class="app-container"> - <el-tabs v-model="activeName" @tab-click="handleClick"> - <el-tab-pane label="璇剧▼" name="first"> - <div style="display: flex; flex-direction: row-reverse"> - <div style="width: 300px"> - <el-input - placeholder="鎸夎绋嬪悕绉版悳绱�" - v-model="input3" - class="input-with-select" - size="small" - > - <el-button slot="append" icon="el-icon-search"></el-button> - </el-input> - </div> + <div class="app-container"> + <el-tabs v-model="activeName" @tab-click="fetchData"> + <el-tab-pane label="璇惧悗鐐硅瘎" name="comment"> + <div style="display: flex; flex-direction: row-reverse"> + <div style="width: 300px"> + <el-input + placeholder="鎸夎绋嬪悕绉版悳绱�" + v-model="data.keyword" + class="input-with-select" + size="small" + > + <el-button + slot="append" + icon="el-icon-search" + @click="fetchData" + ></el-button> + </el-input> </div> + </div> + <div style="height: calc(100vh - 248px)"> <el-table v-loading="listLoading" :data="list" element-loading-text="Loading" fit + height="100%" > <el-table-column label="璇剧▼鍚嶇О"> - <template slot-scope=""> xxxxx </template> + <template slot-scope="scope"> + <el-link type="primary" :underline="false">{{ + scope.row.courseName + }}</el-link> + </template> </el-table-column> - <el-table-column label="鏃堕棿" width="80"> - <template slot-scope=""> 鐢� </template> + <el-table-column label="璇剧▼鏃堕棿" width=""> + <template slot-scope="scope"> + {{ scope.row.beginTime }} + </template> </el-table-column> - <el-table-column label="鏁欏笀" width="200"> - <template slot-scope=""> 10086 </template> + <el-table-column label="鏁欏笀" width="" prop="staffNames"> </el-table-column> - <el-table-column label="瀛﹀憳鏁�" width="200"> - <template slot-scope=""> asfiaf </template> + <el-table-column label="瀛﹀憳鏁�" width="" prop="playerCount"> </el-table-column> - <el-table-column label="宸茬偣璇勬暟" width=""> - <template slot-scope=""> asfiaf </template> - </el-table-column> - <el-table-column label="鎿嶄綔" width=""> - <template slot-scope=""> 鐐硅瘎 </template> + <el-table-column label="宸茬偣璇勬暟" width="" prop="commentCount"> </el-table-column> </el-table> - </el-tab-pane> - <el-tab-pane label="鍏朵粬" name="fourth"> - <div style="display: flex; flex-direction: row-reverse"> - <div style="width: 300px"> - <el-input - placeholder="鎸夊鍛樺悕绉版悳绱�" - v-model="input3" - class="input-with-select" - size="small" - > - <el-button slot="append" icon="el-icon-search"></el-button> - </el-input> - </div> + </div> + <div> + <el-pagination + @size-change="handleSizeChange" + @current-change="handleCurrentChange" + :current-page="data.pageIn.index + 1" + :page-sizes="[10, 20, 30, 40]" + :page-size="data.pageIn.size" + layout="total, sizes, prev, pager, next, jumper" + :total="total" + > + </el-pagination> + </div> + </el-tab-pane> + <el-tab-pane label="鍏朵粬" name="other"> + <div style="display: flex; flex-direction: row-reverse"> + <div style="width: 300px"> + <el-input + placeholder="鎸夊鍛樺悕绉版悳绱�" + v-model="data.keyword" + class="input-with-select" + size="small" + > + <el-button slot="append" icon="el-icon-search" @click="fetchData"></el-button> + </el-input> </div> + </div> + <div style="height: calc(100vh - 248px)"> <el-table v-loading="listLoading" :data="list" element-loading-text="Loading" fit + height="100%" > - <el-table-column label="瀛﹀憳"> - <template slot-scope=""> xxxxx </template> + <el-table-column label="瀛﹀憳鍚嶇О"> + <template slot-scope="scope"> + <el-link type="primary" :underline="false">{{ + scope.row.player.name + }}</el-link> + </template> </el-table-column> - <el-table-column label="鏃堕棿" width="80"> - <template slot-scope=""> 鐢� </template> - </el-table-column> - <el-table-column label="鏍囬" width="200"> - <template slot-scope=""> 10086 </template> - </el-table-column> - <el-table-column label="鐐硅瘎鑰佸笀" width="200"> - <template slot-scope=""> asfiaf </template> - </el-table-column> - <el-table-column label="鎿嶄綔" width=""> - <template slot-scope=""> 鏌ョ湅 </template> + <el-table-column label="鐐硅瘎鏃堕棿" width="" prop="createTime"> </el-table-column> </el-table> - </el-tab-pane> - </el-tabs> - </div> - </template> - - <script> - import { getList } from "@/api/table"; - - export default { - filters: { - statusFilter(status) { - const statusMap = { - published: "success", - draft: "gray", - deleted: "danger", - }; - return statusMap[status]; - }, - }, - data() { - return { - list: null, - listLoading: true, - activeName: "first", + </div> + <div> + <el-pagination + @size-change="handleSizeChange" + @current-change="handleCurrentChange" + :current-page="data.pageIn.index + 1" + :page-sizes="[10, 20, 30, 40]" + :page-size="data.pageIn.size" + layout="total, sizes, prev, pager, next, jumper" + :total="total" + > + </el-pagination> + </div> + </el-tab-pane> + </el-tabs> + </div> +</template> + +<script> +import { getSessionWithComment, getHomeworkCommentByAuth } from "@/api/comment"; + +export default { + filters: { + statusFilter(status) { + const statusMap = { + published: "success", + draft: "gray", + deleted: "danger", }; + return statusMap[status]; }, - created() { - this.fetchData(); + }, + data() { + return { + list: null, + listLoading: true, + activeName: "comment", + total: 0, + data: { + staffId: JSON.parse(localStorage.getItem("user")).staffs[0].id, + keyword: "", + pageIn: { + //鍙�夛紝濡傛灉鏄垎椤垫煡璇紝闇�瑕佸姞涓娿�� + index: 0, //蹇呴�� + size: 10, //姣忛〉鐨勫ぇ灏忋�傞粯璁�20 + sorts: { + name: "begin_time", //鎺掑簭瀛楁鍚嶇О + direction: "ASC", //鎺掑簭鏂瑰悜 + }, + }, + }, + }; + }, + created() { + this.fetchData(); + }, + methods: { + handleSizeChange(val) { + this.data.pageIn.size = val; + this.fetchData("pageIn"); }, - methods: { - fetchData() { + handleCurrentChange(val) { + this.data.pageIn.index = val - 1; + this.fetchData("pageIn"); + }, + fetchData(_val) { + if (_val !== "pageIn") { + this.data.pageIn.index = 0; + this.data.pageIn.size = 10; + } + this.listLoading = true; + if (this.activeName == "comment") { this.listLoading = true; - getList().then((response) => { - this.list = response.data.items; + getSessionWithComment(this.data).then((response) => { + this.list = response.data.findSessionWithComment.ls; + this.total = response.data.findSessionWithComment.pageOut.total; this.listLoading = false; }); - }, + } else if (this.activeName == "other") { + this.listLoading = true; + let data = { + commentTypes: ["DIRECT_COMMENT"], + staffId: JSON.parse(localStorage.getItem("user")).staffs[0].id, + keyword: this.data.keyword, + pageIn: { ...this.data.pageIn }, + }; + data.pageIn.sorts.name = "createTime"; + data.pageIn.sorts.direction = "DESC"; + getHomeworkCommentByAuth(data).then((response) => { + this.list = response.data.findHomeworkCommentByAuth.ls; + this.total = response.data.findHomeworkCommentByAuth.pageOut.total; + this.listLoading = false; + }); + } }, - }; - </script> - \ No newline at end of file + }, +}; +</script> -- Gitblit v1.8.0