| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- <template>
- <view class="common_page" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
- <cus-header title="填写公益档案" bgColor="transparent"></cus-header>
- <image src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/09/19/54b75bc8-d926-449b-95a5-1126f700b481.png" class="top_bg_img" mode="widthFix"></image>
- <div class="box" v-if="activity">
- <div class="box-title">活动信息</div>
- <div class="box-pre adf">
- <div class="box-pre-left">活动名称</div>
- <div class="box-pre-right">{{activity?.activityName||''}}</div>
- </div>
- <div class="box-pre adf">
- <div class="box-pre-left">人员姓名</div>
- <div class="box-pre-right">{{activity?.memberName||''}}</div>
- </div>
- <div class="box-pre adf">
- <div class="box-pre-left">参与时间</div>
- <div class="box-pre-right">{{activity?.signinTime||''}}</div>
- </div>
- <div class="box-pre adf">
- <div class="box-pre-left">公益支持</div>
- <div class="box-pre-right">{{activity?.channelName||''}}</div>
- </div>
- </div>
- <div class="box">
- <div class="box-title">活动心得</div>
- <up-textarea v-model="experience" placeholder="请分享参加公益活动心得,至少输入10个字~" count border="none" style="height: 250rpx;margin-top: 28rpx;padding: 0;font-size: 26rpx;color: #252525;"></up-textarea>
- </div>
- <div class="box">
- <div class="box-title">活动照片<text>(分享活动照片)</text></div>
- <div class="box-img">
- <up-upload
- :fileList="fileList"
- @afterRead="afterRead"
- @delete="deletePic"
- multiple
- :maxCount="3"
- width="160rpx"
- height="160rpx"
- >
- <image src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/09/29/b04d6b0e-0d30-4043-a2b1-d639e15e2aac.png"
- mode="widthFix" style="width: 160rpx;height: 160rpx;"></image>
- </up-upload>
- </div>
- </div>
- <div class="btn" @click="handleSubmit">提交</div>
- </view>
- </template>
- <script setup name="">
- import CusHeader from '@/components/CusHeader/index.vue'
- import { BaseApi } from '../common/api/baseApi';
- import { onLoad } from '@dcloudio/uni-app'
- import { ref, getCurrentInstance } from 'vue'
- const { proxy } = getCurrentInstance()
-
- const activity = ref(null)
- const experience = ref('')
- const fileList = ref([])
-
- const deletePic = (event) => {
- fileList.value.splice(event.index, 1);
- };
-
- // 新增图片
- const afterRead = async (event) => {
- let lists = [].concat(event.file);
- let fileListLen = fileList.value.length;
- lists.map((item) => {
- fileList.value.push({
- ...item,
- status: 'uploading',
- message: '上传中',
- });
- });
- for (let i = 0; i < lists.length; i++) {
- const result = await uploadFilePromise(lists[i].url);
- let item = fileList.value[fileListLen];
- fileList.value.splice(fileListLen, 1, {
- ...item,
- status: 'success',
- message: '',
- url: result,
- });
- fileListLen++;
- }
- };
-
- const uploadFilePromise = (url) => {
- return new Promise((resolve, reject) => {
- let a = uni.uploadFile({
- url: BaseApi+'/uploadFile',
- filePath: url,
- name: 'file',
- success: (res) => {
- setTimeout(() => {
- let data = JSON.parse(res.data)
- if(data&&data.code===0){
- resolve(data.data);
- }else proxy.$showToast(data?.msg)
- }, 1000);
- },
- fail: err =>{
- resolve('');
- }
- });
- });
- };
-
- const handleSubmit = () => {
- if(!experience.value) return proxy.$showToast('请输入活动心得')
- if(fileList.value.length===0) return proxy.$showToast('请上传活动照片')
- let activityFile = fileList.value.map(f=>f.url).join(';')
- proxy.$api.post('/core/activity/signup/addArchive',{
- activityFile,
- activityId:activity.value?.activityId,
- experience:experience.value,
- memberId:activity.value?.memberId
- }).then(({data:res})=>{
- if(res.code!==0) return proxy.$showToast(res.msg)
- uni.navigateTo({
- url:'/pagesHome/fillNonprofitResult'
- })
- })
- }
-
- onLoad((options)=>{
- if(options.activity) activity.value = JSON.parse(decodeURIComponent(options.activity));
- })
- </script>
- <style scoped lang="scss">
- .common_page{
- padding-bottom: 64rpx;
-
- .box{
- background: #FFFFFF;
- border-radius: 24rpx;
- margin-top: 20rpx;
- padding: 36rpx 24rpx;
- position: relative;
-
- &-title{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 36rpx;
- color: #151B29;
- line-height: 48rpx;
- text{
- font-weight: 400;
- font-size: 26rpx;
- color: #B2B2B2;
- line-height: 37rpx;
- margin-left: 16rpx;
- }
- }
-
- &-pre{
- margin-top: 35rpx;
- &-left{
- width: 160rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #676775;
- line-height: 30rpx;
- text-align: left;
- }
- &-right{
- width: calc(100% - 160rpx);
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #252525;
- line-height: 30rpx;
- }
- }
-
- &-img{
- margin-top: 47rpx;
- }
- }
-
- .btn{
- width: calc(100% - 32rpx);
- height: 90rpx;
- background: #B7F358;
- border-radius: 45rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #151B29;
- line-height: 90rpx;
- text-align: center;
- letter-spacing: 2rpx;
- margin: 40rpx auto 0;
- }
- }
- </style>
|