|
@@ -9,7 +9,7 @@
|
|
|
type="primary"
|
|
|
size="medium"
|
|
|
@click="showAddReport=true"
|
|
|
- >添加研报</el-button>
|
|
|
+ >{{$t('ReportManage.smart_add_report')}}</el-button>
|
|
|
</el-form-item>
|
|
|
<!-- 整合的筛选项 -->
|
|
|
<el-form-item label="">
|
|
@@ -20,7 +20,7 @@
|
|
|
popper-class="report-select-popover"
|
|
|
width="320" style="display: inline-block;">
|
|
|
<div class="select-wrap">
|
|
|
- <p>筛选项</p>
|
|
|
+ <p>{{$t('ReportManage.smart_filter_options')}}</p>
|
|
|
<div class="select-item">
|
|
|
<el-select
|
|
|
v-model="searchform.timeType"
|
|
@@ -29,28 +29,28 @@
|
|
|
style="width:100%"
|
|
|
@change="search"
|
|
|
>
|
|
|
- <el-option label="发布时间" value="publish_time"></el-option>
|
|
|
- <el-option label="审批时间" value="approve_time"></el-option>
|
|
|
- <el-option label="更新时间" value="modify_time"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_publish_time')" value="publish_time"></el-option>
|
|
|
+ <el-option :label=" $t('ReportManage.smart_approval_time')" value="approve_time"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_update_time')" value="modify_time"></el-option>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
<div class="select-item">
|
|
|
<el-select
|
|
|
@change="search"
|
|
|
v-model="searchform.frequency"
|
|
|
- placeholder="更新频度筛选"
|
|
|
+ :placeholder=" $t('ReportManage.smart_update_frequency_filter')"
|
|
|
size="medium"
|
|
|
clearable
|
|
|
style="width:100%"
|
|
|
>
|
|
|
- <el-option label="年度" value="年度"></el-option>
|
|
|
- <el-option label="半年度" value="半年度"></el-option>
|
|
|
- <el-option label="季度" value="季度"></el-option>
|
|
|
- <el-option label="月度" value="月度"></el-option>
|
|
|
- <el-option label="双周度" value="双周度"></el-option>
|
|
|
- <el-option label="周度" value="周度"></el-option>
|
|
|
- <el-option label="日度" value="日度"></el-option>
|
|
|
- <el-option label="不定时" value="不定时"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_annually')" :value="$t('ReportManage.smart_annually')"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_semi_annually')" :value="$t('ReportManage.smart_semi_annually')"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_quarterly')" :value="$t('ReportManage.smart_quarterly')"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_monthly')" :value="$t('ReportManage.smart_monthly')"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_bi_weekly')" :value="$t('ReportManage.smart_bi_weekly')"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_weekly')" :value="$t('ReportManage.smart_weekly')"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_daily')" :value="$t('ReportManage.smart_daily')"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_irregularly')" :value="$t('ReportManage.smart_irregularly')"></el-option>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
<div class="select-item">
|
|
@@ -59,31 +59,31 @@
|
|
|
:options="optionsArr"
|
|
|
v-model="searchform.classifynameArr"
|
|
|
clearable
|
|
|
- placeholder="类型筛选"
|
|
|
+ :placeholder="$t('ReportManage.smart_type_filtering')"
|
|
|
style="width:100%;"
|
|
|
/>
|
|
|
</div>
|
|
|
<div class="select-item">
|
|
|
<el-select
|
|
|
v-model.number="searchform.publishState"
|
|
|
- placeholder="状态筛选"
|
|
|
+ :placeholder="$t('ReportManage.smart_status_filtering')"
|
|
|
size="medium"
|
|
|
clearable
|
|
|
style="width:100%;"
|
|
|
@change="search"
|
|
|
>
|
|
|
- <el-option label="未发布" :value="1" v-if="!isOtherApprove"></el-option>
|
|
|
- <el-option label="已发布" :value="2"></el-option>
|
|
|
- <el-option label="待提交" :value="3" v-if="isApprove"></el-option>
|
|
|
- <el-option label="待审批" :value="4" v-if="isApprove"></el-option>
|
|
|
- <el-option label="已驳回" :value="5"></el-option>
|
|
|
- <el-option label="已通过" :value="6"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_unpublished')" :value="1" v-if="!isOtherApprove"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_published')" :value="2"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_pending')" :value="3" v-if="isApprove"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_awaiting_approval')" :value="4" v-if="isApprove"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_rejected')" :value="5"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_approved')" :value="6"></el-option>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="select-btn" slot="reference">
|
|
|
<img src="~@/assets/icons/filter.svg">
|
|
|
- <span>筛选条件</span>
|
|
|
+ <span>{{$t('ReportManage.smart_filtering_criteria')}}</span>
|
|
|
<span class="select-num">+{{selectNum}}</span>
|
|
|
</div>
|
|
|
</el-popover>
|
|
@@ -105,7 +105,7 @@
|
|
|
<el-form-item style="flex:1;text-align:right;">
|
|
|
<el-input
|
|
|
@input="search"
|
|
|
- placeholder="标题 / 创建人 / 更新人"
|
|
|
+ :placeholder="$t('ReportManage.smart_title_creator_updater')"
|
|
|
v-model="searchform.key_word"
|
|
|
clearable
|
|
|
size="medium"
|
|
@@ -128,7 +128,7 @@
|
|
|
>
|
|
|
<el-table-column
|
|
|
prop="Title"
|
|
|
- label="报告标题"
|
|
|
+ :label="$t('ReportManage.smart_report_title')"
|
|
|
align="center"
|
|
|
min-width="140"
|
|
|
fixed
|