浏览代码

Merge branch 'lang_dev' of http://8.136.199.33:3000/eta_front/eta_front into lang_dev

Karsa 1 年之前
父节点
当前提交
6216d1a217

+ 50 - 0
src/lang/modules/Aprroval/En.js

@@ -0,0 +1,50 @@
+/*审批管理模块 
+  $t('AprrovalPage.xxx')
+*/
+export default {
+  AprrovalPage: {
+    be_processed_tab: "To be processed",
+    processed_tab: "processed",
+    i_initiated_tab: "I initiated",
+    associated_report_ipt: "Please select the associated report",
+    time_type_select: "Time type",
+    submint_time: "Submission time",
+    processing_time: "Processing time",
+    approval_time: "Approval time",
+    select_processing_status: "Please select processing status",
+    agreed_option: "Agreed",
+    rejected_option: "rejected",
+    awaiting_approval_option: "Awaiting Approval",
+    approved_option: "Approved",
+    revoked_option: "revoked",
+    report_title_ipt: "Please enter the title of the report",
+    rejection_table: "Reason for rejection",
+    details_table: "details",
+    cancel_table: "cancel",
+    approve_table: "Examine and approve",
+    prompt_loading: "The system has not yet opened the approval process. Please open the approval process before proceeding with the operation!",
+    revoke_success: "Revoke successful",
+    report_title_lable: "Report title",
+    associated_report_lable: "Associated report",
+    submitter_lable: "submitter",
+    submission_time_lable: "Submission time",
+    approval_status_lable: "Approval status",
+    processing_time_lable: "Processing time",
+    processing_result_lable: "Processing result",
+  },
+  AprrovalDetailPage: {
+    report_name_info: "Research Report name",
+    classification_info: "Report classification",
+    initiator_info: "initiator",
+    approval_process: "Approval process",
+    rejected_btn: "rejected",
+    agree_btn: "agree",
+    back_btn: "back",
+    cancel_btn: "cancel",
+    approval_by: "Approved by: {num} people",
+    rejected_success: "Rejected successful",
+    passed_success: "Successfully passed",
+    rejection_title: "Examination and rejection",
+    rejection_reason_ipt: "Please enter the reason for rejection",
+  },
+};

+ 50 - 0
src/lang/modules/Aprroval/Zh.js

@@ -0,0 +1,50 @@
+/*审批管理模块 
+  $t('AprrovalPage.xxx')
+*/
+export default {
+  AprrovalPage: {
+    be_processed_tab: "待处理",
+    processed_tab: "已处理",
+    i_initiated_tab: "我发起的",
+    associated_report_ipt: "请选择关联报告",
+    time_type_select: "时间类型",
+    submint_time: "提交时间",
+    processing_time: "处理时间",
+    approval_time: "审批时间",
+    select_processing_status: "请选择处理状态",
+    agreed_option: "已同意",
+    rejected_option: "已驳回",
+    awaiting_approval_option: "待审批",
+    approved_option: "已通过",
+    revoked_option: "已撤销",
+    report_title_ipt: "请输入报告标题",
+    rejection_table: "驳回理由",
+    details_table: "详情",
+    cancel_table: "撤销",
+    approve_table: "审批",
+    prompt_loading: "系统暂未开通审批流程,请开启审批流程后再进行操作",
+    revoke_success: "撤销成功",
+    report_title_lable: "报告标题",
+    associated_report_lable: "关联报告",
+    submitter_lable: "提交人",
+    submission_time_lable: "提交时间",
+    approval_status_lable: "审批状态",
+    processing_time_lable: "处理时间",
+    processing_result_lable: "处理结果",
+  },
+  AprrovalDetailPage: {
+    report_name_info: "研报名称",
+    classification_info: "研报分类",
+    initiator_info: "发起人",
+    approval_process: "审批流程",
+    rejected_btn: "驳回",
+    agree_btn: "同意",
+    back_btn: "返回",
+    cancel_btn: "撤销",
+    approval_by: "审批人:{num}人",
+    rejected_success: "驳回成功",
+    passed_success: "通过成功",
+    rejection_title: "审批驳回",
+    rejection_reason_ipt: "请输入驳回理由",
+  },
+};

+ 6 - 0
src/lang/modules/Aprroval/commonLang.js

@@ -0,0 +1,6 @@
+/* 图表相关的通用文字 
+  在最外层commonLang中用 
+  $t('Chart.xxx')
+*/
+
+export default {};

+ 14 - 14
src/views/approve_manage/approveDetail.vue

@@ -3,9 +3,9 @@
     <div class="approve-detail-wrap" v-if="isETAApprove">
         <div class="approve-detail">
             <div class="approve-info">
-                <span>研报名称:{{reportInfo.title||''}}</span>
-                <span>研报分类:{{reportInfo.classify||''}}</span>
-                <span style="min-width: 100px;">发起人:{{reportInfo.approver||''}}</span>
+                <span>{{$t('AprrovalDetailPage.report_name_info')}}:{{reportInfo.title||''}}</span>
+                <span>{{$t('AprrovalDetailPage.classification_info')}}:{{reportInfo.classify||''}}</span>
+                <span style="min-width: 100px;">{{$t('AprrovalDetailPage.initiator_info')}}:{{reportInfo.approver||''}}</span>
             </div>
             <div class="approve-content" 
                 v-loading="isLoading"
@@ -26,15 +26,15 @@
             <div class="tool-btn">
                 <!-- 根据审批的状态决定显示 -->
                 <el-button type="danger" @click="changeApprove('reject')"
-                    v-if="formType==='approve'&&approveInfo.isCurrentApprover&&permissionBtn.isShowBtn('approvePermission','reportApprove_reject')">驳回</el-button>
+                    v-if="formType==='approve'&&approveInfo.isCurrentApprover&&permissionBtn.isShowBtn('approvePermission','reportApprove_reject')">{{$t('AprrovalDetailPage.rejected_btn')}}</el-button>
                 <el-button type="primary" @click="changeApprove('pass')"
-                    v-if="formType==='approve'&&approveInfo.isCurrentApprover&&permissionBtn.isShowBtn('approvePermission','reportApprove_agree')">同意</el-button>
+                    v-if="formType==='approve'&&approveInfo.isCurrentApprover&&permissionBtn.isShowBtn('approvePermission','reportApprove_agree')">{{$t('AprrovalDetailPage.agree_btn')}}</el-button>
                 <el-button type="primary" @click="changeApprove('return')"
-                    v-if="formType==='myself'&&approveInfo.state!==4&&permissionBtn.isShowBtn('approvePermission','reportApprove_repeal')">撤销</el-button>
-                <el-button type="primary" plain @click="$router.replace(`/approveList?formType=${formType}`)">返回</el-button>
+                    v-if="formType==='myself'&&approveInfo.state!==4&&permissionBtn.isShowBtn('approvePermission','reportApprove_repeal')">{{$t('AprrovalDetailPage.cancel_btn')}}</el-button>
+                <el-button type="primary" plain @click="$router.replace(`/approveList?formType=${formType}`)">{{$t('AprrovalDetailPage.back_btn')}}</el-button>
             </div>
             <div class="approve-timeline-wrap">
-                <p>审批流程</p>
+                <p>{{$t('AprrovalDetailPage.approval_process')}}</p>
                 <div class="timeline">
                     <TimeLine 
                         :TimeLineData="TimeLineData"
@@ -53,7 +53,7 @@
         />
     </div>
     <div class="nodata-wrap approve-page-wrap" v-else>
-        <tableNoData :text="pageLoading?'':'系统暂未开通审批流程,请开启审批流程后再进行操作!'"></tableNoData>
+        <tableNoData :text="pageLoading?'':$t('AprrovalPage.prompt_loading')"></tableNoData>
     </div>
 </template>
 
@@ -126,7 +126,7 @@ export default {
             //发起人节点
             const startNode = {
                 nodeType:1,
-                nodeText:'发起人:',
+                nodeText:`${this.$t('AprrovalDetailPage.initiator_info')}:`,
                 nodeStatus:'passed',
                 approveList:[{
                     approverName:Approve.ApplyUserName||'',
@@ -144,7 +144,7 @@ export default {
                 const strApproveType = `(${ApproveType[i.ApproveType]})`
                 const node = {
                     nodeType:2,
-                    nodeText:'审批人:'+i.Users.length+'人'+(i.Users.length>1?strApproveType:''),
+                    nodeText:`${this.$t('AprrovalDetailPage.approval_by',{num:i.Users.length}) }`+(i.Users.length>1?strApproveType:''),
                     nodeStatus:i.ReportApproveNodeId===Approve.CurrNodeId?'process':'future',
                     approveType:ApproveType[i.ApproveType]
                 }
@@ -226,7 +226,7 @@ export default {
                 //在最后加上撤销节点
                 Nodes.push({
                     nodeType:3,
-                    nodeText:'发起人:',
+                    nodeText:`${this.$t('AprrovalDetailPage.initiator_info')}:`,
                     nodeStatus:'return',
                     approveList:[{
                         approverName:(Approve.ApplyUserName||'')+'(已撤销)',
@@ -274,7 +274,7 @@ export default {
                 })
             }
             if(res.Ret!==200) return 
-            this.$message.success(`${type==='return'?'撤销':'通过'}成功`)
+            this.$message.success( type==='return'?this.$t('AprrovalPage.revoke_success') :this.$t('AprrovalDetailPage.passed_success'));
             type!=='reject'&&(this.$router.replace("/approveList"))
         },
         rejectApprove(reason){
@@ -284,7 +284,7 @@ export default {
                 ApproveRemark:reason||''
             }).then(res=>{
                 if(res.Ret!==200) return 
-                this.$message.success("驳回成功")
+                this.$message.success(this.$t('AprrovalDetailPage.rejected_success') )
                 this.$router.replace("/approveList")
             })
         }

+ 44 - 27
src/views/approve_manage/approveList.vue

@@ -3,15 +3,15 @@
     <div class="approve-list-wrap approve-page-wrap" v-if="isETAApprove">
         <div class="head-tab">
             <el-tabs v-model="activeTab" @tab-click="handleClick">
-                <el-tab-pane label="待处理" name="pending"></el-tab-pane>
-                <el-tab-pane label="已处理" name="processed"></el-tab-pane>
-                <el-tab-pane label="我发起的" name="originate"></el-tab-pane>
+                <el-tab-pane :label="$t('AprrovalPage.be_processed_tab')" name="pending"></el-tab-pane>
+                <el-tab-pane :label="$t('AprrovalPage.processed_tab')" name="processed"></el-tab-pane>
+                <el-tab-pane :label="$t('AprrovalPage.i_initiated_tab')" name="originate"></el-tab-pane>
             </el-tabs>
         </div>
         <div class="approve-list">
             <div class="select-box">
                 <el-cascader v-model="classify"
-                    placeholder="请选择关联报告" clearable
+                    :placeholder="$t('AprrovalPage.associated_report_ipt')" clearable
                     :options="classifyTree"
                     :props="{value:'ClassifyId',label:'ClassifyName',children:'Children'}"
                     @change="handleCurrentChange(1)">
@@ -19,10 +19,10 @@
                 <div class="select-time-box">
                     <el-select v-show="activeTab!=='pending'" v-model="timeType" 
                         @change="handleCurrentChange(1)"
-                        placeholder="时间类型" style="max-width:120px;" class="custom-select">
-                        <el-option label="提交时间" :value="1" />
-                        <el-option label="处理时间" :value="2" v-if="activeTab==='processed'"/>
-                        <el-option label="审批时间" :value="3" v-if="activeTab==='originate'"/>
+                        :placeholder="$t('AprrovalPage.time_type_select')" style="max-width:120px;" class="custom-select">
+                        <el-option :label="$t('AprrovalPage.submint_time')" :value="1" />
+                        <el-option :label="$t('AprrovalPage.processing_time')" :value="2" v-if="activeTab==='processed'"/>
+                        <el-option :label="$t('AprrovalPage.approval_time')" :value="3" v-if="activeTab==='originate'"/>
                     </el-select>
                     <div class="line" v-show="activeTab!=='pending'"></div>
                     <el-date-picker v-model="timeDate"
@@ -35,23 +35,23 @@
                     </el-date-picker>
                 </div>
                 
-                <el-select placeholder="请选择处理状态" v-model="ApproveState" clearable v-show="activeTab!=='pending'"
+                <el-select :placeholder="$t('AprrovalPage.select_processing_status')" v-model="ApproveState" clearable v-show="activeTab!=='pending'"
                     @change="handleCurrentChange(1)">
                     <template v-if="activeTab==='processed'">
-                        <el-option label="已同意" :value="2" />
-                        <el-option label="已驳回" :value="3" />
+                        <el-option :label="$t('AprrovalPage.agreed_option')" :value="2" />
+                        <el-option :label="$t('AprrovalPage.rejected_option')" :value="3" />
                     </template>
                     <template v-if="activeTab==='originate'">
-                        <el-option label="待审批" :value="1" />
-                        <el-option label="已通过" :value="2" />
-                        <el-option label="已驳回" :value="3" />
-                        <el-option label="已撤销" :value="4" />
+                        <el-option :label="$t('AprrovalPage.awaiting_approval_option')" :value="1" />
+                        <el-option :label="$t('AprrovalPage.approved_option')" :value="2" />
+                        <el-option :label="$t('AprrovalPage.rejected_option')" :value="3" />
+                        <el-option :label="$t('AprrovalPage.revoked_option')" :value="4" />
                     </template>
                     
                 </el-select>
 
                 <el-input v-model="keyword" prefix-icon="el-icon-search" clearable @input="handleCurrentChange(1)"
-                    placeholder="请输入报告标题" style="width:260px;margin-left: auto;"></el-input>
+                    :placeholder="$t('AprrovalPage.report_title_ipt')" style="width:260px;margin-left: auto;"></el-input>
             </div>
             <div class="list-box">
                 <el-table 
@@ -62,17 +62,17 @@
                     <el-table-column
                         v-for="item in tableColumns"
                         :key="item.key"
-                        :label="item.label"
+                        :label="getContentMenuOptText(item.label)"
                         :prop="item.key"
                         :sortable="item.sortable"
                         align="center"
                     >
                         <template slot-scope="{row}">
                             <span v-if="item.key==='State'">
-                                {{['','待审批','已通过','已驳回','已撤销'][row.State]}}
+                                {{getContentMenuOptText(['','待审批','已通过','已驳回','已撤销'][row.State])}}
                             </span>
                             <span v-else-if="item.key==='RecordState'">
-                                {{['','待审批','已同意','已驳回'][row.RecordState]}}
+                                {{getContentMenuOptText(['','待审批','已同意','已驳回'][row.RecordState])}}
                             </span>
                             <span v-else>{{row[item.key]}}</span>
                         </template>
@@ -81,19 +81,19 @@
                         <template slot-scope="{row}">
                             <template v-if="activeTab==='pending'">
                                 <el-button type="text" style="padding:0;" @click="toApproveDetail(row,'approve')"
-                                    v-if="permissionBtn.isShowBtn('approvePermission','reportApprove_approve')">审批</el-button>
+                                    v-if="permissionBtn.isShowBtn('approvePermission','reportApprove_approve')">{{$t('AprrovalPage.approve_table')}}</el-button>
                             </template>
                             <template v-if="activeTab==='processed'">
-                                <el-button type="text" style="padding:0;" @click="toApproveDetail(row,'detail')">详情</el-button>
+                                <el-button type="text" style="padding:0;" @click="toApproveDetail(row,'detail')">{{$t('AprrovalPage.details_table')}}</el-button>
                                 <el-button type="text" style="padding:0" @click="handleShowDetail(row)" 
-                                    v-if="row.State===3&&permissionBtn.isShowBtn('approvePermission','reportApprove_rejectreason')">驳回理由</el-button>
+                                    v-if="row.State===3&&permissionBtn.isShowBtn('approvePermission','reportApprove_rejectreason')">{{$t('AprrovalPage.rejection_table')}}</el-button>
                             </template>
                             <template v-if="activeTab==='originate'">
-                                <el-button type="text" style="padding:0;" @click="toApproveDetail(row,'myself')">详情</el-button>
+                                <el-button type="text" style="padding:0;" @click="toApproveDetail(row,'myself')">{{$t('AprrovalPage.details_table')}}</el-button>
                                 <el-button type="text" style="padding:0;" @click="cancelApprove(row)" 
-                                    v-if="row.State!==4&&permissionBtn.isShowBtn('approvePermission','reportApprove_repeal')">撤销</el-button>
+                                    v-if="row.State!==4&&permissionBtn.isShowBtn('approvePermission','reportApprove_repeal')">{{$t('AprrovalPage.cancel_table')}}</el-button>
                                 <el-button type="text" style="padding:0" @click="handleShowDetail(row)" 
-                                    v-if="row.State===3&&permissionBtn.isShowBtn('approvePermission','reportApprove_rejectreason')">驳回理由</el-button>
+                                    v-if="row.State===3&&permissionBtn.isShowBtn('approvePermission','reportApprove_rejectreason')">{{$t('AprrovalPage.rejection_table')}}</el-button>
                             </template>
                         </template>
                         
@@ -120,7 +120,7 @@
         />
     </div>
     <div class="approve-page-wrap" v-else>
-        <tableNoData :text="pageLoading?'':'系统暂未开通审批流程,请开启审批流程后再进行操作!'"></tableNoData>
+        <tableNoData :text="pageLoading?'':$t('AprrovalPage.prompt_loading')"></tableNoData>
     </div>
 </template>
 
@@ -243,10 +243,27 @@ export default {
                 ReportApproveId:Number(item.ReportApproveId)
             }).then(res=>{
                 if(res.Ret!==200) return 
-                this.$message.success("撤销成功")
+                this.$message.success(this.$t('AprrovalPage.revoke_success') )
                 this.handleCurrentChange(1)
             })
         },
+        // 语言切换
+        getContentMenuOptText(e){
+            if(e==='报告标题') return this.$t('AprrovalPage.report_title_lable') 
+            if(e==='关联报告') return this.$t('AprrovalPage.associated_report_lable') 
+            if(e==='提交人') return this.$t('AprrovalPage.submitter_lable') 
+            if(e==='提交时间') return this.$t('AprrovalPage.submission_time_lable') 
+            if(e==='审批状态') return this.$t('AprrovalPage.approval_status_lable') 
+            if(e==='处理时间') return this.$t('AprrovalPage.processing_time_lable') 
+            if(e==='处理结果') return this.$t('AprrovalPage.processing_result_lable') 
+            if(e==='审批时间') return this.$t('AprrovalPage.approval_time') 
+            if(e==='已通过') return this.$t('AprrovalPage.approved_option') 
+            if(e==='已驳回') return this.$t('AprrovalPage.rejected_option') 
+            if(e==='已撤销') return this.$t('AprrovalPage.revoked_option') 
+            if(e==='待审批') return this.$t('AprrovalPage.awaiting_approval_option') 
+            if(e==='已同意') return this.$t('AprrovalPage.agreed_option') 
+            return e
+        }
     },
     mounted(){
         this.getClassifyTree()

+ 5 - 5
src/views/approve_manage/components/rejectDialog.vue

@@ -1,6 +1,6 @@
 <template>
     <el-dialog custom-class="approve-reject-dialog"
-        title="审批驳回"
+        :title="$t('AprrovalDetailPage.rejection_title')"
         :visible.sync="isDetailDialogShow"
         :close-on-click-modal="false"
         :modal-append-to-body="false"
@@ -10,15 +10,15 @@
         center
     >
         <div class="dialog-content-wrap">
-            <el-input type="textarea" v-model="content" :disabled="!isEdit" :rows="10" :placeholder="isEdit?'请输入驳回理由':'无'"></el-input>
+            <el-input type="textarea" v-model="content" :disabled="!isEdit" :rows="10" :placeholder="isEdit?$t('AprrovalDetailPage.rejection_reason_ipt'):'无'"></el-input>
         </div>
         <div class="dialog-btn-wrap">
             
             <template v-if="isEdit">
-                <el-button @click="$emit('close')">取消</el-button>
-                <el-button type="primary" @click="handleConfirm">确认</el-button>
+                <el-button @click="$emit('close')">{{$t('Dialog.cancel_btn')}}</el-button>
+                <el-button type="primary" @click="handleConfirm">{{$t('Dialog.confirm_btn')}}</el-button>
             </template>
-            <el-button v-else @click="$emit('close')">知道了</el-button>
+            <el-button v-else @click="$emit('close')">{{$t('Dialog.known')}}</el-button>
         </div>
     </el-dialog>
 </template>

+ 2 - 6
src/views/ppt_manage/newVersion/pptEnPublish.vue

@@ -5,7 +5,7 @@
           <el-radio v-model="transChartType" :label="1">传服务器</el-radio>
           <el-radio v-model="transChartType" :label="2">本地转</el-radio>
         </div> -->
-        <el-button  type="primary" plain style="width:182px;height:40px;" @click="$router.push({path:'/pptenlist'})">返回列表</el-button>
+        <el-button  type="primary" plain style="width:182px;height:40px;" @click="$router.push({path:'/pptenlist'})">{{$t('Slides.return_to_list')}}</el-button>
         <el-button  type="primary" style="width:182px;height:40px;margin-left: 0;" @click="downloadPPT" :disabled="isPublish">下载</el-button>
         <el-dropdown split-button style="width:182px;height:40px;" type="primary" @click="transHandle" @command="handleCommand" :disabled="isPublish">
           {{layoutStr}}
@@ -100,6 +100,7 @@ export default {
       loadingAll:true,//是否加载全部,false代表使用虚拟列表加载
       LayoutType:1,//ppt比例,1:默认比例10:7,2:16:9,3:4:3
       coefficient:0.7,//宽高系数
+      layoutStr:`10:7${this.$t('Slides.default_publish')}`,
       ReportId:0,//ppt对应的双周报id,如果没转过,则为0
       transReportShow:false,//转双周报的弹窗是否显示
       transChartType:2,//生成PPT时,转换动态图表的方式:1.将svg传至服务端转换;2.调用changeUrl转换
@@ -112,11 +113,6 @@ export default {
       this.coefficient = coefficient
     }
   },
-  computed:{
-      layoutStr(){
-        return `10:7${this.$t('Slides.default_publish')}`
-      },
-  },
   methods: {
     async transHandle(){
       //需要校验PPT

+ 2 - 4
src/views/ppt_manage/newVersion/pptPublish.vue

@@ -6,7 +6,7 @@
           <el-radio v-model="transChartType" :label="1">传服务器</el-radio>
           <el-radio v-model="transChartType" :label="2">本地转</el-radio>
         </div> -->
-        <el-button  type="primary" plain style="width:182px;height:40px;" @click="$router.push({path:'/pptlist'})">返回列表</el-button>
+        <el-button  type="primary" plain style="width:182px;height:40px;" @click="$router.push({path:'/pptlist'})">{{$t('Slides.return_to_list')}}</el-button>
         <el-button  type="primary" style="width:182px;height:40px;margin-left: 0;" @click="downloadPPT" :disabled="isPublish">下载</el-button>
         <el-dropdown split-button style="width:182px;height:40px;" type="primary" @click="transHandle" @command="handleCommand" :disabled="isPublish">
           {{layoutStr}}
@@ -114,6 +114,7 @@ export default {
       loadingAll:true,//是否加载全部,false代表使用虚拟列表加载
       LayoutType:1,//ppt比例,1:默认比例10:7,2:16:9,3:4:3
       coefficient:0.7,//宽高系数
+      layoutStr:`10:7${this.$t('Slides.default_publish')}`,
       ReportId:0,//ppt对应的双周报id,如果没转过,则为0
       transReportShow:false,//转双周报的弹窗是否显示
       transChartType:2,//生成PPT时,转换动态图表的方式:1.将svg传至服务端转换;2.调用changeUrl转换
@@ -129,9 +130,6 @@ export default {
     lineClamp(){
         return this.LayoutType===2?2:3
     },
-    layoutStr(){
-        return `10:7${this.$t('Slides.default_publish')}`
-    },
   },
   methods: {
     //计算title的字节数

+ 11 - 13
src/views/report_manage/mixins/reportMixin.js

@@ -36,7 +36,17 @@ export default {
           '思源宋体':'思源宋体',
           '思源黑体':'思源黑体',}}
         }
-      }
+      },
+      panelTabs(){
+        return [
+            {key: "基础信息",label:this.$t('ReportManage.ReportList.information_title')},
+            {key: "图表插入",label:this.$t('ReportManage.ReportList.insert_chart_tabs')},
+            {key: "MyETA批量插入",label:this.$t('ReportManage.ReportList.bulk_insertion_tabs')},
+            {key: "表格插入",label:this.$t('ReportManage.ReportList.insert_table_tabs')},
+            {key: "沙盘插入",label:this.$t('ReportManage.ReportList.insert_sandbox_tabs')},
+            {key: "语义分析插入",label:this.$t('ReportManage.ReportList.semantic_analysis_tabs')},
+          ]
+      },
   },
   data() {
     let that = this;
@@ -549,16 +559,4 @@ export default {
     },
   },
 
-  computed:{
-    panelTabs(){
-    return [
-        {key: "基础信息",label:this.$t('ReportManage.ReportList.information_title')},
-        {key: "图表插入",label:this.$t('ReportManage.ReportList.insert_chart_tabs')},
-        {key: "MyETA批量插入",label:this.$t('ReportManage.ReportList.bulk_insertion_tabs')},
-        {key: "表格插入",label:this.$t('ReportManage.ReportList.insert_table_tabs')},
-        {key: "沙盘插入",label:this.$t('ReportManage.ReportList.insert_sandbox_tabs')},
-        {key: "语义分析插入",label:this.$t('ReportManage.ReportList.semantic_analysis_tabs')},
-       ]
-    },
-  }
 };