Browse Source

运营服务上传人修改为中文名,修正新闻管理的发布和下架的提示信息

Sanmu8 1 year ago
parent
commit
83a13329aa
2 changed files with 4 additions and 4 deletions
  1. 2 2
      src/views/OPSERVICE/index.vue
  2. 2 2
      src/views/news/index.vue

+ 2 - 2
src/views/OPSERVICE/index.vue

@@ -44,9 +44,9 @@
           {{ scope.row.createTime }}
         </template>
       </el-table-column>
-      <el-table-column label="上传人" align="center" prop="createBy">
+      <el-table-column label="上传人" align="center" prop="createBy_dictText">
         <template slot-scope="scope">
-          {{ scope.row.createBy }}
+          {{ scope.row.createBy_dictText }}
         </template>
       </el-table-column>
       <el-table-column label="下载次数" align="center" prop="download">

+ 2 - 2
src/views/news/index.vue

@@ -151,7 +151,7 @@ export default {
         //已发布 已审核
         row.status = '5';
         updateNEWS(row).then(response => {
-          this.$modal.msgSuccess('修改成功');
+          this.$modal.msgSuccess('下架成功');
           this.open = false;
           this.getList();
         });
@@ -159,7 +159,7 @@ export default {
         //已下架
         row.status = '4';
         updateNEWS(row).then(response => {
-          this.$modal.msgSuccess('下架成功');
+          this.$modal.msgSuccess('发布成功');
           this.open = false;
           this.getList();
         });