diff --git a/src/views/modules/base/smartExcel/filling.vue b/src/views/modules/base/smartExcel/filling.vue
index bd5ad276f..3db041d8c 100644
--- a/src/views/modules/base/smartExcel/filling.vue
+++ b/src/views/modules/base/smartExcel/filling.vue
@@ -68,7 +68,8 @@
- {{ scope.row.taskPeriod === 'once' ? '一次性' : '每周' }}
+ {{ scope.row.taskPeriod === 'once' ? '一次性' : scope.row.taskPeriod === 'weekly' ? '每周' : scope.row.taskPeriod
+ === 'halfAMonth'?'每半月': scope.row.taskPeriod === 'month'?'每月':'每季度'}}
diff --git a/src/views/modules/base/smartExcel/index.vue b/src/views/modules/base/smartExcel/index.vue
index 96228bec6..5b8016b62 100644
--- a/src/views/modules/base/smartExcel/index.vue
+++ b/src/views/modules/base/smartExcel/index.vue
@@ -67,7 +67,8 @@
- {{ scope.row.taskPeriod === 'once' ? '一次性' : '每周' }}
+ {{ scope.row.taskPeriod === 'once' ? '一次性' : scope.row.taskPeriod === 'weekly' ? '每周' : scope.row.taskPeriod
+ === 'halfAMonth'?'每半月': scope.row.taskPeriod === 'month'?'每月':'每季度'}}