Browse Source

优化了资讯管理页的一些操作

Sanmu8 1 year ago
parent
commit
1d9d2b1486
1 changed files with 6 additions and 9 deletions
  1. 6 9
      src/views/COUNSELINGMESSAGE/index.vue

+ 6 - 9
src/views/COUNSELINGMESSAGE/index.vue

@@ -56,9 +56,8 @@
 
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
         <template slot-scope="scope">
-          <el-button v-if="scope.row.status == 4" size="mini" type="text" v-hasPermi="['business:COUNSELINGMESSAGE:remove']">下架</el-button>
+          <el-button v-if="scope.row.status == 4" size="mini" type="text"  @click="handleDownOrUp(scope.row)" v-hasPermi="['business:COUNSELINGMESSAGE:remove']">下架</el-button>
           <el-button v-if="scope.row.status == 0 || scope.row.status == 2" size="mini" type="text" v-hasPermi="['business:COUNSELINGMESSAGE:remove']" @click="handleCommit(scope.row)">提交审核</el-button>
-
           <el-button v-if="scope.row.status == 0 || scope.row.status == 2 || scope.row.status == 5" size="mini" type="text" @click="handleUpdate(scope.row)" v-hasPermi="['business:COUNSELINGMESSAGE:remove']">修改</el-button>
           <el-button v-if="scope.row.status == 5 || scope.row.status == 3" size="mini" type="text" @click="handleDownOrUp(scope.row)" v-hasPermi="['business:COUNSELINGMESSAGE:remove']">发布</el-button>
         </template>
@@ -86,24 +85,22 @@
 <!--            <div class="el-upload__tip" slot="tip">只能上传不超过200MB的文件</div>-->
 <!--          </el-upload>-->
 <!--        </el-form-item>-->
-        <el-form-item label="图片上传">
+        <!-- <el-form-item label="图片上传">
           <el-upload action="#" list-type="picture-card" :limit="1" :auto-upload="true" :http-request="httprequest" :before-upload="beforeupload" :file-list="fileList">
             <i slot="default" class="el-icon-plus"></i>
             <div slot="file" slot-scope="{ file }">
               <img class="el-upload-list__item-thumbnail" :src="file.url" />
-              <!-- 放大预览 -->
               <span class="el-upload-list__item-actions">
                 <span class="el-upload-list__item-preview" @click="handlePictureCardPreview(file)">
                   <i class="el-icon-zoom-in"></i>
                 </span>
-                <!-- 删除图片 -->
                 <span v-if="!disabled" class="el-upload-list__item-delete" @click="handleRemove(file)">
                   <i class="el-icon-delete"></i>
                 </span>
               </span>
             </div>
           </el-upload>
-        </el-form-item>
+        </el-form-item> -->
       </el-form>
 
       <div slot="footer" class="dialog-footer">
@@ -137,7 +134,6 @@ export default {
         { label: '已审核', value: 3 },
         { label: '已发布', value: 4 },
         { label: '已下架', value: 5 },
-        { label: '已置顶', value: 6 }
       ],
       // 根路径
       baseURL: process.env.VUE_APP_BASE_API,
@@ -236,11 +232,12 @@ export default {
     /** 发布 */
     handleDownOrUp(row) {
       //修改发布、下架状态
+
       if (row.status == '4' || row.status == '3') {
         //已发布 已审核
         row.status = '5';
         updateCOUNSELINGMESSAGE(row).then(response => {
-          this.$modal.msgSuccess('修改成功');
+          this.$modal.msgSuccess('下架成功');
           this.open = false;
           this.getList();
           this.reset();
@@ -249,7 +246,7 @@ export default {
         //已下架
         row.status = '4';
         updateCOUNSELINGMESSAGE(row).then(response => {
-          this.$modal.msgSuccess('下架成功');
+          this.$modal.msgSuccess('发布成功');
           this.open = false;
           this.getList();
           this.reset();