|
@@ -145,7 +145,7 @@
|
|
<span class="author"
|
|
<span class="author"
|
|
>作者:{{ sheetDetailInfo.SysUserRealName }}</span
|
|
>作者:{{ sheetDetailInfo.SysUserRealName }}</span
|
|
>
|
|
>
|
|
- <el-input
|
|
|
|
|
|
+ <!-- <el-input
|
|
ref="sheetEditTitRef"
|
|
ref="sheetEditTitRef"
|
|
style="width: 400px"
|
|
style="width: 400px"
|
|
placeholder="请输入表格名称"
|
|
placeholder="请输入表格名称"
|
|
@@ -153,17 +153,15 @@
|
|
v-model="sheet_title"
|
|
v-model="sheet_title"
|
|
v-if="sheetDetailInfo.isEditTit"
|
|
v-if="sheetDetailInfo.isEditTit"
|
|
@blur="changeValue(sheetDetailInfo, 'edit-tit')"
|
|
@blur="changeValue(sheetDetailInfo, 'edit-tit')"
|
|
- />
|
|
|
|
|
|
+ /> -->
|
|
<span
|
|
<span
|
|
class="sheet-name"
|
|
class="sheet-name"
|
|
- @click="editNodeLabel(sheetDetailInfo, 'edit-tit')"
|
|
|
|
- v-else
|
|
|
|
>
|
|
>
|
|
{{ sheetDetailInfo.ExcelName }}
|
|
{{ sheetDetailInfo.ExcelName }}
|
|
- <i class="el-icon-edit"/>
|
|
|
|
|
|
+ <!-- <i class="el-icon-edit"/> -->
|
|
</span>
|
|
</span>
|
|
<ul class="action-ul" v-if="sheetDetailInfo.Button">
|
|
<ul class="action-ul" v-if="sheetDetailInfo.Button">
|
|
-
|
|
|
|
|
|
+ <li style="color:#999999 ;">最近保存时间:{{ saveTime }}</li>
|
|
<el-tooltip effect="dark" content="在当前表格选择日期列和数据列生成指标" placement="top-start">
|
|
<el-tooltip effect="dark" content="在当前表格选择日期列和数据列生成指标" placement="top-start">
|
|
<li class="editsty" @click="HandleToPath" v-if="isSheetBtnShow('createedb')&&sheetDetailInfo.Button.OpEdbButton">生成指标</li>
|
|
<li class="editsty" @click="HandleToPath" v-if="isSheetBtnShow('createedb')&&sheetDetailInfo.Button.OpEdbButton">生成指标</li>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
@@ -171,7 +169,15 @@
|
|
<el-tooltip effect="dark" content="根据表格保存的最新内容,更新当前表格生成的所有指标" placement="top-start">
|
|
<el-tooltip effect="dark" content="根据表格保存的最新内容,更新当前表格生成的所有指标" placement="top-start">
|
|
<li class="editsty" @click="refreshSheet" v-if="isSheetBtnShow('refresh')&&sheetDetailInfo.Button.RefreshEdbButton">刷新指标</li>
|
|
<li class="editsty" @click="refreshSheet" v-if="isSheetBtnShow('refresh')&&sheetDetailInfo.Button.RefreshEdbButton">刷新指标</li>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
- <li class="editsty" @click="saveHandle" v-if="isSheetBtnShow('save')&&sheetDetailInfo.Button.OpButton">保存</li>
|
|
|
|
|
|
+ <!-- <li class="editsty" @click="saveHandle" v-if="isSheetBtnShow('save')&&sheetDetailInfo.Button.OpButton">保存</li> -->
|
|
|
|
+ <li
|
|
|
|
+ class="editsty"
|
|
|
|
+ @click="goEdit"
|
|
|
|
+ v-if="isCreator ||
|
|
|
|
+ (sheetDetailInfo.Button && sheetDetailInfo.Button.OpButton&&isSheetBtnShow('edit'))"
|
|
|
|
+ >
|
|
|
|
+ {{ editButtonText?editButtonText:'编辑' }}
|
|
|
|
+ </li>
|
|
<li
|
|
<li
|
|
class="editsty"
|
|
class="editsty"
|
|
@click="saveOtherHandle"
|
|
@click="saveOtherHandle"
|
|
@@ -185,7 +191,7 @@
|
|
</li>
|
|
</li>
|
|
<li
|
|
<li
|
|
class="deletesty"
|
|
class="deletesty"
|
|
- v-if="isSheetBtnShow('del')&&sheetDetailInfo.Button.DeleteButton"
|
|
|
|
|
|
+ v-if="isCreator || (isSheetBtnShow('del')&&sheetDetailInfo.Button&&sheetDetailInfo.Button.DeleteButton)"
|
|
@click="delSheetHandle({cell:sheetDetailInfo, type:'del'})"
|
|
@click="delSheetHandle({cell:sheetDetailInfo, type:'del'})"
|
|
>
|
|
>
|
|
删除
|
|
删除
|
|
@@ -201,12 +207,7 @@
|
|
ref="sheetRef"
|
|
ref="sheetRef"
|
|
v-if="sheetConfigOpt.data"
|
|
v-if="sheetConfigOpt.data"
|
|
:option="sheetConfigOpt"
|
|
:option="sheetConfigOpt"
|
|
- :sheetInfo="{
|
|
|
|
- ExcelInfoId: sheetDetailInfo.ExcelInfoId,
|
|
|
|
- ExcelName: sheetDetailInfo.ExcelName,
|
|
|
|
- ExcelClassifyId: sheetDetailInfo.ExcelClassifyId,
|
|
|
|
- Source: sheetDetailInfo.Source
|
|
|
|
- }"
|
|
|
|
|
|
+ :limit="{disabled:true}"
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -317,6 +318,9 @@ export default {
|
|
|
|
|
|
return options;
|
|
return options;
|
|
},
|
|
},
|
|
|
|
+ isCreator(){
|
|
|
|
+ return this.adminId==this.excelAdminId
|
|
|
|
+ }
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
@@ -380,6 +384,10 @@ export default {
|
|
sourceMap: {
|
|
sourceMap: {
|
|
'/sheetAnalysisList': 4,
|
|
'/sheetAnalysisList': 4,
|
|
},
|
|
},
|
|
|
|
+ saveTime:"",
|
|
|
|
+ editButtonText:'',
|
|
|
|
+ adminId:localStorage.getItem("AdminId") || '0',
|
|
|
|
+ excelAdminId:""
|
|
};
|
|
};
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
@@ -600,39 +608,54 @@ export default {
|
|
};
|
|
};
|
|
request.send();
|
|
request.send();
|
|
},
|
|
},
|
|
|
|
+ goEdit(){
|
|
|
|
+ sheetInterface.markSheetEditStatus({ExcelInfoId: this.select_id,Status:1}).then(res=>{
|
|
|
|
+ if(res.Ret != 200) return
|
|
|
|
+ if(res.Data.Status==0){
|
|
|
|
+ this.$router.push({
|
|
|
|
+ path: '/editSheetAnalysis',
|
|
|
|
+ query: { code: this.sheetDetailInfo.UniqueCode },
|
|
|
|
+ });
|
|
|
|
|
|
|
|
+ }else if(res.Data.Status==1){
|
|
|
|
+ this.editButtonText = `${res.Data.Editor}编辑中`
|
|
|
|
+ this.$message.warning('当前'+this.editButtonText)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
/* 保存表格 */
|
|
/* 保存表格 */
|
|
- saveHandle: _.debounce(async function () {
|
|
|
|
- luckysheet.exitEditMode();
|
|
|
|
- let data = luckysheet.getAllSheets();
|
|
|
|
-
|
|
|
|
- this.loading = this.$loading({
|
|
|
|
- target: ".dataSheet-container",
|
|
|
|
- lock: true,
|
|
|
|
- text: "保存中...",
|
|
|
|
- spinner: "el-icon-loading",
|
|
|
|
- background: "rgba(255, 255, 255, 0.6)",
|
|
|
|
- });
|
|
|
|
-
|
|
|
|
- let img = getSheetImage(data[0]);
|
|
|
|
- const form = new FormData();
|
|
|
|
- form.append("Image", img);
|
|
|
|
- const { Data } = await sheetInterface.uploadImg(form);
|
|
|
|
-
|
|
|
|
- data.luckysheet_select_save = [];
|
|
|
|
- const { ExcelInfoId, ExcelName, ExcelClassifyId } = this.sheetDetailInfo;
|
|
|
|
- const res = await sheetInterface.sheetAnalysisInterface.sheetEdit({
|
|
|
|
- ExcelInfoId,
|
|
|
|
- ExcelName,
|
|
|
|
- ExcelClassifyId,
|
|
|
|
- ExcelImage: Data.ResourceUrl,
|
|
|
|
- Content: JSON.stringify(data),
|
|
|
|
- });
|
|
|
|
- this.loading.close();
|
|
|
|
- if (res.Ret !== 200) return;
|
|
|
|
- this.$message.success("保存成功");
|
|
|
|
- this.getTreeData();
|
|
|
|
- }, 300),
|
|
|
|
|
|
+ // saveHandle: _.debounce(async function () {
|
|
|
|
+ // luckysheet.exitEditMode();
|
|
|
|
+ // let data = luckysheet.getAllSheets();
|
|
|
|
+
|
|
|
|
+ // this.loading = this.$loading({
|
|
|
|
+ // target: ".dataSheet-container",
|
|
|
|
+ // lock: true,
|
|
|
|
+ // text: "保存中...",
|
|
|
|
+ // spinner: "el-icon-loading",
|
|
|
|
+ // background: "rgba(255, 255, 255, 0.6)",
|
|
|
|
+ // });
|
|
|
|
+
|
|
|
|
+ // let img = getSheetImage(data[0]);
|
|
|
|
+ // const form = new FormData();
|
|
|
|
+ // form.append("Image", img);
|
|
|
|
+ // const { Data } = await sheetInterface.uploadImg(form);
|
|
|
|
+
|
|
|
|
+ // data.luckysheet_select_save = [];
|
|
|
|
+ // const { ExcelInfoId, ExcelName, ExcelClassifyId } = this.sheetDetailInfo;
|
|
|
|
+
|
|
|
|
+ // const res = await sheetInterface.sheetAnalysisInterface.sheetEdit({
|
|
|
|
+ // ExcelInfoId,
|
|
|
|
+ // ExcelName,
|
|
|
|
+ // ExcelClassifyId,
|
|
|
|
+ // ExcelImage: Data.ResourceUrl,
|
|
|
|
+ // Content: JSON.stringify(data),
|
|
|
|
+ // });
|
|
|
|
+ // this.loading.close();
|
|
|
|
+ // if (res.Ret !== 200) return;
|
|
|
|
+ // this.$message.success("保存成功");
|
|
|
|
+ // this.getTreeData();
|
|
|
|
+ // }, 300),
|
|
|
|
|
|
/* 获取表格列表 */
|
|
/* 获取表格列表 */
|
|
getPublicList() {
|
|
getPublicList() {
|
|
@@ -682,6 +705,9 @@ export default {
|
|
if (res.Ret !== 200) return;
|
|
if (res.Ret !== 200) return;
|
|
|
|
|
|
this.sheetDetailInfo = res.Data.ExcelInfo;
|
|
this.sheetDetailInfo = res.Data.ExcelInfo;
|
|
|
|
+ this.saveTime = this.$moment(this.sheetDetailInfo.ModifyTime).format('YYYY-MM-DD HH:mm:ss')||''
|
|
|
|
+ this.excelAdminId = this.sheetDetailInfo.SysUserId
|
|
|
|
+ this.editButtonText = this.sheetDetailInfo.CanEdit?'':`${this.sheetDetailInfo.Editor}编辑中`
|
|
this.dataToalPage = Math.max(...res.Data.SheetList.map(_ => _.PageNum));
|
|
this.dataToalPage = Math.max(...res.Data.SheetList.map(_ => _.PageNum));
|
|
this.sheetAllcellData = res.Data.SheetList.map(_ => _.Data ? JSON.parse(_.Data.Data) : []);
|
|
this.sheetAllcellData = res.Data.SheetList.map(_ => _.Data ? JSON.parse(_.Data.Data) : []);
|
|
|
|
|
|
@@ -956,11 +982,11 @@ $normal-font: 14px;
|
|
border-bottom: 1px solid #ececec;
|
|
border-bottom: 1px solid #ececec;
|
|
.sheet-name {
|
|
.sheet-name {
|
|
font-size: 17px;
|
|
font-size: 17px;
|
|
- cursor: pointer;
|
|
|
|
|
|
+ // cursor: pointer;
|
|
max-width: 450px;
|
|
max-width: 450px;
|
|
- &:hover {
|
|
|
|
- text-decoration: underline;
|
|
|
|
- }
|
|
|
|
|
|
+ // &:hover {
|
|
|
|
+ // text-decoration: underline;
|
|
|
|
+ // }
|
|
}
|
|
}
|
|
.action-ul {
|
|
.action-ul {
|
|
display: flex;
|
|
display: flex;
|