|
@@ -22,7 +22,7 @@
|
|
|
/>
|
|
|
</el-tabs>
|
|
|
<div class="sheet-wrapper">
|
|
|
- <Sheet ref="sheetRef" :option="sheetConfig" v-if="sheetConfig.data" :limit="{disabled:false}"/>
|
|
|
+ <Sheet ref="sheetRef" :option="sheetConfig" @updated="hasChange=true" v-if="sheetConfig.data" :limit="{disabled:false}"/>
|
|
|
|
|
|
<dataLoading :loading="isLoading"/>
|
|
|
</div>
|
|
@@ -35,6 +35,8 @@
|
|
|
v-if="$route.path==='/createTaregtBySheet'"
|
|
|
:list="edbList"
|
|
|
:sheetDetailInfo="this.sheetDetailInfo"
|
|
|
+ :isEdbReFreshLoading="isEdbReFreshLoading"
|
|
|
+ @refreshEdb="refreshSheet"
|
|
|
@choose="chooseEdbHandle"
|
|
|
/>
|
|
|
</div>
|
|
@@ -104,9 +106,84 @@ export default {
|
|
|
dataToalPage: 0,
|
|
|
|
|
|
edbList: [],//生成的指标列表
|
|
|
+
|
|
|
+ // 内容是否更新
|
|
|
+ hasChange:false,
|
|
|
+ isEdbReFreshLoading:false
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ async saveApi(){
|
|
|
+ luckysheet.exitEditMode();
|
|
|
+ let data = luckysheet.getAllSheets();
|
|
|
+
|
|
|
+ this.loading = this.$loading({
|
|
|
+ target: ".dataSheet-container",
|
|
|
+ lock: true,
|
|
|
+ text: this.$t('MsgPrompt.saveing_msg') + "...",
|
|
|
+ spinner: "el-icon-loading",
|
|
|
+ background: "rgba(255, 255, 255, 0.6)",
|
|
|
+ });
|
|
|
+
|
|
|
+ let img = getSheetImage(data[0]);
|
|
|
+ const form = new FormData();
|
|
|
+ form.append("Image", img);
|
|
|
+ form.append("closableErrMsg123", true);
|
|
|
+ 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),
|
|
|
+ closableErrMsg123:true
|
|
|
+ });
|
|
|
+ this.loading.close();
|
|
|
+ if (res.Ret !== 200) return false;
|
|
|
+ this.hasChange=false
|
|
|
+ this.shouldClosedHintshow(this.$t('MsgPrompt.saved_msg'))
|
|
|
+ return true
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 刷新表格 */
|
|
|
+ refreshSheet: _.debounce(function() {
|
|
|
+ if(this.isEdbReFreshLoading) return
|
|
|
+ //退出编辑模式,让文本框失焦
|
|
|
+ luckysheet.exitEditMode();
|
|
|
+ // 保存逻辑延后 让hasChange取得正确的值
|
|
|
+ setTimeout(async()=>{
|
|
|
+ this.isEdbReFreshLoading = true;
|
|
|
+ let res={}
|
|
|
+ // 内容有改变 刷新前需要先保存
|
|
|
+ if(this.hasChange){
|
|
|
+ let saveSuccess = await this.saveApi()
|
|
|
+ if(!saveSuccess){
|
|
|
+ // 没保存成功
|
|
|
+ this.isEdbReFreshLoading = false;
|
|
|
+ return
|
|
|
+ }
|
|
|
+ res = await sheetInterface.sheetAnalysisInterface.sheetRefresh({ExcelInfoId: this.sheetDetailInfo.ExcelInfoId,closableErrMsg123:true})
|
|
|
+ }else{
|
|
|
+ res = await sheetInterface.sheetAnalysisInterface.sheetRefresh({ExcelInfoId: this.sheetDetailInfo.ExcelInfoId,closableErrMsg123:true})
|
|
|
+ }
|
|
|
+
|
|
|
+ this.isEdbReFreshLoading = false;
|
|
|
+ if(res.Ret !== 200) return
|
|
|
+ this.shouldClosedHintshow(res.Msg)
|
|
|
+ })
|
|
|
+ },300),
|
|
|
+ shouldClosedHintshow(msg){
|
|
|
+ let messageHint=this.$message.success({
|
|
|
+ message:msg,
|
|
|
+ duration:0,
|
|
|
+ showClose:true
|
|
|
+ })
|
|
|
+ this.$store.commit('PUSH_CLOSABLE_HINT',messageHint)
|
|
|
+ },
|
|
|
|
|
|
backHandle(scence=null) {
|
|
|
if(scence === 'into-detail') {
|