123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403 |
- <template>
- <div>
- <!-- 搜索标题 -->
- <auth auths="news/add">
- <el-button
- @click="openTeaching('create')"
- type="primary"
- style="margin-bottom:20px"
- >
- 新建
- </el-button>
- </auth>
- <!-- 搜索标题 -->
- <save-form
- :inline="true"
- class="searchForm"
- saveKey="contentKnowledge"
- @submit="search"
- :model="searchForm"
- >
- <el-form-item prop="subType">
- <el-select
- v-model="searchForm.subType"
- clearable
- placeholder="请选择分类"
- >
- <el-option
- v-for="item in typeList"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button native-type="submit" type="danger">搜索</el-button>
- </el-form-item>
- </save-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">
- <overflow-text
- width="100%"
- :text="scope.row.linkUrl"
- ></overflow-text>
- <!-- {{ 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="subType" label="分类">
- <template slot-scope="scope">
- {{ formatSubType(scope.row.subType) }}
- </template>
- </el-table-column>
- <el-table-column align="center" prop="memo" label="版本号">
- </el-table-column>
- <el-table-column align="center" prop="order" label="排序">
- </el-table-column>
- <el-table-column align="center" label="操作">
- <template slot-scope="scope">
- <div>
- <auth auths="news/update" style="margin-left: 10px">
- <el-button
- @click="openTeaching('update', scope.row)"
- v-if="!scope.row.memo || permission('banner/copyrightbtn')"
- type="text"
- >修改</el-button
- >
- <div
- style="display: inline-block"
- v-if="!scope.row.memo || permission('banner/copyrightbtn')"
- >
- <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
- >
- </div>
- </auth>
- <auth auths="news/del">
- <el-button
- @click="onDel(scope.row)"
- v-if="!scope.row.memo || permission('banner/copyrightbtn')"
- type="text"
- >删除</el-button
- >
- </auth>
- </div>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- saveKey="contentKnowledge"
- sync
- :total.sync="pageInfo.total"
- :page.sync="pageInfo.page"
- :limit.sync="pageInfo.limit"
- :page-sizes="pageInfo.page_size"
- @pagination="getList"
- />
- </div>
- <el-dialog
- :title="formTitle[pageType]"
- :visible.sync="teacherStatus"
- width="500px"
- >
- <el-form :model="form" ref="form" label-width="80px">
- <el-form-item
- label="标题"
- prop="title"
- :rules="[
- {
- required: true,
- message: '请输入标题',
- trigger: 'blur'
- }
- ]"
- >
- <el-input
- v-model.trim="form.title"
- placeholder="请输入标题"
- ></el-input>
- </el-form-item>
- <el-form-item label="排序值" prop="order">
- <el-input
- v-model.trim="form.order"
- placeholder="请输入排序值"
- ></el-input>
- </el-form-item>
- <el-form-item label="链接地址" prop="linkUrl">
- <el-input
- v-model.trim="form.linkUrl"
- placeholder="请输入链接地址"
- ></el-input>
- </el-form-item>
- <el-form-item label="版本号" prop="memo">
- <el-input v-model="form.memo" placeholder="请输入版本号"></el-input>
- </el-form-item>
- <el-form-item
- label="分类"
- prop="subType"
- :rules="[
- { required: true, message: '请选择分类', trigger: 'change' }
- ]"
- >
- <el-select
- v-model="form.subType"
- style="width: 100% !important"
- placeholder="请选择分类"
- >
- <el-option
- v-for="item in typeList"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item
- label="封面图"
- prop="coverImage"
- :rules="[
- { required: true, message: '请上传封面图', trigger: 'blur' }
- ]"
- >
- <image-cropper
- :options="cropperOptions"
- :imgSize="2"
- showSize
- :imageUrl="form.coverImage"
- @crop-upload-success="cropSuccess"
- />
- <p class="imageSize">图片不能超过 2M;图片尺寸:80*80;</p>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button @click="teacherStatus = false">取 消</el-button>
- <el-button type="primary" @click="onSubmit">确 定</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- newsList,
- newsUpdate,
- newsDel,
- newsTypeList,
- newsAdd
- } from "@/api/contentManager";
- import ImageCropper from "@/components/ImageCropper";
- import pagination from "@/components/Pagination/index";
- import cleanDeep from "clean-deep";
- import { permission } from "@/utils/directivePage";
- export default {
- name: "teacherButton",
- components: {
- pagination,
- ImageCropper
- },
- data() {
- return {
- teacherStatus: false,
- formTitle: {
- create: "新建老师端按钮",
- update: "修改老师端按钮"
- },
- pageType: "create",
- cropperOptions: {
- autoCrop: true, //是否默认生成截图框
- autoCropWidth: 88, //默认生成截图框宽度
- autoCropHeight: 88, //默认生成截图框高度
- fixedBox: true, //是否固定截图框大小 不允许改变
- previewsCircle: false, //预览图是否是圆形
- full: true, // 是否输出原图比例的截图
- title: "上传图片" //模态框上显示的标题
- },
- form: {
- title: "",
- order: null,
- linkUrl: "",
- coverImage: "",
- subType: null,
- type: 23,
- memo: "",
- status: 1,
- content: ""
- },
- searchForm: {
- subType: null
- },
- tableList: [],
- teacherId: this.$route.query.teacherId,
- pageInfo: {
- // 分页规则
- limit: 10, // 限制显示条数
- page: 1, // 当前页
- total: 1, // 总条数
- page_size: [10, 20, 40, 50] // 选择限制显示条数
- },
- typeList: [] // 子分类
- };
- },
- async mounted() {
- await newsTypeList({ parentId: 23 }).then(res => {
- if (res.code == 200) {
- this.typeList = res.data;
- }
- });
- this.getList();
- },
- methods: {
- //上传图片成功
- cropSuccess(data) {
- this.form.coverImage = data.data.url;
- },
- onSubmit() {
- this.$refs["form"].validate(async valid => {
- if (valid) {
- let form = {
- ...this.form
- };
- if (this.pageType == "create") {
- if (form.id) {
- // 判断有没有Id,如果有则删除
- delete form.id;
- }
- await newsAdd(form).then(res => {
- this.messageTips("添加", res);
- });
- } else if (this.pageType == "update") {
- await newsUpdate(form).then(res => {
- this.messageTips("修改", res);
- });
- }
- }
- });
- },
- messageTips(title, res) {
- if (res.code == 200) {
- this.$message.success(title + "成功");
- this.getList();
- this.teacherStatus = false;
- } else {
- this.$message.error(res.msg);
- }
- },
- search() {
- this.pageInfo.page = 1;
- this.getList();
- },
- permission(str) {
- return permission(str);
- },
- getList() {
- let params = {
- clientName: "manage",
- subType: this.searchForm.subType,
- rows: this.pageInfo.limit,
- page: this.pageInfo.page,
- type: 23
- };
- newsList(cleanDeep(params)).then(res => {
- if (res.code == 200) {
- this.tableList = res.data.rows;
- this.pageInfo.total = res.data.total;
- }
- });
- },
- openTeaching(type, rows) {
- this.teacherStatus = true;
- this.$nextTick(() => {
- if (this.$refs["form"]) {
- this.$refs["form"].resetFields();
- }
- this.pageType = type;
- if (type == "update") {
- this.form.id = rows.id;
- this.form.title = rows.title;
- this.form.order = rows.order;
- this.form.linkUrl = rows.linkUrl;
- this.form.coverImage = rows.coverImage;
- this.form.subType = rows.subType;
- }
- });
- },
- 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);
- }
- });
- },
- formatSubType(val) {
- let tempName = null;
- this.typeList.forEach(item => {
- if (item.id == val) {
- tempName = item.name;
- }
- });
- return tempName;
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .bannerImg {
- height: 60px;
- }
- </style>
|