From 69e0e3be99f9bb582add2bccaa154dd146b9313b Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期五, 26 九月 2025 20:22:24 +0800
Subject: [PATCH] Merge branch 'dev-1.1.2' of http://120.26.58.240:8888/r/flexJobMiniApp into dev-1.1.2

---
 packages/components/src/Input/ChooseLocationInput.vue |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/packages/components/src/Input/ChooseLocationInput.vue b/packages/components/src/Input/ChooseLocationInput.vue
index e139c62..968d011 100644
--- a/packages/components/src/Input/ChooseLocationInput.vue
+++ b/packages/components/src/Input/ChooseLocationInput.vue
@@ -2,7 +2,7 @@
   <nut-input
     class="nut-input-text bole-input-text"
     type="text"
-    input-align="right"
+    :input-align="props.inputAlign"
     readonly
     @click="handleChooseLocation"
     :modelValue="props.modelValue.address"
@@ -34,9 +34,12 @@
 
 type Props = {
   modelValue: WeMapModel;
+  inputAlign: 'left' | 'center' | 'right';
 };
 
-const props = defineProps<Props>();
+const props = withDefaults(defineProps<Props>(), {
+  inputAlign: 'right',
+});
 
 const emit = defineEmits<{
   (e: 'update:modelValue', value: Props['modelValue']): void;

--
Gitblit v1.9.1