|
@@ -42,7 +42,7 @@
|
|
|
</ul>
|
|
|
<div>
|
|
|
<span v-if="updateTime" style="color:#999999 ;">{{$t('OnlineExcelPage.recent_save_time_info')}}{{updateTime}}</span>
|
|
|
- <el-button type="primary" size="medium" @click="()=>{ sheetInit=false;getDetail('refresh')}" style="margin-left:10px" icon="el-icon-refresh-right">{{$t('ETable.Btn.renew_btn')}}</el-button>
|
|
|
+ <el-button type="primary" size="medium" :loading="updating" @click="updateHandle" style="margin-left:10px" icon="el-icon-refresh-right">{{updating?$t('ETable.Btn.renewing_btn'):$t('ETable.Btn.renew_btn')}}</el-button>
|
|
|
<el-button type="primary" size="medium" @click="saveSheetHandle" style="margin-left:10px" v-if="hasPermission">{{$t('ETable.Btn.save_btn')}}</el-button>
|
|
|
<el-button type="primary" size="medium" plain @click="backHandle">{{$t('ETable.Btn.back_btn')}}</el-button>
|
|
|
</div>
|
|
@@ -117,7 +117,9 @@ export default {
|
|
|
updateTime: '',
|
|
|
isCanEdit:false,
|
|
|
// 取消自动保存,比如返回的时候
|
|
|
- cancelAutoSave:false
|
|
|
+ cancelAutoSave:false,
|
|
|
+
|
|
|
+ updating:false,//更新状态
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -134,6 +136,9 @@ export default {
|
|
|
const res = await sheetInterface.sheetDetail({
|
|
|
ExcelInfoId: Number(this.sheetId)
|
|
|
})
|
|
|
+ if(type==='refresh'){
|
|
|
+ this.updating=false
|
|
|
+ }
|
|
|
|
|
|
if(res.Ret !== 200) return
|
|
|
this.isCanEdit = res.Data.CanEdit
|
|
@@ -247,6 +252,15 @@ export default {
|
|
|
isAdd && this.$router.replace({path:'/addMixedSheet',query:{id:this.sheetId}})
|
|
|
},300),
|
|
|
|
|
|
+ //更新
|
|
|
+ updateHandle(){
|
|
|
+ if(this.updating) return
|
|
|
+ this.updating=true
|
|
|
+ this.sheetInit=false
|
|
|
+ this.getDetail('refresh')
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
// markFinishStatus(){
|
|
|
// if((!this.sheetId) || (!this.isCanEdit)) return
|
|
|
// sheetInterface.markSheetEditStatus({ExcelInfoId: +this.sheetId,Status:2}).then(res=>{
|