|
@@ -39,13 +39,13 @@
|
|
|
v-if="checkPermi(['business:NEWS:confirm'])"
|
|
|
type="primary"
|
|
|
@click="submitForm('add')"
|
|
|
- >确 定</el-button
|
|
|
+ >提交审核</el-button
|
|
|
>
|
|
|
<el-button
|
|
|
v-if="checkPermi(['business:NEWS:confirm'])"
|
|
|
type="warning"
|
|
|
@click="submitForm('draft')"
|
|
|
- >暂 存</el-button
|
|
|
+ >暂存草稿</el-button
|
|
|
>
|
|
|
<el-button @click="$layer.close(layerid)">取 消</el-button>
|
|
|
</div>
|
|
@@ -129,15 +129,17 @@ export default {
|
|
|
submitForm(type) {
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
if (valid) {
|
|
|
- this.form.status = 7;
|
|
|
+ this.form.status = 1;
|
|
|
if (this.form.id != null && type == "add") {
|
|
|
- updateNEWS(this.form).then((response) => {
|
|
|
+ console.log(1);
|
|
|
+ updateAndex(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
this.$layer.close(this.layerid);
|
|
|
this.$parent.getList();
|
|
|
});
|
|
|
} else {
|
|
|
if (this.form.id != null && type == "draft") {
|
|
|
+ console.log(2);
|
|
|
this.form.status = 0;
|
|
|
updateNEWS(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
@@ -145,12 +147,14 @@ export default {
|
|
|
this.$parent.getList();
|
|
|
});
|
|
|
} else if (type == "add") {
|
|
|
+ console.log(3);
|
|
|
addNEWS(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
this.$layer.close(this.layerid);
|
|
|
this.$parent.getList();
|
|
|
});
|
|
|
} else if (type == "draft") {
|
|
|
+ console.log(4);
|
|
|
this.form.status = 0;
|
|
|
addNEWS(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("操作成功");
|