|
@@ -35,8 +35,18 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div class="mfooter">
|
|
|
- <el-button v-if="checkPermi(['business:NEWS:confirm'])" type="primary" @click="submitForm('add')" >确 定1</el-button>
|
|
|
- <el-button v-if="checkPermi(['business:NEWS:confirm'])" type="warning" @click="submitForm('draft')">暂 存</el-button>
|
|
|
+ <el-button
|
|
|
+ v-if="checkPermi(['business:NEWS:confirm'])"
|
|
|
+ type="primary"
|
|
|
+ @click="submitForm('add')"
|
|
|
+ >确 定</el-button
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ v-if="checkPermi(['business:NEWS:confirm'])"
|
|
|
+ type="warning"
|
|
|
+ @click="submitForm('draft')"
|
|
|
+ >暂 存</el-button
|
|
|
+ >
|
|
|
<el-button @click="$layer.close(layerid)">取 消</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -119,23 +129,30 @@ export default {
|
|
|
submitForm(type) {
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
if (valid) {
|
|
|
- if (this.form.id != null) {
|
|
|
- updateAndex(this.form).then((response) => {
|
|
|
+ this.form.status = 1;
|
|
|
+ if (this.form.id != null && type == "add") {
|
|
|
+
|
|
|
+ updateNEWS(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
this.$layer.close(this.layerid);
|
|
|
this.$parent.getList();
|
|
|
});
|
|
|
} else {
|
|
|
- if (type == "add") {
|
|
|
- this.form.status = "1";
|
|
|
- } else if (type == "draft") {
|
|
|
- this.form.status = "0";
|
|
|
+ if (type == "draft") {
|
|
|
+ this.form.status = 0;
|
|
|
+
|
|
|
+ updateNEWS(this.form).then((response) => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.$layer.close(this.layerid);
|
|
|
+ this.$parent.getList();
|
|
|
+ });
|
|
|
+ } else if (type == "add") {
|
|
|
+ addNEWS(this.form).then((response) => {
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
+ this.$layer.close(this.layerid);
|
|
|
+ this.$parent.getList();
|
|
|
+ });
|
|
|
}
|
|
|
- addNEWS(this.form).then((response) => {
|
|
|
- this.$modal.msgSuccess("新增成功");
|
|
|
- this.$layer.close(this.layerid);
|
|
|
- this.$parent.getList();
|
|
|
- });
|
|
|
}
|
|
|
}
|
|
|
});
|