|
@@ -365,7 +365,7 @@
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="info" @click="submitzc">暂 存</el-button>
|
|
|
- <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
+ <el-button type="primary" @click="submitForm">提 交 审 核</el-button>
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
@@ -618,7 +618,6 @@ export default {
|
|
|
submitForm() {
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
if (valid) {
|
|
|
- this.form.status = "1";
|
|
|
if (this.form.id != null) {
|
|
|
updateNEWS(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
@@ -628,12 +627,14 @@ export default {
|
|
|
});
|
|
|
} else {
|
|
|
addNEWS(this.form).then((response) => {
|
|
|
- handleCommit(id).then((res) => {
|
|
|
+ // let formData = new FormData()
|
|
|
+ // formData.append('id',this.form.id)
|
|
|
+ // newCommit(formData).then((res) => {
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
this.reset();
|
|
|
- });
|
|
|
+ // });
|
|
|
});
|
|
|
}
|
|
|
}
|