|
@@ -109,6 +109,9 @@
|
|
|
</template>
|
|
|
</div>
|
|
|
<div class="ppt-tool flex-column">
|
|
|
+ <div class="save-hint" v-show="showLastSaveTime"
|
|
|
+ style="color: #666; margin-bottom: 15px"
|
|
|
+ >最近保存时间:{{lastSaveTime}}</div>
|
|
|
<div class="tool-btn">
|
|
|
<el-button v-permission="permissionBtn.pptPermission.ppt_publish"
|
|
|
type="primary" @click="handlePublish">{{$t('Slides.go_to_publish')}}</el-button>
|
|
@@ -278,6 +281,7 @@
|
|
|
<script>
|
|
|
import {countComponentName,checkClipboardItems,createRandomCode,checkPPTpageElemant,getChartInfo} from './utils/untils';
|
|
|
import {modelInfo,defaultPosition} from './utils/config'
|
|
|
+import http from '@/api/http.js';
|
|
|
import { dataBaseInterface ,sandInterface } from "@/api/api.js";
|
|
|
import futuresInterface from '@/api/modules/futuresBaseApi';
|
|
|
import chartRelevanceApi from '@/api/modules/chartRelevanceApi';
|
|
@@ -996,7 +1000,7 @@ export default {
|
|
|
this.$refs[`pptPage_${this.currentIndex}`][0].initPositionInfo()
|
|
|
},
|
|
|
//手动保存PPT
|
|
|
- handleSave(type){
|
|
|
+ async handleSave(type){
|
|
|
/* const {result,hintText} = this.checkPPT()
|
|
|
if(!result){
|
|
|
this.$message.warning(hintText)
|
|
@@ -1022,19 +1026,21 @@ export default {
|
|
|
ImgUrl:BackgroundImg,
|
|
|
TemplateType:BackIndex+1
|
|
|
}
|
|
|
+ this.isSaved = true
|
|
|
if(this.$route.query.id||this.pptId){
|
|
|
- this.editPPT(FirstPage,Content,type)
|
|
|
+ await this.editPPT(FirstPage,Content,type)
|
|
|
}else{
|
|
|
- this.addPPT(FirstPage,Content)
|
|
|
+ await this.addPPT(FirstPage,Content)
|
|
|
}
|
|
|
},
|
|
|
- addPPT(FirstPage,Content){
|
|
|
- pptInterface.addppt({
|
|
|
+ async addPPT(FirstPage,Content){
|
|
|
+ await pptInterface.addppt({
|
|
|
FirstPage:FirstPage,
|
|
|
Content:Content,
|
|
|
GroupId:this.catalogId,
|
|
|
CoverContent:this.CoverContent
|
|
|
}).then(res=>{
|
|
|
+ this.isSaved = false
|
|
|
if(res.Ret===200){
|
|
|
this.$message.success(this.$t('MsgPrompt.add_msg'))
|
|
|
//this.$router.push({path:'/pptlist'})
|
|
@@ -1046,15 +1052,16 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- editPPT(FirstPage,Content,type){
|
|
|
+ async editPPT(FirstPage,Content,type){
|
|
|
//console.log(type)
|
|
|
const ppt_id = this.$route.query.id||this.pptId
|
|
|
- pptInterface.editppt({
|
|
|
+ await pptInterface.editppt({
|
|
|
PptId:parseInt(ppt_id),
|
|
|
FirstPage:FirstPage,
|
|
|
Content:Content,
|
|
|
CoverContent:this.CoverContent
|
|
|
}).then(res=>{
|
|
|
+ this.isSaved = false
|
|
|
if(res.Ret===200){
|
|
|
if(type==='save'){
|
|
|
this.$message.success(this.$t('MsgPrompt.edit_msg'))
|
|
@@ -1093,7 +1100,11 @@ export default {
|
|
|
FirstPage:FirstPage,
|
|
|
Content:Content,
|
|
|
CoverContent:this.CoverContent
|
|
|
- }).then((res)=>{})
|
|
|
+ }).then((res)=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ this.showLastSaveTime = true
|
|
|
+ this.lastSaveTime = http.dateFormatter(new Date(), true);
|
|
|
+ })
|
|
|
},10000)
|
|
|
},
|
|
|
//保存时的校验规则:封面信息,至少一页
|
|
@@ -1133,16 +1144,7 @@ export default {
|
|
|
return {result:true,hintText:''}
|
|
|
},
|
|
|
async handlePublish(){
|
|
|
- if(!this.isSave){
|
|
|
- this.$message.warning(this.$t('Slides.please_save_first')+'!' )
|
|
|
- return
|
|
|
- }else{
|
|
|
- const {result,hintText} = this.checkPPT()
|
|
|
- if(!result){
|
|
|
- this.$message.warning(hintText)
|
|
|
- return
|
|
|
- }
|
|
|
- }
|
|
|
+ //ETA1.7.5更改发布逻辑,点击发布时,自动执行保存操作,若可保存,则跳转发布页
|
|
|
await this.handleSave('pub')
|
|
|
//ppt4.0后,合并后的PPT可能会超出页数or图表限制,在这里做个校验
|
|
|
if(this.pageList.length>this.maxPageNum){
|