You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 lines
18 KiB
1 lines
18 KiB
{"ast":null,"code":"import { createElementVNode as _createElementVNode, resolveComponent as _resolveComponent, createVNode as _createVNode, withCtx as _withCtx, createTextVNode as _createTextVNode, createCommentVNode as _createCommentVNode, toDisplayString as _toDisplayString, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\";\nconst _hoisted_1 = {\n class: \"order-create\"\n};\nconst _hoisted_2 = {\n class: \"order-info\"\n};\nconst _hoisted_3 = {\n class: \"dialog-footer\"\n};\nexport function render(_ctx, _cache, $props, $setup, $data, $options) {\n const _component_el_input = _resolveComponent(\"el-input\");\n const _component_el_form_item = _resolveComponent(\"el-form-item\");\n const _component_el_input_number = _resolveComponent(\"el-input-number\");\n const _component_el_button = _resolveComponent(\"el-button\");\n const _component_el_form = _resolveComponent(\"el-form\");\n const _component_el_card = _resolveComponent(\"el-card\");\n const _component_el_dialog = _resolveComponent(\"el-dialog\");\n return _openBlock(), _createElementBlock(\"div\", _hoisted_1, [_createVNode(_component_el_card, null, {\n header: _withCtx(() => _cache[8] || (_cache[8] = [_createElementVNode(\"div\", {\n class: \"card-header\"\n }, [_createElementVNode(\"span\", null, \"创建订单\")], -1 /* HOISTED */)])),\n default: _withCtx(() => [_createVNode(_component_el_form, {\n ref: \"formRef\",\n model: $setup.form,\n rules: $setup.rules,\n \"label-width\": \"100px\"\n }, {\n default: _withCtx(() => [_createVNode(_component_el_form_item, {\n label: \"客户ID\",\n prop: \"customerId\"\n }, {\n default: _withCtx(() => [_createVNode(_component_el_input, {\n modelValue: $setup.form.customerId,\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => $setup.form.customerId = $event),\n modelModifiers: {\n number: true\n },\n type: \"number\",\n placeholder: \"请输入客户ID\",\n style: {\n \"width\": \"220px\"\n }\n }, null, 8 /* PROPS */, [\"modelValue\"])]),\n _: 1 /* STABLE */\n }), _createVNode(_component_el_form_item, {\n label: \"商品名称\",\n prop: \"goodsName\"\n }, {\n default: _withCtx(() => [_createVNode(_component_el_input, {\n modelValue: $setup.form.goodsName,\n \"onUpdate:modelValue\": _cache[1] || (_cache[1] = $event => $setup.form.goodsName = $event)\n }, null, 8 /* PROPS */, [\"modelValue\"])]),\n _: 1 /* STABLE */\n }), _createVNode(_component_el_form_item, {\n label: \"商品数量\",\n prop: \"goodsQuantity\"\n }, {\n default: _withCtx(() => [_createVNode(_component_el_input_number, {\n modelValue: $setup.form.goodsQuantity,\n \"onUpdate:modelValue\": _cache[2] || (_cache[2] = $event => $setup.form.goodsQuantity = $event),\n min: 1\n }, null, 8 /* PROPS */, [\"modelValue\"])]),\n _: 1 /* STABLE */\n }), _createVNode(_component_el_form_item, {\n label: \"起始地\",\n prop: \"startLocation\"\n }, {\n default: _withCtx(() => [_createVNode(_component_el_input, {\n modelValue: $setup.form.startLocation,\n \"onUpdate:modelValue\": _cache[3] || (_cache[3] = $event => $setup.form.startLocation = $event)\n }, null, 8 /* PROPS */, [\"modelValue\"])]),\n _: 1 /* STABLE */\n }), _createVNode(_component_el_form_item, {\n label: \"目的地\",\n prop: \"endLocation\"\n }, {\n default: _withCtx(() => [_createVNode(_component_el_input, {\n modelValue: $setup.form.endLocation,\n \"onUpdate:modelValue\": _cache[4] || (_cache[4] = $event => $setup.form.endLocation = $event)\n }, null, 8 /* PROPS */, [\"modelValue\"])]),\n _: 1 /* STABLE */\n }), _createVNode(_component_el_form_item, {\n label: \"运费\",\n prop: \"transportFee\"\n }, {\n default: _withCtx(() => [_createVNode(_component_el_input_number, {\n modelValue: $setup.form.transportFee,\n \"onUpdate:modelValue\": _cache[5] || (_cache[5] = $event => $setup.form.transportFee = $event),\n min: 0,\n precision: 2,\n step: 0.01\n }, null, 8 /* PROPS */, [\"modelValue\"])]),\n _: 1 /* STABLE */\n }), _createVNode(_component_el_form_item, null, {\n default: _withCtx(() => [_createVNode(_component_el_button, {\n type: \"primary\",\n onClick: $setup.handleSubmit,\n loading: $setup.loading\n }, {\n default: _withCtx(() => _cache[9] || (_cache[9] = [_createTextVNode(\" 创建订单 \")])),\n _: 1 /* STABLE */\n }, 8 /* PROPS */, [\"loading\"])]),\n _: 1 /* STABLE */\n })]),\n _: 1 /* STABLE */\n }, 8 /* PROPS */, [\"model\"])]),\n _: 1 /* STABLE */\n }), _createCommentVNode(\" 确认对话框 \"), _createVNode(_component_el_dialog, {\n modelValue: $setup.dialogVisible,\n \"onUpdate:modelValue\": _cache[7] || (_cache[7] = $event => $setup.dialogVisible = $event),\n title: \"确认订单信息\",\n width: \"50%\"\n }, {\n footer: _withCtx(() => [_createElementVNode(\"span\", _hoisted_3, [_createVNode(_component_el_button, {\n onClick: _cache[6] || (_cache[6] = $event => $setup.dialogVisible = false)\n }, {\n default: _withCtx(() => _cache[16] || (_cache[16] = [_createTextVNode(\"取消\")])),\n _: 1 /* STABLE */\n }), _createVNode(_component_el_button, {\n type: \"primary\",\n onClick: $setup.confirmCreate,\n loading: $setup.loading\n }, {\n default: _withCtx(() => _cache[17] || (_cache[17] = [_createTextVNode(\" 确认创建 \")])),\n _: 1 /* STABLE */\n }, 8 /* PROPS */, [\"loading\"])])]),\n default: _withCtx(() => [_createElementVNode(\"div\", _hoisted_2, [_createElementVNode(\"p\", null, [_cache[10] || (_cache[10] = _createElementVNode(\"strong\", null, \"客户ID:\", -1 /* HOISTED */)), _createTextVNode(_toDisplayString($setup.form.customerId), 1 /* TEXT */)]), _createElementVNode(\"p\", null, [_cache[11] || (_cache[11] = _createElementVNode(\"strong\", null, \"商品名称:\", -1 /* HOISTED */)), _createTextVNode(_toDisplayString($setup.form.goodsName), 1 /* TEXT */)]), _createElementVNode(\"p\", null, [_cache[12] || (_cache[12] = _createElementVNode(\"strong\", null, \"商品数量:\", -1 /* HOISTED */)), _createTextVNode(_toDisplayString($setup.form.goodsQuantity), 1 /* TEXT */)]), _createElementVNode(\"p\", null, [_cache[13] || (_cache[13] = _createElementVNode(\"strong\", null, \"起始地:\", -1 /* HOISTED */)), _createTextVNode(_toDisplayString($setup.form.startLocation), 1 /* TEXT */)]), _createElementVNode(\"p\", null, [_cache[14] || (_cache[14] = _createElementVNode(\"strong\", null, \"目的地:\", -1 /* HOISTED */)), _createTextVNode(_toDisplayString($setup.form.endLocation), 1 /* TEXT */)]), _createElementVNode(\"p\", null, [_cache[15] || (_cache[15] = _createElementVNode(\"strong\", null, \"运费:\", -1 /* HOISTED */)), _createTextVNode(\"¥\" + _toDisplayString($setup.form.transportFee), 1 /* TEXT */)])])]),\n _: 1 /* STABLE */\n }, 8 /* PROPS */, [\"modelValue\"])]);\n}","map":{"version":3,"names":["class","_createElementBlock","_hoisted_1","_createVNode","_component_el_card","header","_withCtx","_cache","_createElementVNode","default","_component_el_form","ref","model","$setup","form","rules","_component_el_form_item","label","prop","_component_el_input","modelValue","customerId","$event","modelModifiers","number","type","placeholder","style","_","goodsName","_component_el_input_number","goodsQuantity","min","startLocation","endLocation","transportFee","precision","step","_component_el_button","onClick","handleSubmit","loading","_createTextVNode","_createCommentVNode","_component_el_dialog","dialogVisible","title","width","footer","_hoisted_3","confirmCreate","_hoisted_2","_toDisplayString"],"sources":["D:\\language\\VScode\\Front-end logistics\\src\\views\\order\\OrderCreate.vue"],"sourcesContent":["<template>\r\n <div class=\"order-create\">\r\n <el-card>\r\n <template #header>\r\n <div class=\"card-header\">\r\n <span>创建订单</span>\r\n </div>\r\n </template>\r\n \r\n <el-form \r\n ref=\"formRef\"\r\n :model=\"form\"\r\n :rules=\"rules\"\r\n label-width=\"100px\"\r\n >\r\n <el-form-item label=\"客户ID\" prop=\"customerId\">\r\n <el-input\r\n v-model.number=\"form.customerId\"\r\n type=\"number\"\r\n placeholder=\"请输入客户ID\"\r\n style=\"width: 220px\"\r\n />\r\n </el-form-item>\r\n\r\n <el-form-item label=\"商品名称\" prop=\"goodsName\">\r\n <el-input v-model=\"form.goodsName\" />\r\n </el-form-item>\r\n \r\n <el-form-item label=\"商品数量\" prop=\"goodsQuantity\">\r\n <el-input-number v-model=\"form.goodsQuantity\" :min=\"1\" />\r\n </el-form-item>\r\n \r\n <el-form-item label=\"起始地\" prop=\"startLocation\">\r\n <el-input v-model=\"form.startLocation\" />\r\n </el-form-item>\r\n \r\n <el-form-item label=\"目的地\" prop=\"endLocation\">\r\n <el-input v-model=\"form.endLocation\" />\r\n </el-form-item>\r\n \r\n <el-form-item label=\"运费\" prop=\"transportFee\">\r\n <el-input-number \r\n v-model=\"form.transportFee\" \r\n :min=\"0\"\r\n :precision=\"2\"\r\n :step=\"0.01\"\r\n />\r\n </el-form-item>\r\n \r\n <el-form-item>\r\n <el-button type=\"primary\" @click=\"handleSubmit\" :loading=\"loading\">\r\n 创建订单\r\n </el-button>\r\n </el-form-item>\r\n </el-form>\r\n </el-card>\r\n\r\n <!-- 确认对话框 -->\r\n <el-dialog\r\n v-model=\"dialogVisible\"\r\n title=\"确认订单信息\"\r\n width=\"50%\"\r\n >\r\n <div class=\"order-info\">\r\n <p><strong>客户ID:</strong>{{ form.customerId }}</p>\r\n <p><strong>商品名称:</strong>{{ form.goodsName }}</p>\r\n <p><strong>商品数量:</strong>{{ form.goodsQuantity }}</p>\r\n <p><strong>起始地:</strong>{{ form.startLocation }}</p>\r\n <p><strong>目的地:</strong>{{ form.endLocation }}</p>\r\n <p><strong>运费:</strong>¥{{ form.transportFee }}</p>\r\n </div>\r\n <template #footer>\r\n <span class=\"dialog-footer\">\r\n <el-button @click=\"dialogVisible = false\">取消</el-button>\r\n <el-button type=\"primary\" @click=\"confirmCreate\" :loading=\"loading\">\r\n 确认创建\r\n </el-button>\r\n </span>\r\n </template>\r\n </el-dialog>\r\n </div>\r\n</template>\r\n\r\n<script setup>\r\nimport { ref, reactive } from 'vue'\r\nimport { useRouter } from 'vue-router'\r\nimport { ElMessage } from 'element-plus'\r\nimport { createOrder } from '@/api/order'\r\n\r\nconst router = useRouter()\r\nconst formRef = ref(null)\r\nconst loading = ref(false)\r\nconst dialogVisible = ref(false)\r\n\r\nconst form = reactive({\r\n customerId: '',\r\n goodsName: '',\r\n goodsQuantity: 1,\r\n startLocation: '',\r\n endLocation: '',\r\n transportFee: 0\r\n})\r\n\r\nconst rules = {\r\n customerId: [\r\n { required: true, message: '请输入客户ID', trigger: 'blur' },\r\n { type: 'number', message: '客户ID必须为数字', trigger: 'blur' }\r\n ],\r\n goodsName: [\r\n { required: true, message: '请输入商品名称', trigger: 'blur' }\r\n ],\r\n goodsQuantity: [\r\n { required: true, message: '请输入商品数量', trigger: 'blur' },\r\n { type: 'number', min: 1, message: '数量必须大于0', trigger: 'blur' }\r\n ],\r\n startLocation: [\r\n { required: true, message: '请输入起始地', trigger: 'blur' }\r\n ],\r\n endLocation: [\r\n { required: true, message: '请输入目的地', trigger: 'blur' }\r\n ],\r\n transportFee: [\r\n { required: true, message: '请输入运费', trigger: 'blur' },\r\n { type: 'number', min: 0, message: '运费不能小于0', trigger: 'blur' }\r\n ]\r\n}\r\n\r\n// 处理表单提交\r\nconst handleSubmit = async () => {\r\n if (!formRef.value) return\r\n \r\n try {\r\n await formRef.value.validate()\r\n dialogVisible.value = true\r\n } catch (error) {\r\n console.error('表单验证失败:', error)\r\n }\r\n}\r\n\r\n// 确认创建订单\r\nconst confirmCreate = async () => {\r\n loading.value = true\r\n try {\r\n const res = await createOrder(form)\r\n if (res.code === 200) {\r\n ElMessage.success('订单创建成功')\r\n dialogVisible.value = false\r\n // 创建成功后跳转到订单列表页面\r\n router.push('/orders/my')\r\n }\r\n } catch (error) {\r\n console.error('创建订单失败:', error)\r\n ElMessage.error(error.message || '创建订单失败,请重试')\r\n } finally {\r\n loading.value = false\r\n }\r\n}\r\n</script>\r\n\r\n<style scoped>\r\n.order-create {\r\n min-height: 100%;\r\n}\r\n\r\n.card-header {\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\r\n}\r\n\r\n.order-info {\r\n padding: 20px;\r\n background-color: #f5f7fa;\r\n border-radius: 4px;\r\n}\r\n\r\n.order-info p {\r\n margin: 10px 0;\r\n}\r\n\r\n.dialog-footer {\r\n display: flex;\r\n justify-content: flex-end;\r\n gap: 10px;\r\n}\r\n</style> "],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|