From d961ee85e246dc7e4e3f113a5083b4e96eac96f8 Mon Sep 17 00:00:00 2001
From: zhangwencui <1064582902@qq.com>
Date: 星期六, 25 四月 2026 11:39:06 +0800
Subject: [PATCH] change

---
 src/views/productionManagement/productionProcess/Edit.vue |  168 --------------------------------------------------------
 1 files changed, 0 insertions(+), 168 deletions(-)

diff --git a/src/views/productionManagement/productionProcess/Edit.vue b/src/views/productionManagement/productionProcess/Edit.vue
index 28077b6..e69de29 100644
--- a/src/views/productionManagement/productionProcess/Edit.vue
+++ b/src/views/productionManagement/productionProcess/Edit.vue
@@ -1,168 +0,0 @@
-<template>
-  <div>
-    <el-dialog
-        v-model="isShow"
-        title="缂栬緫宸ュ簭"
-        width="400"
-        @close="closeModal"
-    >
-      <el-form label-width="140px" :model="formState" label-position="top" ref="formRef">
-        <el-form-item
-            label="宸ュ簭鍚嶇О锛�"
-            prop="name"
-            :rules="[
-                {
-                required: true,
-                message: '璇疯緭鍏ュ伐搴忓悕绉�',
-              },
-              {
-                max: 100,
-                message: '鏈�澶�100涓瓧绗�',
-              }
-            ]">
-          <el-input v-model="formState.name" />
-        </el-form-item>
-        <el-form-item label="宸ュ簭缂栧彿" prop="no">
-          <el-input v-model="formState.no"  />
-        </el-form-item>
-        <el-form-item
-            label="宸ュ簭绫诲瀷"
-            prop="type"
-            :rules="[
-                {
-                required: true,
-                message: '璇烽�夋嫨宸ュ簭绫诲瀷',
-              }
-            ]"
-        >
-          <el-select v-model="formState.type" placeholder="璇烽�夋嫨宸ュ簭绫诲瀷">
-            <el-option label="璁℃椂" :value="0" />
-            <el-option label="璁′欢" :value="1" />
-          </el-select>
-        </el-form-item>
-        <el-form-item label="宸ヨ祫瀹氶" prop="salaryQuota">
-          <el-input v-model="formState.salaryQuota" type="number" :step="0.001" />
-        </el-form-item>
-        <el-form-item label="鏄惁璐ㄦ" prop="isQuality">
-          <el-switch v-model="formState.isQuality" :active-value="true" inactive-value="false"/>
-        </el-form-item>
-        <el-form-item label="鏄惁鍏ュ簱" prop="inbound">
-          <el-switch v-model="formState.inbound" :active-value="true" inactive-value="false"/>
-        </el-form-item>
-        <el-form-item label="鏄惁鎶ュ伐" prop="reportWork">
-          <el-switch v-model="formState.reportWork" :active-value="true" inactive-value="false"/>
-        </el-form-item>
-        <el-form-item label="澶囨敞" prop="remark">
-          <el-input v-model="formState.remark" type="textarea" />
-        </el-form-item>
-      </el-form>
-      <template #footer>
-        <div class="dialog-footer">
-          <el-button type="primary" @click="handleSubmit">纭</el-button>
-          <el-button @click="closeModal">鍙栨秷</el-button>
-        </div>
-      </template>
-    </el-dialog>
-  </div>
-</template>
-
-<script setup>
-import { ref, computed, getCurrentInstance, watch } from "vue";
-import {update} from "@/api/productionManagement/productionProcess.js";
-
-const props = defineProps({
-  visible: {
-    type: Boolean,
-    required: true,
-  },
-
-  record: {
-    type: Object,
-    required: true,
-  }
-});
-
-const emit = defineEmits(['update:visible', 'completed']);
-
-// 鍝嶅簲寮忔暟鎹紙鏇夸唬閫夐」寮忕殑 data锛�
-const formState = ref({
-  id: props.record.id,
-  name: props.record.name,
-  type: props.record.type,
-  no: props.record.no,
-  remark: props.record.remark,
-  salaryQuota: props.record.salaryQuota,
-  isQuality: props.record.isQuality,
-  inbound: props.record.inbound,
-  reportWork: props.record.reportWork,
-});
-
-const isShow = computed({
-  get() {
-    return props.visible;
-  },
-  set(val) {
-    emit('update:visible', val);
-  },
-});
-
-// 鐩戝惉 record 鍙樺寲锛屾洿鏂拌〃鍗曟暟鎹�
-watch(() => props.record, (newRecord) => {
-  if (newRecord && isShow.value) {
-    formState.value = {
-      id: newRecord.id,
-      name: newRecord.name || '',
-      no: newRecord.no || '',
-      type: newRecord.type,
-      remark: newRecord.remark || '',
-      salaryQuota: newRecord.salaryQuota || '',
-      isQuality: props.record.isQuality,
-      inbound: newRecord.inbound,
-      reportWork: newRecord.reportWork,
-    };
-  }
-}, { immediate: true, deep: true });
-
-// 鐩戝惉寮圭獥鎵撳紑锛岄噸鏂板垵濮嬪寲琛ㄥ崟鏁版嵁
-watch(() => props.visible, (visible) => {
-  if (visible && props.record) {
-    formState.value = {
-      id: props.record.id,
-      name: props.record.name || '',
-      no: props.record.no || '',
-      type: props.record.type,
-      remark: props.record.remark || '',
-      salaryQuota: props.record.salaryQuota || '',
-      isQuality: props.record.isQuality,
-      inbound: props.record.inbound,
-      reportWork: props.record.reportWork,
-    };
-  }
-});
-
-let { proxy } = getCurrentInstance()
-
-const closeModal = () => {
-  isShow.value = false;
-};
-
-const handleSubmit = () => {
-  proxy.$refs["formRef"].validate(valid => {
-    if (valid) {
-      update(formState.value).then(res => {
-        // 鍏抽棴妯℃�佹
-        isShow.value = false;
-        // 鍛婄煡鐖剁粍浠跺凡瀹屾垚
-        emit('completed');
-        proxy.$modal.msgSuccess("鎻愪氦鎴愬姛");
-      })
-    }
-  })
-};
-
-defineExpose({
-  closeModal,
-  handleSubmit,
-  isShow,
-});
-</script>

--
Gitblit v1.9.3