|
@@ -231,7 +231,12 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ @click="submitForm(1)"
|
|
|
+ >提 交</el-button
|
|
|
+ >
|
|
|
+ <el-button type="primary" @click="submitForm(0)">{{form.recordStatus === 1 ? '撤 回' : '保 存'}}</el-button>
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
@@ -404,16 +409,18 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
- submitForm() {
|
|
|
+ submitForm(recordStatus) {
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
if (valid) {
|
|
|
if (this.form.id != null) {
|
|
|
+ this.form.recordStatus = recordStatus
|
|
|
updateInventory(this.form).then(response => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
});
|
|
|
} else {
|
|
|
+ this.form.recordStatus = recordStatus
|
|
|
addInventory(this.form).then(response => {
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
this.open = false;
|