|
@@ -63,15 +63,15 @@
|
|
|
clearable
|
|
|
style="width:100%;"
|
|
|
>
|
|
|
- <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>
|
|
|
+ <el-option :label="$t('ReportManage.smart_annually')" value="年度"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_semi_annually')" value="半年度"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_quarterly')" value="季度"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_monthly')" value="月度"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_bi_weekly')" value="双周度"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_weekly')" value="周度"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_daily')" value="日度"></el-option>
|
|
|
+ <el-option :label="$t('ReportManage.smart_irregularly')" value="不定时"></el-option>
|
|
|
+ </el-select>
|
|
|
</div>
|
|
|
<div class="select-item">
|
|
|
<el-cascader
|
|
@@ -287,10 +287,13 @@
|
|
|
:formatter="formatterColumn"
|
|
|
></el-table-column>
|
|
|
<el-table-column :label="$t('ReportManage.smart_issue_number_btn')" align="center">
|
|
|
- <template slot-scope="scope">第{{ scope.row.Stage }}期</template>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <!-- 第{{ scope.row.Stage }}期 -->
|
|
|
+ {{ $t('ReportManage.smart_issue_bumber_text',{num:scope.row.Stage}) }}
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column :label="$t('ReportManage.smart_frequency_btn')" align="center">
|
|
|
- <template slot-scope="scope">{{ scope.row.Frequency }}</template>
|
|
|
+ <template slot-scope="scope">{{ getFrequencyTrans(scope.row.Frequency) }}</template>
|
|
|
</el-table-column>
|
|
|
<!-- <el-table-column label="音频" align="center">
|
|
|
<template slot-scope="scope">
|