This commit is contained in:
=
2026-03-13 13:51:18 +08:00
parent d85094b2f2
commit 34003155cc
@@ -91,19 +91,30 @@ layout("/layouts/platform_h5.html"){
<!-- 表单容器 -->
<van-form @submit="doSubmit" ref="formRef" class="form-container">
<!-- 协会信息 -->
<van-cell-group title="协会信息" class="form-section">
<van-field
:rules="[{ required: true }]"
v-model="formData.clubName"
label="协会"
placeholder="选择协会"
placeholder="点击选择协会"
required
is-link
readonly
@click="showClubPopup = true"
class="club-field"
></van-field>
border="false"
>
<template #right-icon>
<van-button
type="info"
size="small"
style="margin-right: -4px;"
@click.stop.prevent="onOpen(formData.clubId)"
:disabled="!formData.clubId"
>查看
</van-button>
</template>
</van-field>
<van-popup v-model:show="showClubPopup" position="bottom">
<van-picker
show-toolbar
@@ -113,17 +124,6 @@ layout("/layouts/platform_h5.html"){
class="picker-style"
></van-picker>
</van-popup>
<van-cell class="table-card-footer">
<div style="display: flex; justify-content: flex-end; width: 100%;">
<van-button
type="info"
size="small"
@click.prevent="onOpen(formData.clubId)"
:disabled="!formData.clubId"
>查看
</van-button>
</div>
</van-cell>
</van-cell-group>
<!-- 基本信息 -->