|
@@ -20,7 +20,7 @@
|
|
|
>{{$t('CustomAnalysisPage.up_file_btn')}}</el-button>
|
|
|
<input type="file" @change="fileSelected" id="file" style="display: none;">
|
|
|
<!-- 只看我的 -->
|
|
|
- <el-checkbox v-model="isShowMe" @change="() => { getTreeData();getPublicList() }">{{$t('Chart.only_see_mine')}}</el-checkbox>
|
|
|
+ <!-- <el-checkbox v-model="isShowMe" @change="() => { getTreeData();getPublicList() }">{{$t('Chart.only_see_mine')}}</el-checkbox> -->
|
|
|
</div>
|
|
|
<div class="search-cont">
|
|
|
<el-select
|
|
@@ -147,12 +147,12 @@
|
|
|
v-if="!data.ExcelInfoId&&isSheetBtnShow('classifyOpt_delete')"
|
|
|
/>
|
|
|
<!-- 表格操作:共享/取消共享 -->
|
|
|
- <span v-if="data.ExcelInfoId">
|
|
|
+ <span v-if="data.ExcelInfoId&&data.ShowShareBtn">
|
|
|
<el-dropdown @command="handleShareCommand">
|
|
|
<i class="el-icon-share" style="color:#5cb6ff;"></i>
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
|
<!-- 表格为已共享,有取消共享按钮 -->
|
|
|
- <el-dropdown-item v-if="classify_tab===1||data.isShare===1"
|
|
|
+ <el-dropdown-item v-if="(classify_tab===1||data.HasShare)"
|
|
|
:command="{key:'cancel',item:data}"
|
|
|
class="treenode-dropdown-item"
|
|
|
:class="data.isShare===0?'treenode-dropdown-item-act':''"
|
|
@@ -212,10 +212,10 @@
|
|
|
@blur="changeValue(sheetDetailInfo, 'edit-tit')"
|
|
|
/>
|
|
|
<div class="sheet-name"
|
|
|
- @click="()=>{sheetDetailInfo.CanEdit&&editNodeLabel(sheetDetailInfo, 'edit-tit')}"
|
|
|
+ @click="()=>{sheetDetailInfo.Button.OpButton&&editNodeLabel(sheetDetailInfo, 'edit-tit')}"
|
|
|
v-else>
|
|
|
{{ sheetDetailInfo.ExcelName }}
|
|
|
- <i class="el-icon-edit" v-if="sheetDetailInfo.CanEdit"/>
|
|
|
+ <i class="el-icon-edit" v-if="sheetDetailInfo.Button.OpButton"/>
|
|
|
</div>
|
|
|
<div class="sheet-anothor-info">
|
|
|
<span class="author">{{$t('OnlineExcelPage.author_info')}}{{ sheetDetailInfo.SysUserRealName }}</span>
|
|
@@ -369,7 +369,9 @@
|
|
|
<!-- 设置共享弹窗 -->
|
|
|
<shareTableDia
|
|
|
:isOpenDialog="isShowShareDia"
|
|
|
+ :tableInfo="currentTable"
|
|
|
@close="isShowShareDia=false"
|
|
|
+ @setShare="isShowShareDia=false;getTreeData();"
|
|
|
/>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -387,6 +389,12 @@ export default {
|
|
|
name: "",
|
|
|
components: { mDialog, classifyDia, Sheet, sheetListWrap, shareTableDia },
|
|
|
mixins: [leftMixin],
|
|
|
+ beforeRouteLeave(to,from,next){
|
|
|
+ if(from.path=='/sheetAnalysisList'){
|
|
|
+ this.markFinishStatus(this.select_id)
|
|
|
+ }
|
|
|
+ next()
|
|
|
+ },
|
|
|
computed: {
|
|
|
downExcelFileUrl() {
|
|
|
let url = `${
|
|
@@ -394,14 +402,6 @@ export default {
|
|
|
}/datamanage/excel_info/table/download?${localStorage.getItem("auth")}`;
|
|
|
return url;
|
|
|
},
|
|
|
- classifyOptions() {
|
|
|
- let options = this.treeData.map((_) => ({
|
|
|
- ExcelClassifyId: _.ExcelClassifyId,
|
|
|
- ExcelClassifyName: _.ExcelClassifyName,
|
|
|
- }));
|
|
|
-
|
|
|
- return options;
|
|
|
- },
|
|
|
saveOtherFormRule(){
|
|
|
return {
|
|
|
name: [
|
|
@@ -480,6 +480,8 @@ export default {
|
|
|
disabled:true
|
|
|
},
|
|
|
editButtonText:"",
|
|
|
+ currentTable:{},
|
|
|
+ classifyOptions:[]
|
|
|
};
|
|
|
},
|
|
|
watch: {
|
|
@@ -529,9 +531,44 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
methods: {
|
|
|
+ formatTreeData(tree){
|
|
|
+ function dfs(node){
|
|
|
+ if (Array.isArray(node.Children)) {
|
|
|
+ node.Children = node.Children.filter(dfs)
|
|
|
+ if(node.Children.length===0) delete node.Children
|
|
|
+ }
|
|
|
+
|
|
|
+ if(node.ExcelInfoId) {
|
|
|
+ return null
|
|
|
+ }
|
|
|
+ return node
|
|
|
+ }
|
|
|
+ return tree.filter(dfs)
|
|
|
+ },
|
|
|
+ unloadMark(){
|
|
|
+ if(!this.select_id)return
|
|
|
+
|
|
|
+ let url = process.env.VUE_APP_API_ROOT + "/datamanage/excel_info/mark"
|
|
|
+ let params={ExcelInfoId: this.select_id,Status:2}
|
|
|
+ const uuid = localStorage.getItem("uuid") || "";
|
|
|
+ fetch(url, {
|
|
|
+ method: 'POST',
|
|
|
+ headers:{
|
|
|
+ Authorization:localStorage.getItem("auth"),
|
|
|
+ Uuid:uuid,
|
|
|
+ AccessToken:uuid + "--zheshiyigename"
|
|
|
+ },
|
|
|
+ body:JSON.stringify(params),
|
|
|
+ // 保持连接 让请求不会因为页面关闭而中断
|
|
|
+ keepalive: true
|
|
|
+ });
|
|
|
+ },
|
|
|
//取消标记表格的编辑状态
|
|
|
markFinishStatus(sheet_id){
|
|
|
-
|
|
|
+ if(!sheet_id)return
|
|
|
+ sheetInterface.markSheetEditStatus({ExcelInfoId: sheet_id,Status:2}).then(res=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ })
|
|
|
},
|
|
|
//标记表格的编辑状态
|
|
|
goEditHandle(){
|
|
@@ -542,22 +579,41 @@ export default {
|
|
|
//切换表格tab
|
|
|
changeTab(index){
|
|
|
this.classify_tab = index
|
|
|
+ this.select_classify = 0
|
|
|
+ this.select_id = 0
|
|
|
+ this.sheetList = []
|
|
|
+ this.getTreeData()
|
|
|
+ this.getPublicList()
|
|
|
},
|
|
|
//表格 设置共享/取消共享
|
|
|
handleShareCommand(command){
|
|
|
if(command.key==='share'){
|
|
|
this.currentTable = command.item
|
|
|
this.isShowShareDia = true
|
|
|
+ }else{
|
|
|
+ //取消共享就是 两个权限列表都为空
|
|
|
+ sheetInterface.sheetAnalysisInterface.setSheetShare({
|
|
|
+ ExcelInfoId:command.item.ExcelInfoId,
|
|
|
+ ViewUserIds:[],
|
|
|
+ EditUserIds:[]
|
|
|
+ }).then(res=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ this.$message.success(`取消共享成功`)
|
|
|
+ this.getTreeData();
|
|
|
+ })
|
|
|
}
|
|
|
},
|
|
|
/* 获取表格分类 */
|
|
|
getTreeData(params = null) {
|
|
|
- sheetInterface.classifyList({Source: this.sourceMap[this.$route.path],IsShowMe: this.isShowMe}).then((res) => {
|
|
|
+ sheetInterface.sheetAnalysisInterface.getSheetTreeList({IsShare:Boolean(this.classify_tab)}).then((res) => {
|
|
|
const { Ret, Data } = res;
|
|
|
if (Ret !== 200) return;
|
|
|
|
|
|
this.showData = true;
|
|
|
this.treeData = Data.AllNodes || [];
|
|
|
+ if(!this.classify_tab){
|
|
|
+ this.classifyOptions = this.formatTreeData(_.cloneDeep(this.treeData))
|
|
|
+ }
|
|
|
this.$nextTick(() => {
|
|
|
/* 新增完成后 处理树展开和选中 */
|
|
|
params && this.selectCurrentNode(params);
|
|
@@ -569,12 +625,12 @@ export default {
|
|
|
searchHandle(query) {
|
|
|
if (query) {
|
|
|
/* 查找列表 */
|
|
|
- sheetInterface
|
|
|
- .sheetList({
|
|
|
+ sheetInterface.sheetAnalysisInterface
|
|
|
+ .getSheetList({
|
|
|
Keyword: query,
|
|
|
CurrentIndex: 1,
|
|
|
PageSize: 10000,
|
|
|
- Source: this.sourceMap[this.$route.path]
|
|
|
+ IsShare:Boolean(this.classify_tab)
|
|
|
})
|
|
|
.then((res) => {
|
|
|
if (res.Ret !== 200) return;
|
|
@@ -794,13 +850,12 @@ export default {
|
|
|
},
|
|
|
/* 获取表格列表 */
|
|
|
getPublicList() {
|
|
|
- sheetInterface
|
|
|
- .sheetList({
|
|
|
+ sheetInterface.sheetAnalysisInterface
|
|
|
+ .getSheetList({
|
|
|
CurrentIndex: this.sheet_page,
|
|
|
PageSize: this.sheet_pages_size,
|
|
|
ExcelClassifyId: this.select_classify || 0,
|
|
|
- Source: this.sourceMap[this.$route.path],
|
|
|
- IsShowMe: this.isShowMe
|
|
|
+ IsShare:Boolean(this.classify_tab)
|
|
|
})
|
|
|
.then((res) => {
|
|
|
if (res.Ret !== 200) return;
|
|
@@ -847,8 +902,8 @@ export default {
|
|
|
this.getCellData(res.Data.SheetList)
|
|
|
//判断表格权限
|
|
|
//有编辑权限且无人编辑,标记编辑
|
|
|
- this.limit.disabled = !this.sheetDetailInfo.CanEdit
|
|
|
- //!this.sheetDetailInfo.Editor&&this.goEditHandle()
|
|
|
+ this.limit.disabled = !this.sheetDetailInfo.Button.OpButton
|
|
|
+ this.sheetDetailInfo.Button.OpButton&&!this.sheetDetailInfo.Editor&&this.goEditHandle()
|
|
|
this.editButtonText = this.sheetDetailInfo.CanEdit?'':`${this.sheetDetailInfo.Editor}${this.$t('OnlineExcelPage.editing_msg')}...`
|
|
|
});
|
|
|
},
|
|
@@ -1029,13 +1084,14 @@ export default {
|
|
|
this.getTreeData();
|
|
|
this.getPublicList();
|
|
|
}
|
|
|
-
|
|
|
window.addEventListener("resize", this.reloadRightWid);
|
|
|
document.addEventListener("click", this.closeHint);
|
|
|
+ window.addEventListener('beforeunload',this.unloadMark)
|
|
|
},
|
|
|
destroyed() {
|
|
|
window.removeEventListener("resize", this.reloadRightWid);
|
|
|
document.removeEventListener("click", this.closeHint);
|
|
|
+ window.removeEventListener('beforeunload',this.unloadMark)
|
|
|
},
|
|
|
};
|
|
|
</script>
|