gks 1 rok temu
rodzic
commit
e2db13dd60

+ 4 - 3
src/views/COUNSELINGMESSAGE/edit.vue

@@ -30,8 +30,8 @@
     </el-form>
 
     <div slot="footer" class="mfooter">
-      <el-button type="info" @click="submitzc" v-if="checkPermi(['business:COUNSELINGMESSAGE:confirm'])">暂 存</el-button>
-      <el-button type="primary" @click="submitForm" v-if="checkPermi(['business:COUNSELINGMESSAGE:confirm'])">确 定</el-button>
+      <el-button type="info" @click="submitzc" v-if="checkPermi(['business:COUNSELINGMESSAGE:confirm'])">暂存草稿</el-button>
+      <el-button type="primary" @click="submitForm" v-if="checkPermi(['business:COUNSELINGMESSAGE:confirm'])">提交审核</el-button>
       <el-button @click="$layer.close(layerid)">取 消</el-button>
     </div>
     <el-dialog :visible.sync="dialogVisible" :close-on-click-modal="false" fullscreen append-to-body @close="dialogVisible = false">
@@ -114,7 +114,8 @@ export default {
               this.$layer.close(this.layerid);
               this.$parent.getList();
             });
-          } else if (this.form.status == 0 || this.form.status == 2 || this.form.status == 3 || this.form.status == 5 ||this.form.status == 2) {
+          } else if ((this.form.id !== null) && this.form.status == 0 || this.form.status == 2 || this.form.status == 3 || this.form.status == 5 ||this.form.status == 6) {
+            this.form.status = '0';
             updateCOUNSELINGMESSAGE(this.form).then(response => {
               this.$modal.msgSuccess('修改成功');
               this.$layer.close(this.layerid);

+ 1 - 1
src/views/COUNSELINGMESSAGE/index.vue

@@ -63,7 +63,7 @@
           <el-button v-if="scope.row.status == 3" size="mini" type="text"  @click="handleDownOrUp(scope.row)">上报</el-button>
           <el-button v-if="scope.row.status == 6 || scope.row.status == 4" size="mini" type="text" @click="handleDownOrUp(scope.row)">发布</el-button>
           <el-button v-if="scope.row.status == 0 || scope.row.status == 2 || scope.row.status == 3 ||  scope.row.status == 6 ||scope.row.status ==null && scope.row.status != 4" size="mini" type="text" @click="handleUpdate(scope.row)">修改</el-button>
-          <el-button v-if="scope.row.status != 5 && scope.row.status == 2 && scope.row.status != 4 || scope.row.status == 0  ||  scope.row.status == 6" size="mini" type="text" @click="handleDelete(scope.row)">删除</el-button>
+          <el-button v-if="scope.row.status != 5 && scope.row.status != 1" size="mini" type="text" @click="handleDelete(scope.row)">删除</el-button>
         </template>
       </el-table-column>
     </el-table>