| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604 |
- <template>
- <el-card :bordered="false" shadow="never" class="ivu-mt">
- <div class="Modal">
- <div class="colLeft">
- <div class="Nav">
- <div class="trees-coadd">
- <div class="tree_tit" v-db-click @click="append">
- <i class="el-icon-circle-plus"></i>
- 添加分类
- </div>
- <div class="scollhide">
- <div class="tree" v-if="treeData.length">
- <el-tree
- ref="tree"
- :data="treeData"
- node-key="id"
- default-expand-all
- :highlight-current="highlightCurrent"
- :expand-on-click-node="true"
- :check-on-click-node="false"
- @node-click="appendBtn"
- @node-expand="nodeExpand"
- :current-node-key="treeId"
- >
- <span class="custom-tree-node" slot-scope="{ data }">
- <div class="file-name">
- <img v-if="data.pid == 1" class="icon" src="@/assets/images/file.jpg" />
- <el-tooltip class="item" effect="dark" :content="data.title" placement="top">
- <div class="text line1">
- {{ data.title }}
- </div>
- </el-tooltip>
- </div>
- <span>
- <el-dropdown @command="(command) => clickMenu(data, command)">
- <i class="el-icon-more el-icon--right"></i>
- <template slot="dropdown">
- <el-dropdown-menu>
- <el-dropdown-item v-if="data.pid == 1" command="1">新增分类</el-dropdown-item>
- <el-dropdown-item v-if="data.id" command="2">编辑分类</el-dropdown-item>
- <el-dropdown-item v-if="data.id" command="3">删除</el-dropdown-item>
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- </span>
- </span>
- </el-tree>
- </div>
- </div>
- </div>
- </div>
- <div class="conter">
- <el-button type="primary" @click="addLink">添加链接</el-button>
- <el-table
- :data="linkList"
- ref="couponTable"
- class="mt20"
- v-loading="loading"
- highlight-current-row
- no-userFrom-text="暂无数据"
- no-filtered-userFrom-text="暂无筛选结果"
- >
- <el-table-column label="ID" width="70">
- <template slot-scope="scope">
- <span>{{ scope.row.id }}</span>
- </template>
- </el-table-column>
- <el-table-column label="名称" width="150">
- <template slot-scope="scope">
- <span>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- <el-table-column label="H5链接" minWidth="170">
- <template slot-scope="scope">
- <el-tooltip class="item pointer" content="点击复制">
- <span v-db-click @click="onCopy(scope.row.h5_url)">{{ scope.row.h5_url }}</span>
- </el-tooltip>
- </template>
- </el-table-column>
- <el-table-column label="小程序链接" minWidth="140">
- <template slot-scope="scope">
- <el-tooltip class="item pointer" content="点击复制">
- <span v-db-click @click="onCopy(scope.row.url)">{{ scope.row.url }}</span>
- </el-tooltip>
- </template>
- </el-table-column>
- <el-table-column label="添加时间" minWidth="90">
- <template slot-scope="scope">
- <span>{{ scope.row.add_time }}</span>
- </template>
- </el-table-column>
- <el-table-column label="操作" fixed="right" width="90">
- <template slot-scope="scope">
- <a v-db-click @click="edit(scope.row)">编辑</a>
- <el-divider direction="vertical"></el-divider>
- <a v-db-click @click="del(scope.row, '删除链接', scope.$index)">删除</a>
- </template>
- </el-table-column>
- </el-table>
- <div class="acea-row row-right page">
- <pagination
- v-if="total"
- :total="total"
- :page.sync="fileData.page"
- :limit.sync="fileData.limit"
- @pagination="getLinkList"
- />
- </div>
- </div>
- </div>
- </div>
- <el-dialog
- title="链接"
- :visible.sync="dialogVisible"
- width="40%"
- :before-close="handleClose"
- :close-on-click-modal="false"
- >
- <el-form :model="linkForm" ref="linkForm" label-width="80px">
- <el-form-item label="名称:" prop="name">
- <el-input v-model="linkForm.name" placeholder="请输入名称"></el-input>
- </el-form-item>
- <el-form-item label="跳转链接:" prop="url">
- <el-input v-model="linkForm.url" placeholder="请输入跳转链接"></el-input>
- </el-form-item>
- <el-form-item label="排序:" prop="url">
- <el-input v-model="linkForm.sort" placeholder="请输入排序"></el-input>
- </el-form-item>
- <el-form-item label="是否开启:" prop="url">
- <el-switch v-model="linkForm.status" :active-value="1" :inactive-value="0"></el-switch>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="addLinkSubmit">确 定</el-button>
- </div>
- </el-dialog>
- </el-card>
- </template>
- <script>
- import { diyLinkCategoryListApi, linkCategoryFormApi, linkListApi, linkCreateApi } from '@/api/setting';
- export default {
- name: 'linkLisk',
- props: {},
- data() {
- return {
- dialogVisible: false,
- treeData: [],
- linkList: [],
- uploadName: {
- name: '',
- all: 1,
- },
- treeId: 0,
- fileData: {
- page: 1,
- limit: 15,
- },
- total: 0,
- pids: 0,
- loading: false,
- multipleSelection: [],
- linkForm: {
- id: 0,
- name: '',
- url: '',
- sort: 0,
- status: 1,
- },
- highlightCurrent: true,
- };
- },
- mounted() {
- this.getList();
- },
- methods: {
- handleClose() {
- this.dialogVisible = false;
- this.initData();
- },
- onCopy(copyData) {
- this.$copyText(copyData)
- .then((message) => {
- this.$message.success('复制成功');
- })
- .catch((err) => {
- this.$message.error('复制失败');
- });
- },
- edit(row) {
- this.linkForm.name = row.name;
- this.linkForm.url = row.url;
- this.linkForm.sort = row.sort;
- this.linkForm.status = row.status;
- this.linkForm.id = row.id;
- this.dialogVisible = true;
- },
- addLinkSubmit() {
- this.$refs.linkForm.validate((valid) => {
- if (valid) {
- let data = {
- cate_id: this.treeId,
- id: this.linkForm.id,
- name: this.linkForm.name,
- url: this.linkForm.url,
- sort: this.linkForm.sort,
- status: this.linkForm.status,
- };
- linkCreateApi(data)
- .then((res) => {
- this.$message.success(res.msg);
- this.dialogVisible = false;
- this.getLinkList();
- })
- .catch((err) => {
- this.$message.error(err);
- });
- } else {
- return false;
- }
- });
- },
- // 点击菜单
- clickMenu(data, name) {
- if (name == 1) {
- this.editLinkCategory(data, 0);
- } else if (name == 2) {
- this.editLinkCategory(data, 1);
- } else if (name == 3) {
- this.remove(data, '分类');
- }
- },
- delImg(id) {
- let ids = {
- ids: id,
- };
- let delfromData = {
- title: '删除选中图片',
- url: `file/file/delete`,
- method: 'POST',
- ids: ids,
- };
- this.$modalSure(delfromData)
- .then((res) => {
- this.$message.success(res.msg);
- this.getLinkList();
- this.checkPicList = [];
- })
- .catch((res) => {
- this.$message.error(res.msg);
- });
- },
- // 删除图片
- editPicList(id) {
- let ids = {
- ids: id || this.ids.toString(),
- };
- let delfromData = {
- title: '删除选中图片',
- url: `file/file/delete`,
- method: 'POST',
- ids: ids,
- };
- this.$modalSure(delfromData)
- .then((res) => {
- this.$message.success(res.msg);
- this.getLinkList();
- this.initData();
- })
- .catch((res) => {
- this.$message.error(res.msg);
- });
- },
- initData() {
- this.fileData.page = 1;
- this.fileData.id = '';
- this.linkForm.name = '';
- this.linkForm.h5_url = '';
- this.linkForm.url = '';
- },
- // 鼠标移入 移出
- onMouseOver(root, node, data) {
- event.preventDefault();
- data.flag = !data.flag;
- if (data.flag2) {
- data.flag2 = false;
- }
- },
- addLink() {
- this.initData();
- this.dialogVisible = true;
- },
- // 点击树
- appendBtn(data, n, d) {
- if (data.pid == 1 && !n.expanded) {
- this.highlightCurrent = false;
- return;
- } else if (data.pid != 1) {
- this.treeId = data.id;
- this.fileData.page = 1;
- this.getLinkList();
- }
- },
- nodeExpand(data, n, d) {
- if (n.expanded) {
- if (data.children.length) {
- this.highlightCurrent = true;
- this.$nextTick(() => {
- this.fileData.page = 1;
- this.treeId = data.children[0].id || '';
- this.$refs['tree'].setCurrentKey(this.treeId);
- this.getLinkList();
- });
- }
- }
- },
- // 点击添加
- append() {
- this.getFrom();
- },
- // 删除分类
- remove(data, tit) {
- this.tits = tit;
- let delfromData = {
- title: '删除 [ ' + data.title + ' ] ' + '分类',
- url: `diy/link/category/del/${data.id}`,
- method: 'DELETE',
- ids: '',
- };
- this.$modalSure(delfromData)
- .then((res) => {
- this.$message.success(res.msg);
- this.getList();
- this.checkPicList = [];
- })
- .catch((res) => {
- this.$message.error(res.msg);
- });
- },
- // 编辑树表单
- editLinkCategory(data, type) {
- this.$modalForm(linkCategoryFormApi(type ? data.id : 0, data.id ? data.id : 1)).then(() => this.getList());
- },
- // 分类列表树
- getList(type) {
- diyLinkCategoryListApi(this.uploadName)
- .then((res) => {
- this.treeId = res.data.length > 0 ? res.data[0]?.children[0]?.id : '';
- this.treeData = res.data;
- this.getLinkList();
- })
- .catch((res) => {
- this.$message.error(res.msg);
- });
- },
- // 文件列表
- getLinkList() {
- this.fileData.id = this.treeId;
- this.loading = true;
- linkListApi(this.fileData)
- .then(async (res) => {
- this.linkList = res.data.list;
- this.total = res.data.count;
- this.loading = false;
- })
- .catch((res) => {
- this.loading = false;
- this.$message.error(res.msg);
- });
- },
- del(row, tit, num) {
- let delfromData = {
- title: tit,
- num: num,
- url: `diy/link/del/${row.id}`,
- method: 'DELETE',
- ids: '',
- };
- this.$modalSure(delfromData)
- .then((res) => {
- this.$message.success(res.msg);
- this.linkList.splice(num, 1);
- })
- .catch((res) => {
- this.$message.error(res.msg);
- });
- },
- addFlag(treedata) {
- treedata.map((item) => {
- this.$set(item, 'flag', false);
- this.$set(item, 'flag2', false);
- item.children && this.addFlag(item.children);
- });
- },
- pageChange(index) {
- this.fileData.page = index;
- this.getLinkList();
- this.checkPicList = [];
- },
- // 新建分类表单
- getFrom() {
- this.$modalForm(linkCategoryFormApi(0, 1)).then((res) => {
- this.getList();
- });
- },
- },
- };
- </script>
- <style scoped lang="scss">
- .box {
- width: 100%;
- height: 100%;
- background: #fff;
- }
- ::v-deep .el-card__body {
- min-height: 700px;
- padding: 16px 16px 16px 0;
- }
- ::v-deep .conter .linkList {
- max-width: 100%;
- }
- .nameStyle {
- position: absolute;
- white-space: nowrap;
- z-index: 9;
- background: #eee;
- height: 20px;
- line-height: 20px;
- color: #555;
- border: 1px solid #ebebeb;
- padding: 0 5px;
- left: 56px;
- bottom: -18px;
- }
- .tree_tit {
- padding-top: 7px;
- padding-bottom: 22px;
- }
- .treeBox {
- width: 100%;
- height: 100%;
- max-width: 180px;
- }
- .Nav {
- width: 100%;
- border-right: 1px solid #eee;
- min-width: 220px;
- max-width: max-content;
- }
- ::v-deep .tree .is-current {
- background-color: #fff !important;
- }
- .trees-coadd {
- width: 100%;
- border-radius: 4px;
- overflow: hidden;
- position: relative;
- .scollhide {
- overflow-x: hidden;
- overflow-y: scroll;
- padding: 0px 0 10px 0;
- box-sizing: border-box;
- .isTree {
- min-height: 374px;
- max-height: 550px;
- ::v-deep .file-name {
- display: flex;
- align-items: center;
- .name {
- max-width: 7em;
- }
- .icon {
- width: 12px;
- height: 12px;
- margin-right: 8px;
- }
- }
- ::v-deep .el-tree-node {
- margin-right: 16px;
- }
- ::v-deep .el-tree-node__children .el-tree-node {
- margin-right: 0;
- }
- ::v-deep .el-tree-node__content {
- width: 100%;
- height: 36px;
- }
- ::v-deep .custom-tree-node {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-right: 20px;
- font-size: 13px;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.6);
- line-height: 13px;
- }
- ::v-deep .is-current {
- background: #f1f9ff !important;
- color: var(--prev-color-primary) !important;
- }
- ::v-deep .is-current .custom-tree-node {
- color: var(--prev-color-primary) !important;
- }
- }
- }
- .scollhide::-webkit-scrollbar {
- display: none;
- }
- }
- .treeSel ::v-deep .ivu-select-dropdown-list {
- padding: 0 5px !important;
- box-sizing: border-box;
- width: 200px;
- }
- .imagesNo {
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- margin: 65px 0;
- .imagesNo_sp {
- font-size: 13px;
- color: #dbdbdb;
- line-height: 3;
- }
- }
- .Modal {
- width: 100%;
- height: 100%;
- background: #fff !important;
- }
- .fill-window {
- height: 100vh;
- }
- .colLeft {
- padding-right: 0 !important;
- height: 100%;
- display: flex;
- flex-wrap: nowrap;
- }
- .conter {
- width: 100%;
- height: 100%;
- margin-left: 20px !important;
- .iconliebiao {
- font-size: 12px;
- }
- }
- .conter .bnt {
- width: 100%;
- padding: 0 0px 20px 0px;
- box-sizing: border-box;
- }
- .conter .linkList {
- // width: 100%;
- overflow-x: hidden;
- overflow-y: auto;
- min-height: 463px;
- }
- .conter .linkList.is-modal {
- max-height: 480px;
- }
- .conter .linkList img {
- max-width: 100%;
- }
- .conter .linkList .img.on {
- border: 2px solid var(--prev-color-primary);
- }
- .conter .footer {
- padding: 0 20px 10px 20px;
- }
- .card-tree {
- background: #fff;
- height: 72px;
- box-sizing: border-box;
- overflow-x: scroll; /* 设置溢出滚动 */
- white-space: nowrap;
- overflow-y: hidden;
- /* 隐藏滚动条 */
- border-radius: 4px;
- scrollbar-width: none; /* firefox */
- -ms-overflow-style: none; /* IE 10+ */
- }
- .card-tree::-webkit-scrollbar {
- display: none; /* Chrome Safari */
- }
- </style>
|