Преглед на файлове

优化修改盘点管理页面

LinWuTai преди 1 година
родител
ревизия
c4c71998f4
променени са 1 файла, в които са добавени 9 реда и са изтрити 2 реда
  1. 9 2
      ruoyi-ui/src/views/inventory/inventory/index.vue

+ 9 - 2
ruoyi-ui/src/views/inventory/inventory/index.vue

@@ -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;