123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029 |
- <template>
- <view class="page">
- <PageHeader title="" class="PageHeader">
- <template v-slot:center>
- <view style="font-size: 32rpx;">基本资料</view>
- </template>
- </PageHeader>
- <view class="reserveASeat"></view>
- <!-- <view style="height: 90rpx;"></view> -->
- <view class="list_info">
- <view class="bcenter">
- <view class="avator" @click="chooseAvatar">
- <!-- <image class="img" :src="avator" mode="aspectFill" /> -->
- <CircleAvatar class="avator" :src="avator" style="width: 200rpx; height: 200rpx;"></CircleAvatar>
- <image class="photo" src="../../static/me/photo.png" mode="widthFix" />
- </view>
- </view>
- <view class="section_title">基本信息</view>
- <view class="info_card">
- <view class="info_item" @click="openNicknamePopUpWindow">
- <text class="label">昵称</text>
- <view class="content">
- <text v-if="nickname" class="textContent">{{ nickname }}</text>
- <text v-else class="textPrompt">请输入昵称</text>
- <image class="arrow" src="../../static/me/arrow_right_gray.png" mode="widthFix" />
- </view>
- </view>
- <view class="info_item" @click="SetSex">
- <text class="label">性别</text>
- <view class="content">
- <input type="text" placeholder="选择你的性别" v-model="sexText" disabled="true" />
- <image class="arrow" src="../../static/me/arrow_right_gray.png" mode="widthFix" />
- </view>
- </view>
- <view class="info_item" @click="open()">
- <text class="label">生日</text>
- <view class="content">
- <!-- <picker mode="date" :value="birthday" :end="endDate" @change="onBirthdayChange"> -->
- <!-- <input type="text" placeholder="选择你的生日" v-model="birthday" disabled="true" /> -->
- <view class="birthday" style="color:#1f1f1f;" v-if="birthday">{{ birthday }}</view>
- <view class="birthday" style="color: grey;" v-else>请选择你的生日</view>
- <!-- </picker> -->
- <image class="arrow" src="../../static/me/arrow_right_gray.png" mode="widthFix" />
- </view>
- </view>
- <uni-calendar :date="birthday || '2000-01-01'" ref="calendar" :insert="false" @confirm="confirm" />
- <view class="info_item">
- <text class="label">星座</text>
- <view class="content">
- <input type="text" placeholder="根据你的生日自动匹配" :value="xinzuo_sel" disabled="true"
- style="padding-right: 43rpx;" />
- <!-- <image class="arrow" src="../../static/me/arrow_right_gray.png" mode="widthFix" /> -->
- </view>
- </view>
- <view class="info_item" @click="openContentPopUpWindow">
- <text class="label">简介</text>
- <view class="content">
- <!-- <input type="text" placeholder="做个自我介绍吧~" v-model="content" maxlength="32" /> -->
- <text v-if="content" class="textContent one-omit">{{ content }}</text>
- <text v-else class="textPrompt">做个自我介绍吧</text>
- <image class="arrow" src="../../static/me/arrow_right_gray.png" mode="widthFix" />
- </view>
- </view>
- <view class="info_item" @click="openBackgroundImage">
- <text class="label">背景图</text>
- <view class="content">
- <image class="backgroundImage" :src="bgImage" mode="widthFix"></image>
- <image class="arrow" src="../../static/me/arrow_right_gray.png" mode="widthFix" />
- </view>
- </view>
- </view>
- <view class="section_title">个性标签</view>
- <view class="info_card">
- <view class="item_tag">
- <view class="tag" v-for="(item, index) in sel_tags" :key="index">
- {{ item }}
- <image class="close" src="../../static/me/close.png" mode="widthFix" @click="delTag(item)" />
- </view>
- <view class="addNew blick-btn-animation" @click="showPop = true;">+ 添加</view>
- </view>
- </view>
- <view class="blankHeight"></view>
- </view>
- <view class="btn_submit blick-btn-animation" @click="submitData(true)">保存</view>
- <DialogBox ref="DialogBox"></DialogBox>
- <view class="popSel" v-if="showPop" @tap.stop="onPreview">
- <PageHeader title="添加标签" @back="showPop = false" :isBack="false" style="background: #f2f6f2;" />
- <view class="reserveASeat"></view>
- <view class="headLabel">
- <view class="avator-box">
- <CircleAvatar class="avator" :src="avator"></CircleAvatar>
- <view class="one-omit">{{ nickname }}</view>
- </view>
- <view class="tag-box">
- <view class="tag" v-for="(item, index) in sel_tags" :key="index">
- {{ item }}
- <image class="close" src="../../static/me/close.png" mode="widthFix" @click="delTag(item)" />
- </view>
- </view>
- </view>
- <view class="list_info">
- <view class="name">你的兴趣爱好是?</view>
- <view class="desc">提示:最多选择5个兴趣爱好标签</view>
- <view style="height: 700rpx; overflow-y: scroll; margin-top: 20rpx; padding-bottom: 100rpx;">
- <view class="add-tag-box" style="color: #000;" v-if="showAddTag">
- <input class="add-tag-input" v-model="newTag" placeholder="请输入标签名称" maxlength="10"
- @confirm="addCustomTag" />
- <view class="add-tag-btns">
- <text class="cancel-btn" @tap="cancelAddTag">取消</text>
- <text class="confirm-btn" @tap="addCustomTag">确定</text>
- </view>
- </view>
- <view class="item_tag">
- <view class="tag add-tag" @tap="showAddTagInput">
- <text>+ 自定义</text>
- </view>
- <view @tap.stop="chkTag(item)" class="tag" :class="selTags(item) ? 'active' : ''"
- v-for="(item, index) in list_tag" :key="index">
- {{ item }}
- </view>
- </view>
- </view>
- </view>
- <view class="btn_submit blick-btn-animation" @click="showPop = false;">提交选择</view>
- </view>
- <ToastW3 ref="ToastW3"></ToastW3>
- <!-- <view v-if="showRights"
- style="width:100%;height:300rpx;background-color: rgba(255,255,255,0.9);position: fixed;top:0;display: flex;flex-direction: column;justify-content: center;align-items: center;">
- <text
- style="width:90%;color:#000000;font-size:38rpx;text-align: left;padding:10rpx 20rpx;padding-top:10rpx;">正在获取相机、存储权限</text>
- <text
- style="width:90%;color:#666666;font-size:28rpx;text-align: left;padding:10rpx 20rpx;">该权限用于获取设备拍摄或获取本地应用相册,进行头像或图片上传。</text>
- </view> -->
- <view>
- <NicknamePopup title="编辑昵称" subtitle="" class="openNicknamePopUpWindow" ref="openNicknamePopUpWindow">
- <template v-slot:content>
- <view class="input-box">
- <uv-input placeholder="请输入昵称" border="surround" v-model="nickname" maxlength="12"></uv-input>
- <view class="length-indicator">{{ nickname.length }}/12</view>
- </view>
- <view class="btn-box" @click="submitData">保存</view>
- </template>
- </NicknamePopup>
- <NicknamePopup title="专属于你的简介" subtitle="好的简介让你在社区更受关注" class="openContentPopUpWindow"
- ref="openContentPopUpWindow">
- <template v-slot:content>
- <uv-textarea v-model="content" maxlength="50" count placeholder="请输入内容"></uv-textarea>
- <view class="btn-box" @click="submitData">保存</view>
- </template>
- </NicknamePopup>
- <NicknamePopup title="背景图" subtitle="" ref="backgroundImage" class="NicknamePopup-backgroundImage">
- <template v-slot:content>
- <view class="content">
- <view style="padding: 20rpx 0;">
- <uv-swiper :list="bgList" height="80" indicator :autoplay="false" keyName="url"
- :displayMultipleItems="2" next-margin="40"
- imgMode="aspectFit" :indicator="false" :current="currentBgIndex" @click="changeBgSwiper"
- style="width: 100%; overflow: hidden; background: transparent;" />
- </view>
- <view class="info_item" @click="chooseBgImage">
- <text class="label">上传背景图</text>
- <view class="content">
- <image class="arrow" src="../../static/me/arrow_right_gray.png" mode="widthFix" />
- </view>
- </view>
- </view>
- </template>
- </NicknamePopup>
- </view>
- </view>
- </template>
- <script>
- import PageHeader from '@/components/PageHeader/PageHeader.vue';
- import CircleAvatar from '@/components/CircleAvatar/CircleAvatar.vue';
- import NicknamePopup from '@/components/NicknamePopup/NicknamePopup.vue';
- import permission from '@/common/permission.js';
- import uvSwiper from '@/uni_modules/uv-swiper/components/uv-swiper/uv-swiper.vue';
- export default {
- components: {
- PageHeader,
- CircleAvatar,
- NicknamePopup,
- uvSwiper
- },
- data() {
- return {
- showRights: false,
- title: '',
- sel: 1,
- info: {},
- showPop: false,
- nickname: '',
- content: '',
- sex: 1,
- age: 18,
- height: 160,
- weight: 50,
- avator: '../../static/me/avator.png',
- ziye: '',
- qianmin: '',
- bgImage: '',
- xinzuo_sel: '',
- xinzuo: ['水瓶座', '双鱼座', '白羊座', '金牛座', '双子座', '巨蟹座', '狮子座', '处女座', '天秤座', '天蝎座', '射手座', '摩羯座'],
- list_tag: [],
- sel_tags: [],
- sexText: '',
- birthday: '',
- sexOptions: ['男', '女', '其他'],
- endDate: new Date().toISOString().split('T')[0],
- showAddTag: false,
- newTag: '',
- bgList: [
- { url: require('../../static/me/theme1.jpg') },
- { url: require('../../static/me/theme2.jpg') },
- { url: require('../../static/me/theme3.jpg') },
- { url: require('../../static/me/theme4.jpg') },
- { url: require('../../static/me/theme5.jpg') },
- ],
- currentBgIndex: 0,
- }
- },
- onLoad() {
- let tagStr =
- "老二次元了、coser、沉迷音乐、网游小达人、AJ控、白日梦想家、撸铁狂魔、古风汉服、爱画画、数码极客、盲盒玩家、三坑玩家、动漫达人、设计师、爱卡通、兜风去、爱夜跑、街头滑板、球类运动、lo娘、rapper、时尚达人、机甲狂潮、养宠物、风轻云淡、养多肉、热爱自然、赛博朋克、骨子里高冷、爱唠嗑、资深中二、天然呆、思想家、极度抽象、学院派、平平无奇、热情奔放、博古通今、labubu粉、玛特收藏家";
- this.list_tag = tagStr.split("、");
- this.getInfoData();
- },
- onShow() { },
- methods: {
- open() {
- this.$refs.calendar.open();
- },
- confirm(e) {
- console.log(e);
- this.birthday = e.fulldate
- this.xinzuo_sel = this.getConstellation(this.birthday);
- },
- openNicknamePopUpWindow() {
- this.$refs.openNicknamePopUpWindow.open();
- },
- openContentPopUpWindow() {
- this.$refs.openContentPopUpWindow.open();
- },
- openBackgroundImage() {
- this.$refs.backgroundImage.open();
- },
- closePropUp() {
- this.$refs.openNicknamePopUpWindow.close();
- this.$refs.openContentPopUpWindow.close();
- this.$refs.backgroundImage.close();
- },
- onBack() { },
- onPreview() { },
- chkSel() {
- if (this.sel == 1) {
- this.sel = 0;
- } else {
- this.sel = 1;
- }
- },
- chkSex(sex) {
- this.sex = sex;
- },
- delTag(tg) {
- let list_tag2 = [];
- for (let i = 0; i < this.sel_tags.length; i++) {
- if (this.sel_tags[i] != tg) {
- list_tag2.push(this.sel_tags[i]);
- }
- }
- this.sel_tags = list_tag2;
- },
- selTags(itm) {
- let isIn = false;
- for (let entry of this.sel_tags) {
- if (entry == itm) {
- isIn = true;
- break;
- }
- }
- return isIn;
- },
- chkTag(itm) {
- if (this.selTags(itm)) {
- let tmpTags = [];
- for (let entry of this.sel_tags) {
- if (entry != itm) {
- tmpTags.push(entry);
- }
- }
- this.sel_tags = tmpTags;
- } else {
- if (this.sel_tags.length <= 4) {
- this.sel_tags.push(itm);
- } else {
- uni.showToast({
- title: "最多选择5个标签",
- icon: "none"
- });
- }
- }
- },
- sliderChange1(e) {
- this.age = e.detail.value;
- },
- sliderChange2(e) {
- this.height = e.detail.value;
- },
- sliderChange3(e) {
- this.weight = e.detail.value;
- },
- SetSex() {
- let that = this;
- uni.showActionSheet({
- itemColor: '#000000',
- itemList: this.sexOptions,
- success: function (res) {
- that.sexText = that.sexOptions[res.tapIndex];
- that.sex = res.tapIndex + 1;
- },
- fail: function (res) {
- console.log(res.errMsg);
- }
- });
- },
- getInfoData() {
- uni.request({
- url: this.$apiHost + '/Member/getinfoData',
- data: {
- uuid: getApp().globalData.uuid
- },
- header: {
- 'content-type': 'application/json'
- },
- success: (res) => {
- console.log(res.data);
- this.nickname = res.data.nickname;
- this.wechat = res.data.wechat;
- this.sex = res.data.sex;
- this.sexText = this.sexOptions[res.data.sex - 1] || '';
- this.birthday = res.data.birthday;
- this.content = res.data.content;
- this.xinzuo_sel = this.getConstellation(this.birthday);
- this.bgImage = res.data.bgimg;
- if (res.data.avator != "") {
- this.avator = res.data.avator;
- }
- if (res.data.aihao) {
- this.sel_tags = res.data.aihao.split(",");
- }
- }
- });
- },
- submitData(isBack) {
- let aihao = this.sel_tags.join(',')
- let obj2 = {
- uuid: getApp().globalData.uuid,
- avator: this.avator,
- nickname: this.nickname,
- content: this.content,
- sex: this.sex,
- birthday: this.birthday,
- xinzuo: this.xinzuo_sel,
- ziye: this.ziye,
- qianmin: this.qianmin,
- aihao: aihao,
- bgimg: this.bgImage
- }
- uni.request({
- url: this.$apiHost + '/Member/setinfoData',
- data: obj2,
- method: 'POST',
- header: {
- 'Content-Type': 'application/x-www-form-urlencoded',
- 'sign': getApp().globalData.headerSign
- },
- dataType: 'json',
- success: (res) => {
- console.log("res", res.data)
- uni.showToast({
- title: res.data.str,
- animation: 0,
- icon: "none"
- });
- if (res.data.success == 'yes' && isBack == true) {
- if (this.nickname) {
- getApp().globalData.nickname = this.nickname
- uni.removeStorageSync("nickname");
- uni.setStorageSync("nickname", this.nickname);
- }
- if (this.avator) {
- getApp().globalData.avator = this.avator
- uni.removeStorageSync("avator");
- uni.setStorageSync("avator", this.avator);
- }
- setTimeout(function () {
- uni.navigateBack()
- }, 800)
- } else {
- this.closePropUp()
- }
- this.getInfoData()
- }
- });
- },
- chooseAvatar() {
- uni.showActionSheet({
- itemList: ['拍照', '从相册选择'],
- success: (res) => {
- const sourceType = res.tapIndex === 0 ? 'camera' : 'album';
- this.chooseImage(sourceType);
- }
- });
- },
- async chooseImage(sourceType) {
- try {
- let hasPermission = false;
- if (sourceType === 'camera') {
- hasPermission = await this.checkCameraPermission();
- } else if (sourceType === 'album') {
- hasPermission = await this.checkPhotoLibraryPermission();
- }
- if (!hasPermission) {
- uni.showToast({
- title: '未获得权限',
- icon: 'none'
- });
- return;
- }
- uni.chooseImage({
- count: 1,
- sizeType: ['compressed'],
- sourceType: [sourceType],
- success: async (res) => {
- console.log('res:', res)
- if (res.tempFilePaths.length > 0) {
- const tempFilePath = res.tempFilePaths[0];
- console.log('tempFilePaths:', tempFilePath);
- await this.uploadImage(tempFilePath);
- }
- },
- fail: (err) => {
- console.error('选择图片失败:', err);
- uni.showToast({
- title: '选择图片失败',
- icon: 'none'
- });
- }
- });
- } catch (error) {
- console.error('权限检查失败:', error);
- uni.showToast({
- title: '权限检查失败',
- icon: 'none'
- });
- }
- },
- async checkCameraPermission() {
- const hasPermission = await permission.request(permission.PermissionType.CAMERA, {
- title: "“萌创星球”想访问你的相机",
- describe: "萌创星球想访问您的摄像头,便于拍摄获取图片来替换头像图片"
- });
- return hasPermission;
- },
- async checkPhotoLibraryPermission() {
- const hasPermission = await permission.request(permission.PermissionType.PHOTO_LIBRARY, {
- title: "“萌创星球”想访问你的照片图库",
- describe: "萌创星球想访问您本地照片图库,便于获取图片来替换头像图片"
- });
- return hasPermission;
- },
- uploadImage(tempFilePath) {
- var _self = this;
- const uploadTask = uni.uploadFile({
- url: _self.$apiHost + '/Xweb/upload_img?skey=' + _self.skey,
- filePath: tempFilePath,
- name: 'file',
- success: function (uploadFileRes) {
- let resdata = JSON.parse(uploadFileRes.data)
- console.log('Success11:', uploadFileRes);
- console.log('Success21:', resdata);
- if (resdata.success == 'yes') {
- _self.showRights = false;
- _self.avator = resdata.url;
- }
- },
- fail: function (uploadFileFail) {
- console.log('Error:', uploadFileFail.data);
- },
- complete: () => {
- console.log('Complete:');
- }
- });
- },
- onBirthdayChange(e) {
- this.birthday = e.detail.value;
- this.xinzuo_sel = this.getConstellation(this.birthday);
- },
- getConstellation(birthday) {
- if (!birthday) return '';
- const month = parseInt(birthday.split('-')[1]);
- const day = parseInt(birthday.split('-')[2]);
- // 星座日期范围数组,每个元素包含 [月份, 起始日期, 结束日期, 星座名称]
- const constellationRanges = [
- [1, 1, 19, "摩羯座"], // 1月1日-1月19日
- [1, 20, 31, "水瓶座"], // 1月20日-1月31日
- [2, 1, 18, "水瓶座"], // 2月1日-2月18日
- [2, 19, 29, "双鱼座"], // 2月19日-2月29日
- [3, 1, 20, "双鱼座"], // 3月1日-3月20日
- [3, 21, 31, "白羊座"], // 3月21日-3月31日
- [4, 1, 19, "白羊座"], // 4月1日-4月19日
- [4, 20, 30, "金牛座"], // 4月20日-4月30日
- [5, 1, 20, "金牛座"], // 5月1日-5月20日
- [5, 21, 31, "双子座"], // 5月21日-5月31日
- [6, 1, 21, "双子座"], // 6月1日-6月21日
- [6, 22, 30, "巨蟹座"], // 6月22日-6月30日
- [7, 1, 22, "巨蟹座"], // 7月1日-7月22日
- [7, 23, 31, "狮子座"], // 7月23日-7月31日
- [8, 1, 22, "狮子座"], // 8月1日-8月22日
- [8, 23, 31, "处女座"], // 8月23日-8月31日
- [9, 1, 22, "处女座"], // 9月1日-9月22日
- [9, 23, 30, "天秤座"], // 9月23日-9月30日
- [10, 1, 23, "天秤座"], // 10月1日-10月23日
- [10, 24, 31, "天蝎座"], // 10月24日-10月31日
- [11, 1, 22, "天蝎座"], // 11月1日-11月22日
- [11, 23, 30, "射手座"], // 11月23日-11月30日
- [12, 1, 21, "射手座"], // 12月1日-12月21日
- [12, 22, 31, "摩羯座"] // 12月22日-12月31日
- ];
- // 查找对应的星座
- for (const [m, startDay, endDay, constellation] of constellationRanges) {
- if (month === m && day >= startDay && day <= endDay) {
- return constellation;
- }
- }
- // 如果没找到匹配的星座(这种情况理论上不会发生,因为日期范围是连续的)
- return "未知星座";
- },
- showAddTagInput() {
- this.showAddTag = true;
- this.newTag = '';
- },
- cancelAddTag() {
- this.showAddTag = false;
- this.newTag = '';
- },
- addCustomTag() {
- if (!this.newTag.trim()) {
- uni.showToast({
- title: '请输入标签名称',
- icon: 'none'
- });
- return;
- }
- if (this.list_tag.includes(this.newTag)) {
- uni.showToast({
- title: '该标签已存在',
- icon: 'none'
- });
- return;
- }
- this.list_tag.unshift(this.newTag);
- this.showAddTag = false;
- this.newTag = '';
- },
- chooseBgImage() {
- uni.showActionSheet({
- itemList: ['拍照', '从相册选择'],
- success: (res) => {
- const sourceType = res.tapIndex === 0 ? 'camera' : 'album';
- this.checkRights(sourceType);
- }
- });
- },
- async checkRights(sourceType) {
- try {
- let hasPermission = false;
- if (sourceType === 'camera') {
- hasPermission = await permission.request(permission.PermissionType.CAMERA, {
- title: '"萌创星球"想访问你的相机',
- describe: '萌创星球想访问您的摄像头,便于拍摄获取图片来替换背景图片'
- });
- if (!hasPermission) {
- uni.showToast({
- title: '未获得相机权限',
- icon: 'none'
- });
- return;
- }
- } else {
- hasPermission = await permission.request(permission.PermissionType.PHOTO_LIBRARY, {
- title: '"萌创星球"想访问你的照片图库',
- describe: '萌创星球想访问您本地照片图库,便于获取图片来替换背景图片'
- });
- if (!hasPermission) {
- uni.showToast({
- title: '未获得相册权限',
- icon: 'none'
- });
- return;
- }
- }
- // 权限获取成功后,继续执行上传
- this.uploadBgImage(sourceType);
- } catch (error) {
- console.error('权限检查失败:', error);
- uni.showToast({
- title: '权限检查失败',
- icon: 'none'
- });
- }
- },
- uploadBgImage(sourceType) {
- var _self = this;
- uni.chooseImage({
- count: 1,
- sizeType: ['compressed'],
- sourceType: [sourceType],
- success: function (res) {
- console.log('res:', res)
- if (res.tempFilePaths.length > 0) {
- let filepath = "";
- // #ifdef H5
- filepath = res.tempFiles[0].path;
- // #endif
- // #ifdef APP-PLUS
- filepath = res.tempFilePaths[0];
- // #endif
- const uploadTask = uni.uploadFile({
- url: _self.$apiHost + '/Xweb/upload_img?skey=' + _self.skey,
- filePath: filepath,
- name: 'file',
- success: function (uploadFileRes) {
- let resdata = JSON.parse(uploadFileRes.data)
- console.log('Success:', resdata);
- if (resdata.success == 'yes') {
- // _self.bgList.push({ url: resdata.url });
- _self.closePropUp()
- uni.showToast({
- title: '上传成功',
- icon: 'success'
- });
- } else {
- uni.showToast({
- title: resdata.str || '上传失败',
- icon: 'none'
- });
- }
- },
- fail: function (uploadFileFail) {
- console.log('Error:', uploadFileFail.data);
- uni.showToast({
- title: '上传失败',
- icon: 'none'
- });
- }
- });
- }
- },
- fail: function (err) {
- console.log('选择图片失败:', err);
- uni.showToast({
- title: '选择图片失败',
- icon: 'none'
- });
- }
- });
- },
- changeBgSwiper(index) {
- if (typeof index === 'number') {
- this.currentBgIndex = index;
- this.bgImage = this.bgList[index].url;
- // 上传选中的背景图片
- this.uploadBgImage(this.bgList[index].url);
- }
- },
- uploadBgImage(filepath) {
- var _self = this;
- const uploadTask = uni.uploadFile({
- url: _self.$apiHost + '/Xweb/upload_img?skey=' + _self.skey,
- filePath: filepath,
- name: 'file',
- success: function (uploadFileRes) {
- let resdata = JSON.parse(uploadFileRes.data)
- console.log('Success:', resdata);
- if (resdata.success == 'yes') {
- _self.bgImage = resdata.url;
- _self.closePropUp();
- uni.showToast({
- title: '上传成功',
- icon: 'success'
- });
- } else {
- uni.showToast({
- title: resdata.str || '上传失败',
- icon: 'none'
- });
- }
- },
- fail: function (uploadFileFail) {
- console.log('Error:', uploadFileFail.data);
- uni.showToast({
- title: '上传失败',
- icon: 'none'
- });
- }
- });
- },
- }
- }
- </script>
- <style scoped lang="scss">
- @import 'normal.scss';
- page {
- font-family: PingFang SC-Medium;
- // background: url("../../static/me/wd_bg_bianjiziliao.png") center top / 100%
- // auto no-repeat,
- // #f2f6f2;
- }
- page {
- background: #000 !important;
- }
- .popSel {
- position: fixed;
- z-index: 101;
- top: 0;
- left: 0;
- background-color: #f2f6f2;
- width: 100vh;
- min-height: 100vh;
- .headLabel {
- width: 686rpx;
- margin: 28rpx 32rpx;
- min-height: 222rpx;
- background: #fff;
- box-sizing: border-box;
- padding: 30rpx 40rpx 46rpx 20rpx;
- border-radius: 20rpx;
- .avator-box {
- display: flex;
- align-items: center;
- .avator {
- width: 80rpx;
- height: 80rpx;
- margin-right: 20rpx;
- }
- }
- .tag-box {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- flex-wrap: wrap;
- font-size: 24rpx;
- .tag {
- margin-right: 16rpx;
- margin-top: 20rpx;
- padding: 6rpx 10rpx;
- border: 2rpx solid #DCE1DC;
- color: #9E9E9E;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 42rpx;
- line-height: 1;
- .close {
- width: 20rpx;
- margin-left: 12rpx;
- position: relative;
- }
- }
- }
- }
- }
- .openNicknamePopUpWindow {
- .length-indicator {
- font-size: 24rpx;
- color: #999;
- text-align: right;
- margin-top: 10rpx;
- margin-right: 20rpx;
- position: absolute;
- right: 24rpx;
- top: 24rpx;
- }
- }
- .popSel {
- .item_tag {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- flex-wrap: wrap;
- width: 690rpx;
- padding: 20rpx;
- .tag {
- border-radius: 94rpx;
- margin-right: 10rpx;
- margin-top: 10rpx;
- padding: 8rpx 16rpx;
- font-size: 28rpx;
- color: #333;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- background: #fff;
- border-width: 0;
- .close {
- width: 28rpx;
- margin-left: 2rpx;
- position: relative;
- }
- }
- .active {
- border-width: 0;
- background: #ACF934;
- }
- .addNew {
- margin-right: 10rpx;
- margin-top: 10rpx;
- padding: 0rpx 20rpx;
- height: 60rpx;
- border-radius: 12rpx;
- background: #1f1f1f;
- color: #fff;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- }
- }
- .reserveASeat {
- width: 100%;
- height: calc(var(--status-bar-height) + 50rpx);
- }
- .page {
- background: url("../../static/me/wd_bg_bianjiziliao.png") top center/ 100% auto no-repeat,
- #f2f6f2;
- }
- .PageHeader {
- background: url("../../static/me/wd_bg_bianjiziliao.png") center top / 100% auto no-repeat,
- #f2f6f2;
- // background-position-y: var(--status-bar-height);
- z-index: 99 !important;
- }
- .add-tag-box {
- background: #fff;
- padding: 20rpx;
- margin: 20rpx;
- border-radius: 12rpx;
- .add-tag-input {
- width: 100%;
- height: 80rpx;
- background: #f5f5f5;
- border-radius: 8rpx;
- padding: 0 20rpx;
- font-size: 28rpx;
- margin-bottom: 20rpx;
- }
- .add-tag-btns {
- display: flex;
- justify-content: flex-end;
- gap: 20rpx;
- .cancel-btn,
- .confirm-btn {
- padding: 10rpx 30rpx;
- border-radius: 8rpx;
- font-size: 28rpx;
- }
- .cancel-btn {
- background: #f5f5f5;
- color: #666;
- }
- .confirm-btn {
- background: #1f1f1f;
- color: #fff;
- }
- }
- }
- .item_tag {
- .add-tag {
- background: #f5f5f5;
- color: #666;
- border: 2rpx dashed #ddd;
- &:active {
- background: #e5e5e5;
- }
- }
- }
- .backgroundImage {
- width: 88rpx;
- height: 50rpx;
- border-radius: 4rpx;
- }
- .upload-bg-btn {
- width: 100%;
- height: 80rpx;
- background: #1f1f1f;
- color: #fff;
- border-radius: 12rpx;
- font-size: 32rpx;
- margin: 0 auto;
- display: block;
- }
- .NicknamePopup-backgroundImage {
- .info_item {
- height: 100rpx;
- display: flex;
- align-items: center;
- padding: 0 30rpx;
- border-bottom: 1rpx solid #f5f5f5;
- padding-right: 20rpx;
- background: #fff;
- border-radius: 12rpx;
- &:last-child {
- border-bottom: none;
- }
- .label {
- width: 160rpx;
- font-size: 28rpx;
- color: #1f1f1f;
- font-family: "PingFang SC-Medium";
- }
- .content {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- input {
- text-align: right;
- font-size: 28rpx;
- color: #333;
- }
- .arrow {
- width: 36rpx;
- margin-left: 10rpx;
- }
- }
- }
- ::v-deep .uv-popup__content {
- background: #f2f6f2 !important;
- }
- ::v-deep .uv-swiper__wrapper__item__wrapper__image{
- border-radius: 20rpx !important;
- }
- .content {
- padding: 0 32rpx;
- }
- }
- </style>
|