|
@@ -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);
|