From 1910e9f27373b8b4da75f076762025ceb3419965 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 12 六月 2025 15:40:50 +0800
Subject: [PATCH] fix: 暂时隐藏电信充值通道
---
packages/components/src/views/userAccount/EditElectricUserAccount.vue | 35 +++++++++++++++++++++--------------
1 files changed, 21 insertions(+), 14 deletions(-)
diff --git a/packages/components/src/views/userAccount/EditElectricUserAccount.vue b/packages/components/src/views/userAccount/EditElectricUserAccount.vue
index 5a45bac..61f1830 100644
--- a/packages/components/src/views/userAccount/EditElectricUserAccount.vue
+++ b/packages/components/src/views/userAccount/EditElectricUserAccount.vue
@@ -2,28 +2,31 @@
<LoadingLayout :loading="isLoading">
<ElectricBillRechargeBaseForm ref="formRef" v-model:form="form">
<NutFormItem label="澶囨敞淇℃伅" class="bole-form-item" prop="remark">
- <NutInput
- v-model.trim="form.remark"
- class="bole-input-text"
+ <NutTextarea
placeholder="璇疯緭鍏ュ娉ㄤ俊鎭�"
- type="text"
- max-length="30"
- />
+ placeholderClass="bole-input-text-placeholder"
+ autoSize
+ class="bole-input-textarea"
+ v-model="form.remark"
+ :max-length="30"
+ limit-show
+ >
+ </NutTextarea>
</NutFormItem>
- <div class="common-content">
- <NutButton class="recharge-button" type="primary" @click="handleSave">
- <div class="recharge-button-inner">
- <div class="recharge-button-text">淇濆瓨</div>
- </div>
- </NutButton>
- </div>
</ElectricBillRechargeBaseForm>
+ <!-- <div class="chunk-form-actions">
+ <NutButton class="recharge-button" type="primary" @click="handleSave">
+ <div class="recharge-button-inner">
+ <div class="recharge-button-text">淇濆瓨</div>
+ </div>
+ </NutButton>
+ </div> -->
</LoadingLayout>
</template>
<script setup lang="ts">
import ElectricBillRechargeBaseForm from '../electricBillRecharge/ElectricBillRechargeBaseForm.vue';
-import { Button as NutButton } from '@nutui/nutui-taro';
+import { Button as NutButton, Textarea as NutTextarea } from '@nutui/nutui-taro';
import { reactive, ref, computed } from 'vue';
import {
useLifeRechargeContext,
@@ -72,6 +75,7 @@
form.electricType = currentUserAccountExtraProperties.electricType;
form.electricAccountType = currentUserAccountExtraProperties.electricAccountType;
form.sixID = currentUserAccountExtraProperties.sixID;
+ form.name = currentUserAccountExtraProperties.name ?? '';
form.remark = data.remark;
},
enabled: computed(() => !!props.id),
@@ -85,6 +89,7 @@
city: '',
sixID: '',
remark: '',
+ name: '',
});
const formRef = ref<any>(null);
@@ -117,4 +122,6 @@
emit('success');
} catch (error) {}
}
+
+defineExpose({ handleSave });
</script>
--
Gitblit v1.9.1