|
@@ -1,7 +1,11 @@
|
|
|
<template>
|
|
|
<div class="addSheet-wrap">
|
|
|
|
|
|
- <createTargetForm ref="createTargetRef" @save="handleCreateTarget" v-if="$route.path==='/createTaregtBySheet'"/>
|
|
|
+ <createTargetForm
|
|
|
+ v-if="$route.path==='/createTaregtBySheet'"
|
|
|
+ ref="createTargetRef"
|
|
|
+ @save="handleCreateTarget"
|
|
|
+ />
|
|
|
|
|
|
|
|
|
<div class="main">
|
|
@@ -23,7 +27,6 @@
|
|
|
<dataLoading :loading="isLoading"/>
|
|
|
</div>
|
|
|
|
|
|
- <!-- <tableNoData text="暂无数据" v-else/> -->
|
|
|
</div>
|
|
|
|
|
|
<!-- 指标列表 -->
|
|
@@ -65,10 +68,10 @@ export default {
|
|
|
return this.$route.path==='/createTaregtBySheet'
|
|
|
? {
|
|
|
showsheetbar: true,
|
|
|
- allowCopy:false,
|
|
|
- allowEdit:false,
|
|
|
- allowUpdate:false,
|
|
|
- enableAddRow:false,
|
|
|
+ // allowCopy:false,
|
|
|
+ // allowEdit:false,
|
|
|
+ // allowUpdate:false,
|
|
|
+ // enableAddRow:false,
|
|
|
data: null,
|
|
|
hook: {
|
|
|
//选区时
|
|
@@ -104,8 +107,21 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
|
|
|
- backHandle() {
|
|
|
- this.$router.go(-1);
|
|
|
+ backHandle(scence=null) {
|
|
|
+ if(scence === 'into-detail') {
|
|
|
+ const { ExcelInfoId, UniqueCode } = this.sheetDetailInfo;
|
|
|
+
|
|
|
+ this.$router.replace({
|
|
|
+ path: '/sheetAnalysisList',
|
|
|
+ query: {
|
|
|
+ code: UniqueCode,
|
|
|
+ id: ExcelInfoId
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }else {
|
|
|
+ this.$router.go(-1);
|
|
|
+ }
|
|
|
+
|
|
|
},
|
|
|
|
|
|
/* 切换表格 */
|
|
@@ -252,7 +268,7 @@ export default {
|
|
|
|
|
|
this.sheetDetailInfo = res.Data.ExcelInfo;
|
|
|
this.dataToalPage = Math.max(...res.Data.SheetList.map(_ => _.PageNum));
|
|
|
- this.sheetAllcellData = res.Data.SheetList.map(_ => JSON.parse(_.Data.Data));
|
|
|
+ this.sheetAllcellData = res.Data.SheetList.map(_ => _.Data ? JSON.parse(_.Data.Data): []);
|
|
|
|
|
|
this.getCellData(res.Data.SheetList)
|
|
|
});
|
|
@@ -344,6 +360,25 @@ export default {
|
|
|
/* 生成指标 */
|
|
|
async handleCreateTarget() {
|
|
|
console.log(this.$refs.createTargetRef.formData)
|
|
|
+ this.loading = this.$loading({
|
|
|
+ target:'.addSheet-wrap',
|
|
|
+ lock: true,
|
|
|
+ text: '保存中...',
|
|
|
+ spinner: 'el-icon-loading',
|
|
|
+ background: 'rgba(255, 255, 255, 0.6)'
|
|
|
+ });
|
|
|
+
|
|
|
+ let data = luckysheet.getAllSheets();
|
|
|
+ data.luckysheet_select_save = [];
|
|
|
+ const { ExcelInfoId, ExcelName, ExcelClassifyId } = this.sheetDetailInfo;
|
|
|
+ await sheetInterface.sheetAnalysisInterface.sheetEdit({
|
|
|
+ ExcelInfoId,
|
|
|
+ ExcelName,
|
|
|
+ ExcelClassifyId,
|
|
|
+ // ExcelImage: Data.ResourceUrl,
|
|
|
+ Content: JSON.stringify(data)
|
|
|
+ });
|
|
|
+
|
|
|
const { edbInfoId,
|
|
|
dateSeries,
|
|
|
valueSeries,
|
|
@@ -355,7 +390,7 @@ export default {
|
|
|
unit } = this.$refs.createTargetRef.formData;
|
|
|
let params = {
|
|
|
EdbName: edbName,
|
|
|
- ExcelInfoId: this.sheetDetailInfo.ExcelInfoId,
|
|
|
+ ExcelInfoId: ExcelInfoId,
|
|
|
ClassifyId: classify,
|
|
|
Frequency: frequency,
|
|
|
Unit: unit,
|
|
@@ -368,6 +403,7 @@ export default {
|
|
|
? await sheetInterface.sheetAnalysisInterface.edbEditBysheet({...params,EdbInfoId: edbInfoId})
|
|
|
: await sheetInterface.sheetAnalysisInterface.edbAddBysheet(params)
|
|
|
|
|
|
+ this.loading.close();
|
|
|
if(res.Ret !== 200) return
|
|
|
|
|
|
this.$message.success(res.Msg)
|