|
@@ -386,6 +386,7 @@ import {
|
|
|
upload,
|
|
|
setTop,
|
|
|
newCommit,
|
|
|
+ updateAndex
|
|
|
} from "@/api/portal/news/NEWS.js";
|
|
|
|
|
|
export default {
|
|
@@ -530,7 +531,7 @@ export default {
|
|
|
//已发布 已审核
|
|
|
row.status = "5";
|
|
|
updateNEWS(row).then((response) => {
|
|
|
- this.$modal.msgSuccess("发布成功");
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
this.reset();
|
|
@@ -619,8 +620,8 @@ export default {
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
if (valid) {
|
|
|
if (this.form.id != null) {
|
|
|
- this.form.status = '1'
|
|
|
- updateNEWS(this.form).then((response) => {
|
|
|
+ // this.form.status = '1'
|
|
|
+ updateAndex(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
@@ -650,18 +651,28 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
submitzc() {
|
|
|
- this.$refs["form"].validate((valid) => {
|
|
|
- if (valid) {
|
|
|
- this.form.status = "0";
|
|
|
- addNEWS(this.form).then((response) => {
|
|
|
- this.$modal.msgSuccess("暂存成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- this.reset();
|
|
|
- });
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
+ console.log(this.form.id)
|
|
|
+ this.$refs["form"].validate((valid) => {
|
|
|
+ if (valid) {
|
|
|
+ if(this.form.id == null){
|
|
|
+ this.form.status = "0";
|
|
|
+ addNEWS(this.form).then((response) => {
|
|
|
+ this.$modal.msgSuccess("暂存成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ this.reset();
|
|
|
+ });
|
|
|
+ }else if(this.form.status == 0 || this.form.status == 2 || this.form.status == 3 || this.form.status == 5){
|
|
|
+ updateNEWS(this.form).then((response) => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ this.reset();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|
|
|
const ids = row.id || this.ids;
|