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-form @submit="doSubmit" ref="formRef" class="form-container">
<!-- 协会信息 -->
<van-cell-group title="协会信息" class="form-section"> <van-cell-group title="协会信息" class="form-section">
<van-field <van-field
:rules="[{ required: true }]" :rules="[{ required: true }]"
v-model="formData.clubName" v-model="formData.clubName"
label="协会" label="协会"
placeholder="选择协会" placeholder="点击选择协会"
required required
is-link
readonly readonly
@click="showClubPopup = true" @click="showClubPopup = true"
class="club-field" 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-popup v-model:show="showClubPopup" position="bottom">
<van-picker <van-picker
show-toolbar show-toolbar
@@ -113,17 +124,6 @@ layout("/layouts/platform_h5.html"){
class="picker-style" class="picker-style"
></van-picker> ></van-picker>
</van-popup> </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> </van-cell-group>
<!-- 基本信息 --> <!-- 基本信息 -->