From d13487486a3c3c7cf93bd3bda65dcc0d6af51aa2 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期二, 03 六月 2025 17:37:04 +0800
Subject: [PATCH] 销售出库页面开发
---
src/views/basicInformation/mould/customer.vue | 149 +++++++++++++++++++++++++++++++------------------
1 files changed, 95 insertions(+), 54 deletions(-)
diff --git a/src/views/basicInformation/mould/customer.vue b/src/views/basicInformation/mould/customer.vue
index b35a6d5..5dbd82f 100644
--- a/src/views/basicInformation/mould/customer.vue
+++ b/src/views/basicInformation/mould/customer.vue
@@ -3,13 +3,13 @@
<el-dialog
v-model="dialogVisible"
:title="title"
- width="800"
+ width="600"
:close-on-click-modal="false"
:before-close="handleClose"
>
<el-form
ref="formRef"
- style="max-width: 600px; margin: 0 auto"
+ style="max-width: 400px; margin: 0 auto"
:model="formData"
:rules="rules"
label-width="auto"
@@ -27,11 +27,21 @@
/>
</el-form-item>
<el-form-item label="缁忚惀鍦板潃" prop="address">
- <el-select v-model="formData.address" placeholder="璇烽�夋嫨缁忚惀鍦板潃">
- <el-option label="Zone one" value="shanghai" />
- <el-option label="Zone two" value="beijing" />
- </el-select>
- </el-form-item>
+ <el-cascader
+ placeholder="璇烽�夋嫨缁忚惀鍦板潃"
+ size="default"
+ :options="addressSelectOptions"
+ v-model="formData.address"
+ @change="handleChange"
+ >
+ </el-cascader>
+ </el-form-item>
+ <el-form-item label="璇︾粏鍦板潃" prop="addressDetail">
+ <el-input
+ v-model="formData.addressDetail"
+ placeholder="璇疯緭鍏ュ鎴疯缁嗗湴鍧�"
+ />
+ </el-form-item>
<el-form-item label="閾惰璐︽埛" prop="bankAccount">
<el-input v-model="formData.bankAccount" placeholder="璇疯緭鍏ラ摱琛岃处鎴�" />
</el-form-item>
@@ -39,6 +49,8 @@
<el-button type="primary" @click="submitForm">
纭畾
</el-button>
+ <el-button v-if="addOrEdit === 'edit'" @click="resetForm">閲嶇疆</el-button>
+ <el-button v-if="addOrEdit === 'add'" @click="cancelForm">鍙栨秷</el-button>
</el-form-item>
</el-form>
</el-dialog>
@@ -46,71 +58,100 @@
</template>
<script setup>
-import { ref, watch ,defineProps } from 'vue'
+import { ref, watch, onMounted } from "vue";
+import addressList from "@/api/jsonApi/areaList.json";
const props = defineProps({
- beforeClose: {
- type: Function,
- default: () => {}
- },
- form: {
- type: Object,
- default: () => ({})
- },
- addOrEdit: {
- type: String,
- default: 'add'
- },
- title: {
- type: String,
- default: ''
- },
-})
-
-const emit = defineEmits(['submit', 'handleBeforeClose','update:customerDialogFormVisible'])
-
+ beforeClose: {
+ type: Function,
+ default: () => {},
+ },
+ form: {
+ type: Object,
+ default: () => ({}),
+ },
+ addOrEdit: {
+ type: String,
+ default: "add",
+ },
+ title: {
+ type: String,
+ default: "",
+ },
+});
+const handleChange = (value) => {
+ console.log(value);
+};
+const emit = defineEmits([
+ "submit",
+ "handleBeforeClose",
+ "update:customerDialogFormVisible",
+]);
+onMounted(() => {
+ addressSelectOptions.value = mapAddress(addressList);
+});
+// 鍦板潃閫夋嫨鏁版嵁
+const addressSelectOptions = ref([]);
+// 澶勭悊鍦板潃鏁版嵁杞崲
+function mapAddress(list) {
+ return list.map((item) => ({
+ value: item.no,
+ label: item.name,
+ children: item.children ? mapAddress(item.children) : undefined,
+ }));
+}
// 琛ㄥ崟寮曠敤
-const formRef = ref(null)
+const formRef = ref(null);
// 琛ㄥ崟鏁版嵁
-const formData = ref({ ...props.form })
+const formData = ref({ ...props.form });
// 寮圭獥鍙鎬�
-const dialogVisible = defineModel("customerDialogFormVisible",{required:true,type:Boolean})
+const dialogVisible = defineModel("customerDialogFormVisible", {
+ required: true,
+ type: Boolean,
+});
// 鐩戝惉澶栭儴浼犲叆鐨勮〃鍗曟暟鎹彉鍖�
-watch(() => props.form, (newVal) => {
- formData.value = { ...newVal }
-}, { deep: true })
+watch(
+ () => props.form,
+ (newVal) => {
+ formData.value = { ...newVal };
+ },
+ { deep: true }
+);
// 鐩戝惉鍐呴儴寮圭獥鐘舵�佸彉鍖�
-watch(() => dialogVisible.value, (newVal) => {
- emit('update:customerDialogFormVisible', newVal)
-})
+watch(
+ () => dialogVisible.value,
+ (newVal) => {
+ emit("update:customerDialogFormVisible", newVal);
+ }
+);
// 鎻愪氦琛ㄥ崟
const submitForm = async () => {
- if (!formRef.value) return
- await formRef.value.validate((valid, fields) => {
- if (valid) {
- emit('submit', formData.value)
- }
- })
-}
+ if (!formRef.value) return;
+ await formRef.value.validate((valid, fields) => {
+ if (valid) {
+ emit("submit", formData.value);
+ }
+ });
+};
// 鍙栨秷琛ㄥ崟
const cancelForm = () => {
- emit('update:customerDialogFormVisible', false)
- formData.value = {}
-}
+ emit("update:customerDialogFormVisible", false);
+ formData.value = {};
+};
// 閲嶇疆琛ㄥ崟
const resetForm = () => {
- if (!formRef.value) return
- formRef.value.resetFields()
-}
+ if (!formRef.value) return;
+ formRef.value.resetFields();
+};
// 鍏抽棴寮圭獥
const handleClose = () => {
- // 瑙﹀彂鐖剁粍浠剁殑鍏抽棴鍑芥暟
- emit("handleBeforeClose")
- emit('update:customerDialogFormVisible', false)
-}
+ // 瑙﹀彂鐖剁粍浠剁殑鍏抽棴鍑芥暟
+ emit("handleBeforeClose");
+ emit("update:customerDialogFormVisible", false);
+};
const rules = reactive({
supplierName: [
{ required: true, message: "璇疯緭鍏ヤ緵璐у晢鍚嶇О", trigger: "blur" },
--
Gitblit v1.9.3