123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <template>
- <div>
- <!-- 搜索标题 -->
- <div @click="openTeaching('create')" class="newBand">新建</div>
- <!-- 搜索标题 -->
- <el-form :inline="true" class="searchForm" v-model.trim="searchForm">
- <el-form-item prop="hasPracticeCourse">
- <el-select
- class="multiple"
- v-model.trim="searchForm.tenantId"
- placeholder="请选择对内或对外">
- <el-option label="对内" value="1"></el-option>
- <el-option label="对外" value="2"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button @click="getList" type="danger">搜索</el-button>
- </el-form-item>
- </el-form>
- <!-- 列表 -->
- <div class="tableWrap">
- <el-table :data="tableList" :header-cell-style="{background:'#EDEEF0',color:'#444'}">
- <el-table-column align="center" label="轮播图">
- <template slot-scope="scope">
- <img class="bannerImg" :src="scope.row.coverImage" alt />
- </template>
- </el-table-column>
- <el-table-column align="center" prop="title" label="标题"></el-table-column>
- <el-table-column align="center" label="跳转连接">
- <template slot-scope="scope">{{ scope.row.linkUrl + '/' + scope.row.id }}</template>
- </el-table-column>
- <el-table-column align="center" prop="remark" label="是否使用">
- <template slot-scope="scope">{{ scope.row.status == 1 ? '是' : '否' }}</template>
- </el-table-column>
- <el-table-column align="center" prop="order" label="排序"></el-table-column>
- <el-table-column align="center" prop="remark" label="适用范围">
- <template slot-scope="scope">
- <p v-if=" scope.row.tenantId == 1">对内</p>
- <p v-if=" scope.row.tenantId == 2">对外</p>
- </template>
- </el-table-column>
- <el-table-column align="center" label="操作">
- <template slot-scope="scope">
- <el-button @click="openTeaching('update', scope.row)" type="text">修改</el-button>
- <el-button v-if="scope.row.status == 1" @click="onStop(scope.row, 0)" type="text">停用</el-button>
- <el-button v-else @click="onStop(scope.row, 1)" type="text">启用</el-button>
- <el-button @click="onDel(scope.row)" type="text">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- :total="pageInfo.total"
- :page.sync="pageInfo.page"
- :limit.sync="pageInfo.limit"
- :page-sizes="pageInfo.page_size"
- @pagination="getList"
- />
- </div>
- </div>
- </template>
- <script>
- import { newsList, newsUpdate, newsDel } from "@/api/contentManager";
- import pagination from "@/components/Pagination/index";
- import store from "@/store";
- export default {
- name: "training",
- components: {
- pagination
- },
- data() {
- return {
- searchForm: {
- tenantId: '1'
- },
- tableList: [],
- organId: null,
- teacherId: this.$route.query.teacherId,
- pageInfo: {
- // 分页规则
- limit: 10, // 限制显示条数
- page: 1, // 当前页
- total: 1, // 总条数
- page_size: [10, 20, 40, 50] // 选择限制显示条数
- }
- };
- },
- activated() {
- this.getList();
- },
- mounted() {
- this.getList();
- },
- methods: {
- getList() {
- let params = {
- tenantId: this.searchForm.tenantId,
- rows: this.pageInfo.limit,
- page: this.pageInfo.page,
- type: 4
- };
- newsList(params).then(res => {
- if (res.code == 200) {
- this.tableList = res.data.rows;
- this.pageInfo.total = res.data.total;
- }
- });
- },
- openTeaching(type, rows) {
- let params = {};
- if (type == "update") {
- params.id = rows.id;
- }
- params.type = 4;
- params.pageType = type;
- this.$router.push({
- path: "/contentManager/contentOperation",
- query: params
- });
- },
- onDel(row) {
- // 删除
- this.$confirm("确定是否删除?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- newsDel({ id: row.id }).then(res => {
- if (res.code == 200) {
- this.$message.success("删除成功");
- this.getList();
- } else {
- this.$message.error(res.msg);
- }
- });
- })
- .catch(() => {});
- },
- onStop(row, status) {
- // 停止
- // newsUpdate
- let tempStr = ["停用", "启用"];
- newsUpdate({
- id: row.id,
- status: status
- }).then(res => {
- if (res.code == 200) {
- this.$message.success(tempStr[status] + "成功");
- this.getList();
- } else {
- this.$message.error(res.msg);
- }
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .bannerImg {
- height: 60px;
- }
- </style>
|