From ee3e932aa5fb5f4febf6d9d8a7bcb2d38c9b5e5c Mon Sep 17 00:00:00 2001 From: jeremygan2021 Date: Thu, 12 Feb 2026 16:58:22 +0800 Subject: [PATCH] forum --- miniprogram/src/subpackages/forum/create/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/miniprogram/src/subpackages/forum/create/index.tsx b/miniprogram/src/subpackages/forum/create/index.tsx index 62a0175..93e2b10 100644 --- a/miniprogram/src/subpackages/forum/create/index.tsx +++ b/miniprogram/src/subpackages/forum/create/index.tsx @@ -1,6 +1,6 @@ import React, { useState, useEffect } from 'react' import Taro, { useRouter } from '@tarojs/taro' -import { View, Text, Input, Textarea, Button, Picker } from '@tarojs/components' +import { View, Text, Input, Textarea, Button, Picker, ScrollView } from '@tarojs/components' import { createTopic, updateTopic, getTopicDetail, uploadMedia } from '../../../api' import './create.scss' @@ -123,7 +123,7 @@ const CreateTopic = () => { } return ( - + 板块 @@ -165,7 +165,7 @@ const CreateTopic = () => { > {loading ? (id ? '更新中...' : '发布中...') : (id ? '更新话题' : '发布话题')} - + ) }