123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308 |
- <template>
- <div class="container">
- <fullscreen :fullscreen.sync="fullscreen" class="container-box">
- <div class="main-box">
- <div class="inner-left" style="overflow: hidden">
- <div class="button-list">
- <el-button
- size="mini"
- type=""
- @click="addRootMenu"
- :disabled="isSuper != '1'"
- >
- 添加根目录</el-button
- >
- <el-button
- size="mini"
- type=""
- @click="addMenu"
- :disabled="isSuper != '1'"
- >
- 添加子目录</el-button
- >
- <el-button
- size="medium"
- type=""
- @click="delMenu"
- :disabled="isSuper != '1'"
- >
- 删除
- </el-button>
- <el-dropdown
- @command="treeAction"
- trigger="click"
- style="margin-left: 10px"
- >
- <el-button type="" plain size="medium" :disabled="isSuper != '1'">
- 操作
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item :command="1">全部展开</el-dropdown-item>
- <el-dropdown-item :command="2">全部关闭</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </div>
- <el-alert type="warning" :closable="false">
- <template slot="title">
- {{
- actionName
- ? "当前选择节点名称:" + actionName
- : "当前无选择节点"
- }}
- <span v-show="actionName" class="clearStyle" @click="clearClick"
- >取消选择</span
- >
- </template>
- </el-alert>
- <div style="margin: 10px 0">
- <el-input
- size="medium"
- placeholder="请输入内容"
- v-model="filterText"
- class="input-with-select"
- clearable
- @change="
- () => {
- if (!filterText) {
- searchMenu();
- }
- }
- "
- >
- <el-button
- slot="append"
- @click="searchMenu"
- icon="el-icon-search"
- ></el-button>
- </el-input>
- </div>
- <div
- style="
- height: calc(100% - 160px);
- overflow-y: auto;
- margin-top: 20px;
- "
- >
- <el-tree
- ref="catalogTree"
- :expand-on-click-node="true"
- :auto-expand-parent="true"
- :default-expand-all="true"
- :props="defaultProps"
- :data="menuList"
- @node-click="nodeClick"
- :filter-node-method="filterNode"
- node-key="id"
- >
- <span class="custom-tree-node" slot-scope="{ node }">
- <span>
- <span style="color: #009cff" class=""></span>
- <span
- :style="
- node.data.hasOwnProperty('parent')
- ? 'font-size:14px;padding-left:5px'
- : 'font-size:12px;padding-left:5px'
- "
- >{{ node.data.title }}</span
- >
- </span>
- </span>
- </el-tree>
- </div>
- <div class="tree-action"></div>
- </div>
- <div class="inner-right">
- <div class="titbox">
- <div>
- <i class="el-icon-refresh" @click="iconCli(1)"></i>
- <i class="el-icon-full-screen" @click="iconCli(2)"></i>
- <!-- <i class="el-icon-folder-opened"></i>-->
- <!-- <i class="el-icon-view"></i>-->
- <!-- <i class="el-icon-more"></i>-->
- </div>
- </div>
- <div class="search">
- <mySearch
- :searchList="searchList"
- @searchInfo="searchInfo"
- ></mySearch>
- </div>
- <div style="margin-bottom: 10px">
- <el-button
- v-show="actionName"
- class="btn-check"
- size="medium"
- @click="addFile"
- :disabled="uploadStatus ===false"
- >
- 上传附件
- </el-button>
- <el-button v-show="idList && idList.length > 0" @click="moreDown"
- >批量下载</el-button
- >
- </div>
- <div class="tabbox">
- <el-table
- height="calc(100% )"
- class="com-table"
- ref="multipleTable"
- :data="tableData"
- tooltip-effect="dark"
- border
- size="small"
- style="width: 100%"
- v-loading="loading"
- @selection-change="handleSelectionChange"
- >
- <el-table-column type="selection" width="55"> </el-table-column>
- <el-table-column
- prop="title"
- width="150"
- show-overflow-tooltip
- label="材料名称"
- >
- </el-table-column>
- <el-table-column label="会议名称">
- <template slot-scope="scope">
- <span class="">{{ scope.row.meeting }}</span>
- </template>
- </el-table-column>
- <el-table-column label="材料背景">
- <template slot-scope="scope">
- <span class="">{{ scope.row.titleBg }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="文件名称"
- width="150"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <span class="">{{ scope.row.fileName }}</span>
- </template>
- </el-table-column>
- <el-table-column
- prop="createTime"
- show-overflow-tooltip
- label="发布时间"
- width="140"
- />
- <el-table-column label="操作" width="150px" align="center">
- <template slot-scope="scope">
- <el-button
- class="font-btn"
- size="mini"
- type="text"
- plain
- @click="downLoad(scope.row)"
- >下载
- </el-button>
- <el-button
- class="font-btn"
- size="mini"
- type="text"
- plain
- @click="deleteOne(scope.row)"
- >删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- class="pageBox"
- @current-change="currchange"
- layout="prev, pager, next"
- background
- :total="total"
- >
- </el-pagination>
- </div>
- </div>
- </div>
- </fullscreen>
- <el-dialog
- class="p-new-box"
- size="50%"
- title="新增目录"
- :append-to-body="true"
- :visible.sync="addDialogStatus"
- :close-on-click-modal="false"
- >
- <el-form
- :model="formData"
- :rules="rules"
- ref="ruleForm"
- label-width="100px"
- class="demo-ruleForm"
- style="width: 90%; margin: 30px auto"
- >
- <el-form-item label="目录名称:" prop="title">
- <el-input
- v-model="formData.title"
- placeholder="请输入标题"
- ></el-input>
- </el-form-item>
- <!-- 目录不设置权限
- <el-form-item label="查看权限:" prop="text">
- <el-radio-group v-model="formData.auth">
- <el-radio label="3">二级经理</el-radio>
- <el-radio label="2">三级经理</el-radio>
- <el-radio label="1">普通员工</el-radio>
- </el-radio-group>
- </el-form-item>
- -->
- <el-form-item
- prop="parentId"
- v-if="actionName != 'add'"
- label="父级编码:"
- >
- <el-input
- disabled
- v-model="formData.parentId"
- placeholder="请输入父级编码"
- ></el-input>
- </el-form-item>
- <el-form-item
- label="父级名称:"
- v-if="actionName != 'add'"
- prop="parentName"
- >
- <el-input
- disabled
- v-model="formData.parentName"
- readonly
- placeholder="请输入父级名称"
- ></el-input>
- </el-form-item>
- <el-form-item label="操作人:" prop="createName">
- <el-input
- v-model="formData.createName"
- disabled
- placeholder="请输入操作人"
- ></el-input>
- </el-form-item>
- <div class="drawer-footer" style="text-align: right">
- <el-button
- type="primary"
- size="medium"
- @click="submitForm('ruleForm')"
- >{{ subType }}</el-button
- >
- <el-button
- style="margin-right: 40px"
- size="medium"
- @click="resetForm('ruleForm')"
- >取消</el-button
- >
- </div>
- </el-form>
- </el-dialog>
- <el-dialog
- class="p-new-box"
- size="50%"
- :title="titname + '文件'"
- :append-to-body="true"
- :before-close="closedia"
- :visible.sync="dialogStatus"
- :close-on-click-modal="false"
- >
- <div v-loading="loadinged">
- <el-form
- v-if="titname != '查看'"
- :model="infolist"
- ref="infolist"
- :rules="filerules"
- >
- <el-form-item prop="title" class="info-line online">
- <span>材料名称:</span>
- <el-input v-model="infolist.title" placeholder="请输入材料名称">
- </el-input>
- </el-form-item>
- <el-form-item class="info-line online radviv" prop="text">
- <span>查看权限:</span>
- <el-radio-group v-model="infolist.auth">
- <el-radio label="2">二级经理</el-radio>
- <el-radio label="3">三级经理</el-radio>
- <el-radio label="1">普通员工</el-radio>
- </el-radio-group>
- </el-form-item>
- <el-form-item prop="meeting" class="info-line online">
- <span>会议名称:</span>
- <el-input v-model="infolist.meeting" placeholder="请输入会议名称">
- </el-input>
- </el-form-item>
- <el-form-item class="info-line online" prop="titleBg">
- <span>材料背景:</span>
- <el-input
- type="textarea"
- :rows="5"
- placeholder="请输入材料背景"
- style="width: calc(100%-100px)"
- v-model="infolist.titleBg"
- ></el-input>
- </el-form-item>
- <div class="info-line online">
- <span>附件:</span>
- <myUpload
- @uploadBack="uploadBack"
- :fileInfo="fileInfo"
- :fileList="fileInfo.fileList"
- style="width: 30% !important"
- >
- </myUpload>
- </div>
- </el-form>
- <div class="drawer-footer" style="text-align: right">
- <el-button size="medium" type="primary" @click="dialogCli(1)"
- >保 存</el-button
- >
- <el-button size="medium" @click="dialogCli(2)">取 消</el-button>
- </div>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import mySearch from "../../../components/search.vue";
- import toolList from "../../../components/toolList";
- import myUpload from "../../../components/upload";
- export default {
- components: {
- mySearch,
- toolList,
- myUpload,
- },
- data() {
- return {
- uploadStatus:true,
- jurisdiction: {}, //权限列表
- isSuper: "", //是否为超级管理员
- loadinged: false,
- addDialogStatus: false,
- searchList: [
- {
- type: "input",
- tit: "材料名称",
- value: "",
- width: "98%",
- },
- ],
- tooltit: "文件共享管理",
- loading: false,
- defaultExpand: true,
- functionCode: "",
- filterText: "", // tree搜索value
- actionName: "", // 当前选择节点名称
- menuList: [], // tree数据源
- checkedMenu: [], // 选中节点的functionCode
- checkedNodes: [], // 选中节点的node值
- roleData: "", // 某一条数据
- tableData: [], // 表格数据源
- authData: "", //权限数据
- fullscreen: false,
- infolist: {
- isFile: "1",
- title: "", // 材料名称
- meeting: "", // 会议名称
- titleBg: "", // 材料背景
- auth: "1", // 查看权限
- mkFileShareAttachList: [], // 附件数据
- parentId: "",
- }, // 提交表单数据源
- formData: {
- id: "",
- title: "",
- createName: JSON.parse(sessionStorage.userInfo).loginName,
- createId: JSON.parse(sessionStorage.userInfo).loginNo,
- orgName: JSON.parse(sessionStorage.userInfo).groupName,
- orgId: JSON.parse(sessionStorage.userInfo).groupId,
- parentId: "",
- parentName: "",
- isFile: "0",
- auth: "1",
- },
- defaultProps: {
- children: "childDept",
- label: "title",
- },
- filerules: {
- title: [
- {
- required: true,
- message: "请输入材料名称",
- trigger: "change",
- },
- ],
- meeting: [
- {
- required: true,
- message: "请输入会议名称",
- trigger: "change",
- },
- ],
- titleBg: [
- {
- required: true,
- message: "请输入材料背景",
- trigger: "change",
- },
- ],
- },
- rules: {
- title: [
- {
- required: true,
- message: "请输入标题",
- trigger: "change",
- },
- ],
- parentId: [
- {
- required: false,
- message: "请选择父级编码",
- trigger: "change",
- },
- ],
- },
- subType: "",
- total: 0,
- pageSize: 1,
- params: {
- isFile: "1",
- id: "",
- auth: "",
- },
- paramsSearch: {
- isFile: "1",
- id: "",
- auth:''
- },
- fileInfo: {
- type: "bt1n",
- typename: "上传文件",
- limit: 5,
- url: "/market/cmkFileShare/upload",
- fileList: [],
- },
- titname: "新增",
- dialogStatus: false,
- attList: [],
- idList: [],
- };
- },
- created() {
- this.getQuan();
- },
- methods: {
- moreDown() {
- // let arr = [];
- // this.idList.forEach((item) => {
- // arr.push({
- // id: item.fileCode,
- // fileName: item.fileName,
- // });
- // });
- // this.$http({
- // url: "/market/cmkFileShare/downAllFile",
- // method: "post",
- // headers: {
- // "Content-Type": "application/json",
- // },
- // responseType: "blob",
- // data: { mkFileShareAttachList: arr },
- // }).then((response) => {
- // if (window.navigator && window.navigator.msSaveOrOpenBlob) {
- // let blob = new Blob([response.data], {
- // type: "application/vnd.ms-excel",
- // });
- // window.navigator.msSaveOrOpenBlob(
- // blob,
- // new Date().getTime().toString() + ".zip"
- // );
- // } else {
- // /* 火狐谷歌的文件下载方式 */
- // var blob = new Blob([response.data]);
- // var downloadElement = document.createElement("a");
- // var href = window.URL.createObjectURL(blob);
- // downloadElement.href = href;
- // downloadElement.download = new Date().getTime().toString() + ".zip";
- // document.body.appendChild(downloadElement);
- // downloadElement.click();
- // document.body.removeChild(downloadElement);
- // window.URL.revokeObjectURL(href);
- // }
- // });
- this.idList.forEach((item) => {
- this.$http({
- url: "/market/cmkFileShare/downFile",
- method: "post",
- headers: {
- "Content-Type": "application/json",
- },
- responseType: "blob",
- data: { id: item.fileCode, fileName: item.fileName },
- }).then((response) => {
- if (window.navigator && window.navigator.msSaveOrOpenBlob) {
- let blob = new Blob([response.data], {
- type: "application/vnd.ms-excel",
- });
- window.navigator.msSaveOrOpenBlob(blob, item.fileName);
- } else {
- /* 火狐谷歌的文件下载方式 */
- var blob = new Blob([response.data]);
- var downloadElement = document.createElement("a");
- var href = window.URL.createObjectURL(blob);
- downloadElement.href = href;
- downloadElement.download = item.fileName;
- document.body.appendChild(downloadElement);
- downloadElement.click();
- document.body.removeChild(downloadElement);
- window.URL.revokeObjectURL(href);
- }
- });
- });
- },
- handleSelectionChange(val) {
- this.idList = val;
- },
- //搜索数据
- searchInfo(v) {
- this.paramsSearch = {};
- v[0] ? (this.paramsSearch.title = v[0]) : "";
- this.paramsSearch.isFile = "1";
- this.paramsSearch.auth = this.params.auth;
- // this.paramsSearch.parentId = this.infolist.parentId;
- this.pageSize = 1; //重置分页
- this.getList(this.paramsSearch, this.pageSize);
- },
- // 附件下载
- downLoad(fileData) {
- this.$http({
- url: "/market/cmkFileShare/downFile",
- method: "post",
- headers: {
- "Content-Type": "application/json",
- },
- responseType: "blob",
- data: { id: fileData.fileCode, fileName: fileData.fileName },
- }).then((response) => {
- if (window.navigator && window.navigator.msSaveOrOpenBlob) {
- let blob = new Blob([response.data], {
- type: "application/vnd.ms-excel",
- });
- window.navigator.msSaveOrOpenBlob(blob, fileData.fileName);
- } else {
- /* 火狐谷歌的文件下载方式 */
- var blob = new Blob([response.data]);
- var downloadElement = document.createElement("a");
- var href = window.URL.createObjectURL(blob);
- downloadElement.href = href;
- downloadElement.download = fileData.fileName;
- document.body.appendChild(downloadElement);
- downloadElement.click();
- document.body.removeChild(downloadElement);
- window.URL.revokeObjectURL(href);
- }
- });
- },
- // 新增附件
- addFile() {
- this.titname = "新增";
- this.dialogStatus = true;
- },
- // 上传回调
- uploadBack(v) {
- this.attList = v;
- },
- // 关闭弹窗
- closedia() {
- this.infolist = {};
- this.dialogStatus = false;
- this.fileInfo.fileList = [];
- this.getList(this.params, this.pageSize);
- },
- //添加 修改
- dialogCli(v) {
- this.fileInfo.fileList = [];
- if (v === 2) {
- this.dialogStatus = false;
- this.getList(this.params, this.pageSize);
- return;
- }
- this.$refs.infolist.validate((valid) => {
- if (valid) {
- let attList = [];
- for (let i = 0; i < this.attList.length; i++) {
- attList.push({
- id: this.attList[i].id,
- fileName: this.attList[i].fileName,
- });
- }
- this.infolist.mkFileShareAttachList = attList;
- this.infolist.isFile = "1";
- this.loadinged = true;
- this.$http({
- url: "/market/cmkFileShare/add",
- method: "post",
- headers: {
- "Content-Type": "application/json",
- },
- data: this.infolist,
- }).then((res) => {
- this.loadinged = false;
- if (res.data.result === 1) {
- this.$message({
- message: res.data.desc,
- type: "error",
- });
- } else {
- this.$message({
- message: "成功",
- type: "success",
- });
- this.fileInfo.fileList = [];
- // this.infolist = {};
- this.dialogStatus = false;
- this.getList(this.params, this.pageSize);
- }
- });
- }
- });
- },
- // 新增目录-表单提交
- async submitForm(formName) {
- let valid = await this.$refs[formName].validate().catch((err) => err);
- if (valid) {
- this.$http({
- url:
- this.subType == "保存"
- ? "/market/cmkFileShare/add"
- : "/satisfy/qacatalog/update",
- method: "post",
- headers: {
- "Content-Type": "application/json",
- },
- data: this.formData,
- }).then((res) => {
- if (res.data.result == 0) {
- this.$message({
- type: "success",
- message: res.data.desc,
- });
- this.actionName = "";
- this.getData();
- this.addDialogStatus = false;
- }
- });
- } else {
- this.$message({
- type: "error",
- message: "新增失败",
- });
- this.addDialogStatus = false;
- return false;
- }
- },
- // 取消新增目录
- resetForm(formName) {
- this.actionName = "";
- this.$refs[formName].resetFields();
- this.addDialogStatus = false;
- },
- // 新增目录
- addMenu() {
- if (!this.actionName) {
- this.$message("请先点击选中要增加菜单的位置");
- } else {
- this.addDialogStatus = true;
- this.subType = "保存";
- this.formData.parentId = this.formData.id;
- this.formData.parentName = this.formData.title;
- this.formData.title = "";
- this.formData.id = "";
- }
- },
- // 新增根目录
- addRootMenu() {
- this.addDialogStatus = true;
- this.subType = "保存";
- this.formData.parentId = 0;
- this.formData.parentName = this.formData.title;
- this.formData.title = "";
- this.formData.id = "";
- },
- // 树展开\折叠
- treeAction(val) {
- val == 1 ? (this.defaultExpand = true) : (this.defaultExpand = false);
- for (
- let i = 0;
- i < this.$refs.catalogTree.store._getAllNodes().length;
- i++
- ) {
- this.$refs.catalogTree.store._getAllNodes()[i].expanded =
- this.defaultExpand;
- }
- },
- deleteOne(val) {
- this.$confirm("即将删除此条数据, 是否删除?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- this.pageSize = 1;
- this.$http({
- url: "/market/cmkFileShare/del",
- method: "post",
- headers: {
- "Content-Type": "application/json",
- },
- data: {
- id: val.id,
- isFile: "1",
- createId: val.createId,
- createName: val.createName,
- },
- }).then((res) => {
- if (res.data.result == 0) {
- this.$notify({
- title: "成功",
- message: res.data.desc,
- type: "success",
- });
- this.getList(this.params, this.pageSize);
- } else if (res.data.result == 1) {
- this.$notify({
- title: "失败",
- message: res.data.desc,
- type: "error",
- });
- }
- });
- })
- .catch(() => {});
- },
- // 删除目录
- delMenu() {
- if (!this.formData.id) {
- this.$message("请先点击选中要删除的菜单");
- } else {
- this.$confirm("即将删除此条数据, 是否删除?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- this.$http({
- url: "/market/cmkFileShare/del",
- method: "post",
- headers: {
- "Content-Type": "application/json",
- },
- data: {
- id: this.formData.id,
- isFile: "0",
- createId: this.formData.createId,
- createName: this.formData.createName,
- },
- }).then((res) => {
- if (res.data.result == 0) {
- this.$notify({
- title: "成功",
- message: res.data.desc,
- type: "success",
- });
- this.actionName = "";
- this.getData();
- } else if (res.data.result == 1) {
- this.$notify({
- title: "失败",
- message: res.data.desc,
- type: "error",
- });
- }
- });
- })
- .catch(() => {});
- }
- },
- // 搜索按钮事件
- searchMenu() {
- this.$refs.catalogTree.filter(this.filterText);
- },
- // tree过滤方法
- filterNode(value, data) {
- if (!value) return true;
- return data.title.indexOf(value) !== -1;
- },
- // 点击树节点事件
- nodeClick(a, b) {
- let nodeData = JSON.parse(JSON.stringify(b.data));
- this.formData.title = nodeData.title;
- this.formData.parentId = nodeData.parentId;
- this.formData.parentName = nodeData.parentName;
- this.formData.id = nodeData.id;
- delete Object["children"];
- this.actionName = nodeData.title;
- if(this.actionName ==='C市场' ||this.actionName === 'H市场'||this.actionName ==='N市场+线上' || this.actionName === '业务综合'||this.actionName ==='渠道'){
- this.isSuper = '2'//权限
- this.uploadStatus = false;
- }else{
- this.uploadStatus = true;
- if(this.jurisdiction.isSuper === '1'){
- this.isSuper ='1'
- }
- }
- this.subType = "修改";
- this.params.type = "";
- this.params.title = "";
- this.params.collection = "";
- this.params.catalogId = nodeData.id;
- this.params.id = nodeData.id;
- this.infolist.parentId = nodeData.id;
- this.pageSize = 1; //切换树重置分页
- // if(this.jurisdiction.isSuper === '1'){
- // this.params.auth = '2';
- // }
- this.getList(this.params, this.pageSize);
- },
- //获取权限
- async getQuan() {
- await this.$http({
- url: "/market/cmkFileShare/queryRole",
- method: "post",
- headers: {
- "Content-Type": "application/json",
- },
- data: {},
- }).then((res) => {
- if(res.data){
- this.isSuper = res.data[0].isSuper || "";
- this.jurisdiction = res.data[0];
- switch (this.jurisdiction.roleDuty) {
- case "二级经理":
- this.params.auth = 2;
- this.paramsSearch =2
- break;
- case "三级经理":
- this.params.auth = 3;
- this.paramsSearch.auth =3
- break;
- case "员工":
- this.params.auth = 1;
- this.paramsSearch =1
- break;
- }
- }
- });
- await this.getData();
- // await this.getList(this.params, this.pageSize);
- },
- clearClick() {
- this.actionName = "";
- this.params.id = "";
- this.getList(this.params, this.pageSize);
- this.$router.go(0)
- },
- // 获取目录
- async getData() {
- await this.$http({
- url: "/market/cmkFileShare/queryList",
- method: "post",
- headers: {
- "Content-Type": "application/json",
- },
- data: { isFile: "0" },
- }).then((res) => {
- if (res.data && res.data.length > 0) {
- res.data.map((item) =>{
- if (this.jurisdiction.isSuper === "1"){//全部加入list
- this.menuList = res.data;
- }else{ //不是超级管理员
- if(item.powerSwitch === 0){ //不是固定文件夹
- this.menuList.push(item)
- }
- if(this.jurisdiction.roleType ==='省公司') {
- if(item.powerSwitch === 1){ //是固定文件夹
- if (
- this.jurisdiction.roleId === item.id ||
- this.jurisdiction.parentId === item.id
- ) {
- this.menuList.push(item);
- if (
- this.jurisdiction.roleDuty === "三级经理" ||
- this.jurisdiction.roleDuty === "员工"
- ) {
- //小弟
- // this.menuList.push(res.data[i]);
- this.menuList.map((item) =>{
- if(item.id === this.jurisdiction.roleId ||this.jurisdiction.parentId===item.id){
- item.childDept.map((items) =>{
- if(items.id === this.jurisdiction.roleId){
- item.childDept = [];
- item.childDept.push(items)
- }
- })
- }
- })
- }
- }
- }
- }else if(this.jurisdiction.roleType ==='地市公司'){
- //地市公司权限
- if(item.id === '66666666666666666'){
- this.menuList = []
- this.menuList.push((item))
- }
- }
- }
- })
- // if (this.jurisdiction.isSuper == "1") {
- // this.menuList = res.data;
- // }else{
- // for (let i = 0; i < res.data.length ; i++) {
- // if(this.jurisdiction.roleType ==='省公司' && res.data[i].id === '99999999999999999'){
- // this.menuList.push(res.data[i])
- // }
- // else {
- //
- // }
- // }
- // }
- }
- });
- },
- // 获取权限
- getAuthData() {
- this.$http({
- url: "/market/cmkFileShare/queryAuth",
- method: "post",
- headers: {
- "Content-Type": "application/json",
- },
- data: {},
- }).then((res) => {
- if (res.data) {
- this.authData = res.data.auth;
- }
- });
- },
- toTreeData(data) {
- var pos = {};
- var tree = [];
- var i = 0;
- while (data.length != 0) {
- if (data[i].parentId == 0) {
- tree.push({
- id: data[i].id,
- title: data[i].title,
- children: [],
- });
- pos[data[i].id] = [tree.length - 1];
- data.splice(i, 1);
- i--;
- } else {
- var posArr = pos[data[i].parentId];
- if (posArr != undefined) {
- var obj = tree[posArr[0]];
- for (var j = 1; j < posArr.length; j++) {
- obj = obj.children[posArr[j]];
- }
- obj.children.push({
- id: data[i].id,
- title: data[i].title,
- children: [],
- });
- pos[data[i].id] = posArr.concat([obj.children.length - 1]);
- data.splice(i, 1);
- i--;
- }
- }
- i++;
- if (i > data.length - 1) {
- i = 0;
- }
- }
- return tree;
- },
- //功能栏
- iconCli(v) {
- if (v === 1) {
- this.getList(this.params, this.pageSize);
- }
- if (v === 2) {
- this.fullscreen = !this.fullscreen;
- }
- },
- // 分页
- currchange(v) {
- this.pageSize = v;
- this.getList(this.params, this.pageSize);
- },
- //获取列表
- getList(v, n) {
- console.log(v);
- this.pageSize = n;
- this.loading = true;
- this.tableData = [];
- this.$http({
- url: "/market/cmkFileShare/queryPage",
- method: "post",
- headers: {
- "Content-Type": "application/json",
- page: '{"pageNo":"' + n + '","pageSize":"10"}',
- },
- data: v,
- }).then((res) => {
- if (res.data.data && res.data.data.length > 0) {
- let arr = res.data.data;
- arr.forEach((item) => {
- Object.keys(item).forEach((val) => {
- if (item[val] == null) {
- item[val] = "- -";
- }
- });
- });
- this.tableData = arr;
- } else {
- this.tableData = res.data.data;
- }
- this.total = res.data.totalRecord;
- this.loading = false;
- });
- },
- },
- mounted() {
- this.getAuthData();
- },
- };
- </script>
- <style scoped lang="scss">
- .radviv div {
- width: 80% !important;
- }
- .pageBox {
- text-align: right;
- margin-top: 10px;
- }
- .info-line {
- width: 100%;
- display: block;
- // padding-left: 20px;
- div {
- width: 50%;
- display: inline-block;
- }
- span {
- width: 100px;
- display: inline-block;
- text-align: right;
- font-weight: bold;
- font-size: 14px;
- padding-right: 15px;
- i {
- color: red;
- display: inline-block;
- padding-right: 5px;
- }
- }
- .el-select,
- .el-input {
- width: calc(100% - 100px);
- }
- .tree {
- width: calc(100% - 100px);
- }
- }
- .online {
- width: 100%;
- .el-select {
- width: calc(100% - 100px);
- }
- span {
- vertical-align: top;
- }
- .el-textarea {
- width: calc(100% - 100px);
- }
- }
- </style>
- <style lang="scss" scoped>
- .titbox {
- div {
- float: right;
- i {
- font-size: 22px;
- margin-left: 20px;
- cursor: pointer;
- }
- }
- }
- .container {
- background-color: #f0f2f5;
- .clearStyle {
- cursor: pointer;
- color: #0b82ff;
- }
- .el-col {
- background-color: white;
- padding: 0 20px;
- }
- .container-box {
- padding: 0;
- margin-top: 0;
- height: 100%;
- background-color: white;
- padding: 20px;
- }
- .main-box {
- overflow: hidden;
- display: flex;
- background-color: white;
- padding: 20px 0;
- > div {
- background-color: white;
- }
- .inner-left {
- width: 30%;
- padding: 0 20px;
- border: 1px solid #ddd;
- border-radius: 5px;
- height: calc(100vh - 220px);
- // .canel-style {
- // color: #1890ff;
- // cursor: pointer;
- // padding-left: 10px;
- // }
- }
- .inner-right {
- width: 68%;
- margin-left: 2%;
- overflow-y: auto;
- // border-left: 1px solid #ddd;
- height: calc(100vh - 220px);
- }
- }
- }
- .button-list {
- padding: 30px 0 10px 0;
- display: flex;
- // justify-content: space-between;
- }
- .choice-style {
- background: rgb(255, 255, 255);
- }
- .tree-action {
- bottom: 0;
- width: 100%;
- // border-top: 1px solid #e8e8e8;
- padding: 10px 16px;
- text-align: left;
- left: 0;
- background: #fff;
- border-radius: 0 0 2px 2px;
- }
- .tree-line {
- // .el-tree-node__content {
- // padding-left: 0 !important;
- // }
- .el-tree-node__expand-icon.is-leaf {
- display: none !important;
- }
- .el-tree-node {
- position: relative;
- padding-left: 16px; // 缩进量
- }
- .el-tree-node__children {
- padding-left: 16px; // 缩进量
- }
- // 竖线
- .el-tree-node::before {
- content: "";
- height: 100%;
- width: 1px;
- position: absolute;
- left: -3px;
- top: -17px;
- border-width: 1px;
- border-left: 1px dashed #52627c;
- }
- // 当前层最后一个节点的竖线高度固定
- .el-tree-node:last-child::before {
- height: 38px; // 可以自己调节到合适数值
- }
- // 横线
- .el-tree-node::after {
- content: "";
- width: 24px;
- height: 20px;
- position: absolute;
- left: -3px;
- top: 20px;
- border-width: 1px;
- border-top: 1px dashed #52627c;
- }
- // 去掉最顶层的虚线,放最下面样式才不会被上面的覆盖了
- & > .el-tree-node::after {
- border-top: none;
- }
- & > .el-tree-node::before {
- border-left: none;
- }
- // 展开关闭的icon
- .el-tree-node__expand-icon {
- font-size: 16px;
- // 叶子节点(无子节点)
- &.is-leaf {
- color: transparent;
- // display: none; // 也可以去掉
- }
- }
- }
- </style>
|