From a2386e559babca48004d45bf885032f470e37f4f Mon Sep 17 00:00:00 2001
From: peng <peng.com>
Date: 星期一, 08 九月 2025 15:31:30 +0800
Subject: [PATCH] 移除取消订单按钮

---
 pages/passport/entry/seller/step1.vue |   21 ++++++++++-----------
 1 files changed, 10 insertions(+), 11 deletions(-)

diff --git a/pages/passport/entry/seller/step1.vue b/pages/passport/entry/seller/step1.vue
index de4e907..74500fb 100644
--- a/pages/passport/entry/seller/step1.vue
+++ b/pages/passport/entry/seller/step1.vue
@@ -57,7 +57,7 @@
         <u-form-item
           :border-bottom="false"
           prop="registeredCapital"
-          label="娉ㄥ唽璧勯噾"
+          label="娉ㄥ唽璧勯噾(涓�)"
           required
           ><u-input
             type="number"
@@ -179,18 +179,15 @@
 </template>
 
 <script>
-import UForm from '@/uview-components/uview-ui/components/u-form/u-form.vue';
-import UFormItem from '@/uview-components/uview-ui/components/u-form-item/u-form-item.vue';
-import UInput from '@/uview-components/uview-ui/components/u-input/u-input.vue';
-import UUpload from '@/uview-components/uview-ui/components/u-upload/u-upload.vue';
+import '@/components/uview-components/uview-ui';
 
 import { applyFirst } from "@/api/entry";
-import city from "@/components/m-city/m-city.vue";
+import city from "@/pages/passport/m-city/m-city.vue";
 import storage from "@/utils/storage.js";
 import { upload } from "@/api/common.js";
 import * as RegExp from "@/utils/RegExp.js";
 export default {
-  components: { "m-city": city , UForm,UFormItem,UInput,UUpload},
+  components: { "m-city": city},
   data() {
     return {
       storage,
@@ -292,9 +289,9 @@
       },
     };
   },
-  mounted() {
-    this.$refs.uForm.setRules(this.rules);
-  },
+  // mounted() {
+  //   this.$refs.uForm.setRules(this.rules);
+  // },
   props: ["companyData"],
   watch: {
     companyData: {
@@ -318,9 +315,10 @@
   methods: {
     // 鍥剧墖涓婁紶
     onUploaded(lists, key) {
+		console.log("涓婁紶缁撴灉",lists);
       let images = [];
       lists.forEach((item) => {
-        images.push(item.response.result);
+        images.push(item.response.data.fileKey);
       });
       this.form[key] = images;
     },
@@ -347,6 +345,7 @@
       this.$refs.cityPicker.show();
     },
     validatorStep1Form() {
+	  this.$refs.uForm.setRules(this.rules);
       this.$refs.uForm.validate(async (valid) => {
         console.log(valid);
         if (valid) {

--
Gitblit v1.8.0