feat: Phase 1-3 全部完成 — 沙盒增强、学情分析、学习路径

This commit is contained in:
yuzhiran-dev
2026-05-18 09:48:51 +08:00
commit 11bb86854c
277 changed files with 37755 additions and 0 deletions
+58
View File
@@ -0,0 +1,58 @@
<template>
<view class="create-post">
<view class="form">
<input class="input" v-model="title" placeholder="标题" />
<textarea class="textarea" v-model="content" placeholder="内容..." />
<input class="input" v-model="tags" placeholder="标签(逗号分隔)" />
<button class="btn-primary" @tap="submit" :loading="loading">发布</button>
</view>
</view>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { api } from '../../api/index'
const title = ref('')
const content = ref('')
const tags = ref('')
const loading = ref(false)
async function submit() {
if (!title.value || !content.value) {
uni.showToast({ title: '请填写标题和内容', icon: 'none' })
return
}
loading.value = true
try {
await api.community.createPost({
title: title.value,
content: content.value,
tags: tags.value,
})
uni.showToast({ title: '发布成功', icon: 'success' })
uni.navigateBack()
} catch (e: any) {
uni.showToast({ title: e.message || '发布失败', icon: 'none' })
} finally {
loading.value = false
}
}
</script>
<style scoped>
.create-post { padding: 30rpx; }
.form { }
.input {
background: #fff; border-radius: 12rpx; padding: 24rpx 30rpx; font-size: 28rpx;
margin-bottom: 24rpx; border: 1rpx solid #e8e8e8;
}
.textarea {
background: #fff; border-radius: 12rpx; padding: 24rpx 30rpx; font-size: 28rpx;
margin-bottom: 24rpx; border: 1rpx solid #e8e8e8; min-height: 300rpx;
}
.btn-primary {
background: #4f8cff; color: #fff; border-radius: 12rpx; padding: 24rpx;
font-size: 30rpx; text-align: center; margin-top: 30rpx; border: none;
}
</style>