Merge remote-tracking branch 'origin/main'

main
Connor 2024-06-09 17:08:08 +08:00
commit 763976a6b2
21 changed files with 802 additions and 157 deletions

View File

@ -3,6 +3,7 @@
import store from '@/store' import store from '@/store'
import { getToken } from '@/utils/auth' import { getToken } from '@/utils/auth'
export default { export default {
onLaunch: function() { onLaunch: function() {
this.initApp() this.initApp()

View File

@ -4,8 +4,8 @@ export default {
uploadQiNiuDomain: 'https://upload-z2.qiniup.com', uploadQiNiuDomain: 'https://upload-z2.qiniup.com',
// baseUrl: 'https://vue.ruoyi.vip/prod-api', // baseUrl: 'https://vue.ruoyi.vip/prod-api',
// baseUrl: 'http://47.93.242.168:8080', // baseUrl: 'http://47.93.242.168:8080',
baseUrl: 'http://47.93.242.168:8080', // baseUrl: 'http://47.93.242.168:8080',
// baseUrl: 'http://localhost:8080', baseUrl: 'http://localhost:8080',
// 应用信息 // 应用信息
appInfo: { appInfo: {
// 应用名称 // 应用名称

View File

@ -4,6 +4,7 @@ import store from './store' // store
import { install } from './plugins' // plugins import { install } from './plugins' // plugins
import './permission.js' // permission import './permission.js' // permission
import iconConfig from './utils/icon/icon.js' import iconConfig from './utils/icon/icon.js'
import { getDictLabelByValue } from '@/utils/dict'
// main.js // main.js
import uviewPlus from 'uview-plus' import uviewPlus from 'uview-plus'
@ -11,6 +12,7 @@ import { parseTime, resetForm, addDateRange, handleTree, selectDictLabel, select
export function createApp() { export function createApp() {
const app = createSSRApp(App) const app = createSSRApp(App)
app.config.globalProperties.iconConfig = iconConfig app.config.globalProperties.iconConfig = iconConfig
app.config.globalProperties.getDictLabelByValue = getDictLabelByValue
app.config.globalProperties.parseTime = parseTime app.config.globalProperties.parseTime = parseTime
app.config.globalProperties.resetForm = resetForm app.config.globalProperties.resetForm = resetForm
app.config.globalProperties.handleTree = handleTree app.config.globalProperties.handleTree = handleTree

View File

@ -277,11 +277,15 @@ page{
.bgc { .bgc {
width: 750rpx; width: 750rpx;
height: 500rpx; height: 500rpx;
background: linear-gradient(180deg, rgb(201, 246, 245), rgb(248, 248, 226)); background: linear-gradient(
180deg, /* 渐变方向,从上到下 */
#C9F6F5 0%, /* 起始颜色 */
#F8F8E2 80%, /* 中间颜色 */
#FBFBFB 100% /* 结束颜色 */
);
position: fixed; position: fixed;
top: 0rpx; top: 0rpx;
left: 0rpx; left: 0rpx;
} }
.sousuoBox1 { .sousuoBox1 {

View File

@ -28,33 +28,43 @@
<view v-if="actiInfoList.state === '0'"> <view v-if="actiInfoList.state === '0'">
<view class="state3" <view class="state3"
v-if="activityAttendInfo.attendState === '0' || activityAttendInfo.attendState === '1'"> v-if="activityAttendInfo.attendState === '0' || activityAttendInfo.attendState === '1'">
<up-button color="#F1F1F1" size="large" shape="circle"><span class="btnText">未参加</span></up-button> <view class="btn btnText">
未参加
</view>
</view> </view>
<view class="state3" v-else-if="activityAttendInfo.attendState === '2'"> <view class="state3" v-else-if="activityAttendInfo.attendState === '2'">
<up-button color="#F1F1F1" size="large" shape="circle"><span class="btnText">已参加</span></up-button> <view class="btn btnText">
已参加
</view>
</view> </view>
</view> </view>
<view v-else-if="actiInfoList.state === '2'"> <view v-else-if="actiInfoList.state === '2'">
<view class="state1" v-if="activityAttendInfo.attendState === '0'"> <view class="state1" v-if="activityAttendInfo.attendState === '0'">
<up-button color="#C0F0EC" size="large" shape="circle" @click="goSing(1)"><span <view class="btn btnText" @click="goSing(1)">
class="btnText">立即报名</span></up-button> 立即报名
</view>
</view> </view>
<view class="state2" v-else-if="activityAttendInfo.attendState === '1'"> <view class="state2" v-else-if="activityAttendInfo.attendState === '1'">
<up-button color="#FDE2E2" size="large" shape="circle" @click="goQrcode(1)"><span <view class="btn btnText" @click="goQrcode(1)">
class="btnText">扫码签到</span></up-button> 扫码签到
</view>
</view> </view>
<view class="state2" v-else-if="activityAttendInfo.attendState === '2'"> <view class="state2" v-else-if="activityAttendInfo.attendState === '2'">
<up-button color="#FDE2E2" size="large" shape="circle"><span class="btnText">已签到</span></up-button> <view class="btn btnText">
已签到
</view>
</view> </view>
</view> </view>
<view v-else-if="actiInfoList.state === '1'"> <view v-else-if="actiInfoList.state === '1'">
<view class="state1" v-if="activityAttendInfo.attendState === '0'"> <view class="state1" v-if="activityAttendInfo.attendState === '0'">
<up-button color="#C0F0EC" size="large" shape="circle" @click="goSing(1)"><span <view class="btn btnText" @click="goSing(1)">
class="btnText">立即报名</span></up-button> 立即报名
</view>
</view> </view>
<view class="state1" v-else-if="activityAttendInfo.attendState === '1'"> <view class="state1" v-else-if="activityAttendInfo.attendState === '1'">
<up-button color="#C0F0EC" size="large" shape="circle" @click="goSing(0)"><span <view class="btn btnText" @click="goSing(0)">
class="btnText">取消报名</span></up-button> 取消报名
</view>
</view> </view>
</view> </view>
</view> </view>
@ -215,6 +225,7 @@ page{
background-color: #ffffff; background-color: #ffffff;
} }
.navbarcenter { .navbarcenter {
font-weight: 400; font-weight: 400;
width: 148rpx; width: 148rpx;
@ -230,7 +241,7 @@ page{
.cards { .cards {
.title { .title {
font-weight: 400 !important; font-weight: 600 !important;
font-size: 32rpx; font-size: 32rpx;
text-align: left; text-align: left;
color: #000000 !important; color: #000000 !important;
@ -264,8 +275,10 @@ page{
.cardx { .cardx {
margin-top: 48rpx; margin-top: 48rpx;
.image { .image {
width: 686rpx; width: 686rpx;
border-radius: 24rpx;
height: 720rpx; height: 720rpx;
} }
} }
@ -277,14 +290,23 @@ page{
margin: 4rpx auto; margin: 4rpx auto;
margin-bottom: 400rpx; margin-bottom: 400rpx;
.btn {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.state1 { .state1 {
width: 686rpx; width: 686rpx;
height: 80rpx; height: 80rpx;
margin: 0 auto; margin: 0 auto;
border-radius: 40rpx;
background-color: #C0F0EC;
.btnText { .btnText {
font-weight: 400; font-weight: bold;
width: 120rpx;
font-size: 30rpx; font-size: 30rpx;
color: #00CCBE !important; color: #00CCBE !important;
} }
@ -294,10 +316,11 @@ page{
width: 686rpx; width: 686rpx;
height: 80rpx; height: 80rpx;
margin: 0 auto; margin: 0 auto;
border-radius: 40rpx;
background-color: #FDE2E2;
.btnText { .btnText {
font-weight: 400; font-weight: bold;
width: 120rpx;
font-size: 30rpx; font-size: 30rpx;
color: #FFABAB !important; color: #FFABAB !important;
} }
@ -307,10 +330,11 @@ page{
width: 686rpx; width: 686rpx;
height: 80rpx; height: 80rpx;
margin: 0 auto; margin: 0 auto;
border-radius: 40rpx;
background-color: #F1F1F1;
.btnText { .btnText {
font-weight: 400; font-weight: bold;
width: 120rpx;
font-size: 30rpx; font-size: 30rpx;
color: #7E7E7E !important; color: #7E7E7E !important;
} }
@ -340,6 +364,22 @@ page{
.infoavatar { .infoavatar {
display: flex; display: flex;
height: 60rpx;
.launchName {
font-size: 26rpx;
color: #000000 !important;
}
.launchAddres {
font-size: 24rpx;
color: #999999 !important;
}
}
.elroll {
font-size: 24rpx;
color: #999999 !important;
} }
} }

View File

@ -14,7 +14,7 @@
<view class="titleInfo"> <view class="titleInfo">
<up-form-item label="" prop="acTitle" borderBottom> <up-form-item label="" prop="acTitle" borderBottom>
<up-input placeholder="输入活动标题~5~20个字" v-model="form.acTitle" border="none" maxlength="20" <up-input placeholder="输入活动标题~5~20个字" v-model="form.acTitle" border="none" maxlength="20"
fontSize="34rpx" color="#C0C0C0" clearable></up-input> fontSize="34rpx" color="#333333" clearable placeholderStyle="color: #c0c0c0;font-size: 34rpx;"></up-input>
</up-form-item> </up-form-item>
<view class="xian"></view> <view class="xian"></view>
</view> </view>
@ -23,7 +23,9 @@
<textarea class="text_style" v-model="form.acContent" <textarea class="text_style" v-model="form.acContent"
placeholder="输入活动内容\n活动图片最多可发布两张\n输入准确定位可以更好提供活动信息奥\n安全指南请勿发布带有个人信息住址\n" cols="50" placeholder="输入活动内容\n活动图片最多可发布两张\n输入准确定位可以更好提供活动信息奥\n安全指南请勿发布带有个人信息住址\n" cols="50"
rows="10" maxlength="500" rows="10" maxlength="500"
placeholderStyle="color: #c0c0c0;font-size: 30rpx; white-space: pre-wrap" placeholderStyle="color: #c0c0c0;font-size: 30rpx; white-space: pre-wrap;"
color="#333333"
fontSize="30rpx"
@linechange="inputtextInfo"></textarea> @linechange="inputtextInfo"></textarea>
<view class="char-count">{{ form.acContent.length }}/500</view> <view class="char-count">{{ form.acContent.length }}/500</view>
</up-form-item> </up-form-item>
@ -85,11 +87,13 @@
<up-datetime-picker :show="showEndTime" v-model="newData" @confirm="confirm2" :modelValue="newData" <up-datetime-picker :show="showEndTime" v-model="newData" @confirm="confirm2" :modelValue="newData"
format="YYYY-MM-DD HH:mm:ss" @cancel="cancel" mode="datetime"></up-datetime-picker> format="YYYY-MM-DD HH:mm:ss" @cancel="cancel" mode="datetime"></up-datetime-picker>
<view class="cardxx"> <view class="cardxx">
<up-button color="#C9F6F5" size="large" shape="circle" @click="publish" throttleTime="500"><span
class="fbText">发布</span></up-button> <view class="cardxx-btn" @click="publish">
<view style="width: 26rpx;height: 80rpx;"></view> 发布
<up-button color="#F8F8E3" size="large" shape="circle" @click="draft" style="margin-left: 26rpx;"><span </view>
class="cgText">存草稿</span></up-button> <view class="cardxx-btn cgText" @click="draft">
存草稿
</view>
</view> </view>
</up-form> </up-form>
</template> </template>
@ -298,13 +302,14 @@ page{
width: 100%; width: 100%;
overflow: auto; overflow: auto;
color: #c0c0c0;
font-weight: 400; font-weight: 400;
font-size: 30rpx; font-size: 30rpx;
line-height: 46rpx; line-height: 46rpx;
} }
.char-count { .char-count {
z-index:1;
text-align: right; text-align: right;
font-size: 24rpx; font-size: 24rpx;
color: #999999; color: #999999;
@ -336,17 +341,23 @@ page{
margin-left: 32rpx; margin-left: 32rpx;
margin-right: 32rpx; margin-right: 32rpx;
margin-top: 80rpx; margin-top: 80rpx;
justify-content: space-between;
.fbText { padding-bottom: 32rpx;
font-weight: 400; .cardxx-btn{
width: 330rpx;
height: 80rpx;
border-radius: 40rpx 40rpx 40rpx 40rpx;
background: #c9f6f5;
font-size: 30rpx; font-size: 30rpx;
color: #FBFBFB !important; font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
color: #FBFBFB;
} }
.cgText { .cgText {
font-weight: 400; background-color: #F8F8E3;
font-size: 30rpx; color: #999999;
color: #999999 !important;
} }
} }
@ -357,4 +368,8 @@ page{
text-align: left; text-align: left;
color: #C9F6F5 !important; color: #C9F6F5 !important;
} }
.btnInfo1{
width: 330rpx !important;
height: 80rpx !important;
}
</style> </style>

View File

@ -16,7 +16,7 @@
结束时间{{ item.endTime }} 结束时间{{ item.endTime }}
</view> </view>
<view class="addrs flex alignCenter"> <view class="addrs flex alignCenter">
<image :src="tu51" style="width: 20rpx; height: 26rpx; margin-right: 12rpx;"></image> <image :src="tu51" style="width: 25rpx; height: 26rpx; margin-right: 12rpx;"></image>
活动地点{{ item.addres }} 活动地点{{ item.addres }}
</view> </view>
<view class="statsInfo"> <view class="statsInfo">
@ -97,7 +97,7 @@ onShow(() => {
padding-left: 24rpx; padding-left: 24rpx;
.titile { .titile {
font-weight: 400; font-weight: 600;
height: 80rpx; height: 80rpx;
font-size: 32rpx; font-size: 32rpx;

View File

@ -10,9 +10,10 @@
name="fileInfowx" name="fileInfowx"
multiple multiple
:previewFullImage="true" :previewFullImage="true"
width="210rpx"
height="210rpx"
> >
<image :src="tu2x" <image :src="tu2x" style="width: 210rpx; height: 210rpx;"></image>
style="width: 210rpx;height: 210rpx;"></image>
</up-upload> </up-upload>
</view> </view>
</template> </template>
@ -148,30 +149,7 @@ const uploadFilePromise = async (fileInfo1, name) => {
const uploadQN = (file) => { const uploadQN = (file) => {
return uploadQN1(file.url); return uploadQN1(file.url);
}; };
//
const uploadQN2 = (file) => {
return new Promise((resolve, reject) => {
const observable = qiniu.upload(file, dataToken.key, dataToken.token, putExtra, config);
const subscription = observable.subscribe({
next(res) {
console.log("next:", res);
},
error(err) {
console.log("error:", err);
reject(err);
},
async complete(res) {
console.log("complete:", res);
form.url = res.key;
form.name = res.key;
form.type = res.mimeType;
form.size = res.fsize;
await addFileList(form);
resolve(res.key);
}
});
});
};
//uni //uni
const uploadQN1 = (file) => { const uploadQN1 = (file) => {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {

View File

@ -0,0 +1,208 @@
<template>
<view>
<up-upload
:accept="fileTypeInfo"
:maxCount="limit"
:fileList="fileList1"
@afterRead="afterRead"
@delete="deletePic"
:maxSize="fileSize"
name="fileInfowx"
multiple
:previewFullImage="true"
>
<image :src="tu2x"
style="width: 210rpx;height: 210rpx;"></image>
</up-upload>
</view>
</template>
<script setup>
import { getQNtoken, addFileList } from "@/api/qiniu/info";
import config1 from "@/config";
import { ref, reactive, getCurrentInstance, defineEmits } from 'vue';
import { useStore } from 'vuex';
import * as qiniu from 'qiniu-js'
const emit = defineEmits();
const { proxy } = getCurrentInstance();
const uploadQiNiuDomain = config1.uploadQiNiuDomain;
const iconConfig = proxy.iconConfig;
const tu2x = iconConfig.tu2x;
const props = defineProps({
modelValue: [String, Object, Array],
fileTypeInfo: {
type: String,
default: "image",
},
limit: {
type: Number,
default: 6,
},
fileSize: {
type: Number,
default: 100 * 1024 * 1024,
}
});
const url = ref('');
const fileList1 = ref([]);
const store = useStore();
const dataToken = reactive({
token: '',
key: ''
});
const fileInfo = reactive({
name: '',
type: '',
extension: ''
});
const config = reactive({
useCdnDomain: true,
region: qiniu.region.z2,
checkByMD5: true,
forceDirect: false
});
const putExtra = reactive({});
const form = reactive({
id: null,
configId: null,
name: null,
path: null,
url: null,
type: null,
fileCategory: null,
size: null,
creator: null,
createTime: null,
updater: null,
updateTime: null,
deleted: null
});
//
const afterRead = async (event) => {
let name = event.name;
let lists = [].concat(event.file);
let fileListLen = fileList1.value.length;
lists.forEach(item => {
fileList1.value.push({
...item,
status: 'uploading',
message: '上传中',
});
});
for (let i = 0; i < lists.length; i++) {
try {
const result = await uploadFilePromise(lists[i], name);
let item = fileList1.value[fileListLen];
fileList1.value.splice(fileListLen, 1, {
...item,
status: 'success',
message: '',
url: store.state.user.QNDomain + result,
furl: result
});
emit("update:modelValue", listToString(fileList1.value));
fileListLen++;
} catch (error) {
console.error("上传失败:", error);
}
}
};
const uploadFilePromise = async (fileInfo1, name) => {
//
let fileNameOld = [0, 1];
if (fileInfo1.name !== undefined) {
fileNameOld = fileInfo1.name.split('.');
}
fileInfo.name = fileNameOld[0] + "_" + store.state.user.phoneType + "_" + name;
let extension1 = fileInfo1.url.split('.');
// h5
if (extension1[1] === undefined) {
extension1[1] = fileNameOld[fileNameOld.length-1]; //
}
//typevideo/mp4type
fileInfo.type = fileInfo1.type + "/" + extension1[extension1.length-1];
fileInfo.extension = extension1[1];
try {
const tokenData = await getQNtoken(fileInfo);
dataToken.token = tokenData.QNtoken;
dataToken.key = tokenData.key;
const result = await uploadQN(fileInfo1);
return result;
} catch (error) {
console.error("获取 token 或上传失败:", error);
throw error;
}
};
//
const uploadQN = (file) => {
return uploadQN1(file.url);
};
//uni
const uploadQN1 = (file) => {
return new Promise((resolve, reject) => {
uni.uploadFile({
url: uploadQiNiuDomain,
filePath: file,
name: 'file',
formData: {
'key': dataToken.key,
'token': dataToken.token
},
success: async (e) => {
try {
let data = JSON.parse(e.data);
form.url = data.key;
form.name = data.key;
form.type = data.fileType;
form.size = data.fsize;
await addFileList(form);
resolve(form.url);
} catch (error) {
console.error("处理上传成功响应时出错:", error);
reject(error);
}
},
fail: (e) => {
console.log("上传失败:", e);
reject(e);
}
});
});
};
const deletePic = (e) => {
fileList1.value.splice(e.index, 1);
};
const typeInfo = () => {
store.dispatch('getPhoneType');
};
//
function listToString(list, separator) {
let strs = "";
separator = separator || ",";
for (let i in list) {
if (list[i].url) {
strs += list[i].furl + separator;
}
}
return strs != '' ? strs.substr(0, strs.length - 1) : '';
}
typeInfo();
</script>
<style lang="scss" scoped>
</style>

View File

@ -35,15 +35,20 @@ const { proxy } = getCurrentInstance();
const iconConfig = proxy.iconConfig; const iconConfig = proxy.iconConfig;
const sh2x1 = iconConfig.sh2x1; const sh2x1 = iconConfig.sh2x1;
const sh2x = iconConfig.sh2x; const sh2x = iconConfig.sh2x;
const bgColor = ref(''); const bgColor = ref('rgba(170, 0, 0, 0)');
bgColor.value = 'rgba(170, 0, 0, 0)'
const leftClick = () => { const leftClick = () => {
proxy.$tab.navigateBack(1) proxy.$tab.navigateBack(1)
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" >
page{
background-color: #ffffff;
}
.bacimg2 { .bacimg2 {
z-index: 1;
width: 508rpx; width: 508rpx;
height: 540rpx; height: 540rpx;
position: fixed; position: fixed;
@ -66,7 +71,7 @@ const leftClick = () => {
position: fixed; position: fixed;
top: 0rpx; top: 0rpx;
left: 0rpx; left: 0rpx;
z-index: -1;
} }
.shenhe2x1 { .shenhe2x1 {

View File

@ -45,6 +45,10 @@ const leftClick = () => {
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
page{
background-color: #ffffff;
}
.bacimg2 { .bacimg2 {
width: 508rpx; width: 508rpx;
height: 540rpx; height: 540rpx;
@ -68,7 +72,7 @@ const leftClick = () => {
position: fixed; position: fixed;
top: 0rpx; top: 0rpx;
left: 0rpx; left: 0rpx;
z-index: -1;
} }
.shenhe2x1 { .shenhe2x1 {
@ -80,7 +84,7 @@ const leftClick = () => {
} }
.text1 { .text1 {
font-weight: 400; font-weight: 600;
font-size: 48rpx; font-size: 48rpx;
text-align: left; text-align: left;
@ -109,7 +113,7 @@ const leftClick = () => {
} }
.fbText { .fbText {
font-weight: 400; font-weight: 600;
font-size: 30rpx; font-size: 30rpx;
text-align: left; text-align: left;

View File

@ -11,14 +11,14 @@
</template> </template>
</up-navbar> </up-navbar>
</view> </view>
<image class="bacimg2" :src="cg2x22"></image> <image class="bacimg2" :src="cg2x21"></image>
<view class="bgc"></view> <view class="bgc"></view>
<view class="cardz"> <view class="cardz">
<image :src="cg2x21" class="shenhe2x1"></image> <image :src="cg2x22" class="shenhe2x1"></image>
<span class="text">待审核</span> <span class="text">发布成功</span>
</view> </view>
<view style="position: fixed; top: 632rpx; width: 100%; padding-left: 32rpx; padding-right: 32rpx;"> <view style="position: fixed; top: 632rpx; width: 100%; padding-left: 32rpx; padding-right: 32rpx;">
<up-button color="#c0f0ec" size="large" shape="circle" @click="publish"><span <up-button color="#DBF6EF" size="large" shape="circle" @click="publish"><span
class="fbText">继续发布</span></up-button> class="fbText">继续发布</span></up-button>
</view> </view>
@ -34,9 +34,9 @@ const { proxy } = getCurrentInstance();
const iconConfig = proxy.iconConfig; const iconConfig = proxy.iconConfig;
const cg2x21 = iconConfig.cg2x21; const cg2x21 = iconConfig.cg2x21;
const cg2x22 = iconConfig.cg2x21; const cg2x22 = iconConfig.cg2x22;
const bgColor = ref(''); const bgColor = ref('rgba(170, 0, 0, 0)');
bgColor.value = 'rgba(170, 0, 0, 0)'
const leftClick = () => { const leftClick = () => {
proxy.$tab.switchTab("/pages/index") proxy.$tab.switchTab("/pages/index")
@ -45,13 +45,18 @@ const publish = () => {
proxy.$tab.switchTab("/pages/index") proxy.$tab.switchTab("/pages/index")
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" >
page{
background-color: #ffffff;
}
.bacimg2 { .bacimg2 {
width: 508rpx; width: 508rpx;
height: 540rpx; height: 540rpx;
position: fixed; position: fixed;
top: -100rpx; top: -100rpx;
left: -100rpx; left: -100rpx;
z-index: 1;
} }
.navbarcenter { .navbarcenter {
@ -69,7 +74,7 @@ const publish = () => {
position: fixed; position: fixed;
top: 0rpx; top: 0rpx;
left: 0rpx; left: 0rpx;
z-index: -1;
} }
.shenhe2x1 { .shenhe2x1 {
@ -78,14 +83,15 @@ const publish = () => {
position: fixed; position: fixed;
top: 276rpx; top: 276rpx;
left: 260rpx; left: 260rpx;
z-index: 2;
} }
.text { .text {
font-weight: 400; font-weight: 600;
font-size: 48rpx; font-size: 48rpx;
text-align: left; text-align: left;
color: #00CCBE !important; color: #5CCDB1 !important;
position: fixed; position: fixed;
top: 500rpx; top: 500rpx;
left: 300rpx; left: 300rpx;
@ -97,7 +103,7 @@ const publish = () => {
align-items: center; align-items: center;
} }
.fbText{ .fbText{
font-weight: 400; font-weight: 600;
font-size: 30rpx; font-size: 30rpx;
text-align: left; text-align: left;

View File

@ -138,9 +138,10 @@ export default {
// //
loginSuccess(result) { loginSuccess(result) {
// //
this.$store.dispatch('GetUserInfo');
this.$store.dispatch('GetInfo').then(res => { this.$store.dispatch('GetInfo').then(res => {
this.$store.dispatch('getQNDomainInfo') this.$store.dispatch('getQNDomainInfo')
this.$store.dispatch('GetUserInfo');
this.$tab.reLaunch('/pages/index') this.$tab.reLaunch('/pages/index')
}) })
} }

View File

@ -12,9 +12,36 @@
</view> </view>
<view v-else> <view v-else>
<view class="userInfoNot"> <view class="userInfoNot">
<view class="avatarInfo">
<up-avatar :src="avatar" size="148rpx"></up-avatar> <up-avatar :src="avatar" size="148rpx"></up-avatar>
<up-text :text="nickName" size="44rpx" color="#FFFFFF" bold="400" margin="24rpx"></up-text> <image v-if="isOfficial" class="official" :src="tu36"></image>
<up-text :text="sex" size="44rpx" color="#FFFFFF" bold="400" margin="24rpx"></up-text> </view>
<view class="simpleInfo-text">
<view class="textgrid1">
<view class="grid11">{{ nickName }}</view>
<image :src="mupdate" style="width: 32rpx; height: 32rpx;"></image>
</view>
<view class="textgrid2">
<view class="textInfo grid21">{{ dictSex(sex) }}</view>
<view class="textInfo grid22">LV{{ infoRank }}</view>
<view class="textInfo grid23">ID:{{ name }}</view>
</view>
<view class="textgrid3">
<view class="grid31">[签名]{{ qm(remark) }}</view>
</view>
</view>
</view>
</view>
<view class="school">
<view class="school1">
<image :src="tu51addres" style="width: 16rpx; height: 20rpx;"></image>
<view class="textInfo">{{ infoSchool }}</view>
</view> </view>
</view> </view>
<view class="smallUserInfo"> <view class="smallUserInfo">
@ -37,8 +64,7 @@
<text class="text1">我的话题</text> <text class="text1">我的话题</text>
<view> <view>
<up-grid :border="false" col="5" @click="grid1Click1"> <up-grid :border="false" col="5" @click="grid1Click1">
<up-grid-item v-for="(listItem, listIndex) in list1" :key="listIndex" <up-grid-item v-for="(listItem, listIndex) in list1" :key="listIndex" customStyle="padding-top: 24rpx; ">
customStyle="padding-top: 24rpx; ">
<image :src="listItem.icon" style="width: 66rpx; height: 66rpx;"></image> <image :src="listItem.icon" style="width: 66rpx; height: 66rpx;"></image>
<text style="font-size: 24rpx;color: #999999;margin-top: 20rpx;">{{ listItem.title }}</text> <text style="font-size: 24rpx;color: #999999;margin-top: 20rpx;">{{ listItem.title }}</text>
</up-grid-item> </up-grid-item>
@ -49,8 +75,7 @@
<text class="text1">我的活动</text> <text class="text1">我的活动</text>
<view> <view>
<up-grid :border="false" col="5" @click="grid1Click2"> <up-grid :border="false" col="5" @click="grid1Click2">
<up-grid-item v-for="(listItem, listIndex) in list2" :key="listIndex" <up-grid-item v-for="(listItem, listIndex) in list2" :key="listIndex" customStyle="padding-top: 24rpx; ">
customStyle="padding-top: 24rpx; ">
<image :src="listItem.icon" style="width: 66rpx; height: 66rpx;"></image> <image :src="listItem.icon" style="width: 66rpx; height: 66rpx;"></image>
<text style="font-size: 24rpx;color: #999999;margin-top: 20rpx;">{{ listItem.title }}</text> <text style="font-size: 24rpx;color: #999999;margin-top: 20rpx;">{{ listItem.title }}</text>
</up-grid-item> </up-grid-item>
@ -61,8 +86,7 @@
<text class="text1">更多功能</text> <text class="text1">更多功能</text>
<view> <view>
<up-grid :border="false" col="4" @click="grid1Click3"> <up-grid :border="false" col="4" @click="grid1Click3">
<up-grid-item v-for="(listItem, listIndex) in list3" :key="listIndex" <up-grid-item v-for="(listItem, listIndex) in list3" :key="listIndex" customStyle="padding-top: 24rpx; ">
customStyle="padding-top: 24rpx; ">
<image :src="listItem.icon" style="width: 66rpx; height: 66rpx;"></image> <image :src="listItem.icon" style="width: 66rpx; height: 66rpx;"></image>
<text style="font-size: 24rpx;color: #999999;margin-top: 20rpx;">{{ listItem.title }}</text> <text style="font-size: 24rpx;color: #999999;margin-top: 20rpx;">{{ listItem.title }}</text>
</up-grid-item> </up-grid-item>
@ -77,10 +101,17 @@ import { useStore } from 'vuex'
import { useRouter } from 'vue-router' import { useRouter } from 'vue-router'
import { ref, getCurrentInstance } from 'vue'; import { ref, getCurrentInstance } from 'vue';
import { getDicts } from "@/api/system/dict/data"; import { getDicts } from "@/api/system/dict/data";
import { onShow, onLoad } from '@dcloudio/uni-app'
import image from 'uview-plus/libs/config/props/image';
const { proxy } = getCurrentInstance(); const { proxy } = getCurrentInstance();
const isOfficial = ref(true)
const iconConfig = proxy.iconConfig; const iconConfig = proxy.iconConfig;
const bjt = iconConfig.bjt; const bjt = iconConfig.bjt;
const bjt2 = iconConfig.bjt2; const bjt2 = iconConfig.bjt2;
const mupdate = iconConfig.mupdate;
const tu36 = iconConfig.tu36;
//
const tu51addres = iconConfig.tu51addres;
//+ //+
const gd11 = iconConfig.gd11; const gd11 = iconConfig.gd11;
const gd12 = iconConfig.gd12; const gd12 = iconConfig.gd12;
@ -127,14 +158,39 @@ const list3 = ref([
{ icon: gd24, title: '系统设置' } { icon: gd24, title: '系统设置' }
]) ])
const infoAssist = ref(0)
const followCount = ref(0)
const fanCount = ref(0)
const name = ref(proxy.$store.state.user.name) const name = ref(proxy.$store.state.user.name)
const nickName = ref(proxy.$store.state.user.nickName) const nickName = ref(proxy.$store.state.user.nickName)
const sex = ref(proxy.$store.state.user.sex) const sex = ref(proxy.$store.state.user.sex)
const infoSchool = ref(proxy.$store.state.userInfo.infoSchool)//
const infoRank = ref(proxy.$store.state.userInfo.infoRank)
const remark = ref(proxy.$store.state.userInfo.remark)//
const infoAssist = ref(proxy.$store.state.userInfo.infoAssist)//
const followCount = ref(proxy.$store.state.userInfo.followCount)//
const fanCount = ref(proxy.$store.state.userInfo.fanCount)//
const qm = (e) => {
if (e === "" | e === null) {
return "这个人很懒什么都没有留下……"
} else {
return e
}
}
const dictSexInfo = ref('')
onLoad((options) => {
getDicts('sys_user_sex').then(e => {
console.log("字典:", e);
dictSexInfo.value = e.data
})
})
const dictSex = (state) => {
const dict = dictSexInfo.value.find((dict) => dict.dictValue === state);
return dict ? dict.dictLabel : '未知状态';
}
const version = ref(getApp().globalData.config.appInfo.version) const version = ref(getApp().globalData.config.appInfo.version)
const avatar = ref(proxy.$store.state.user.avatar) const avatar = ref(proxy.$store.state.user.avatar)
function handleLogout() { function handleLogout() {
@ -156,7 +212,8 @@ const grid1Click3 = (e) => {
} }
const info = () => { const info = () => {
console.log(avatar); console.log("昵称:", useStore().state.userInfo);
} }
info(); info();
function handleToLogin() { function handleToLogin() {
@ -214,6 +271,65 @@ page {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
.avatarInfo {
position: relative;
.official {
position: absolute;
width: 48rpx;
height: 48rpx;
bottom: 0;
right: 0;
}
}
.simpleInfo-text {
margin-left: 24rpx;
text-align: left;
.textgrid1 {
display: flex;
align-items: center;
.grid11 {
font-weight: 600;
font-size: 44rpx;
color: #FFFFFF !important;
margin-right: 10rpx;
}
}
.textgrid2 {
display: flex;
align-items: center;
.textInfo {
font-size: 24rpx;
color: #FFFFFF !important;
}
.grid21 {
margin-right: 24rpx;
}
.grid22 {
margin-right: 24rpx;
}
.grid23 {}
}
.textgrid3 {
.grid31 {
font-size: 24rpx;
text-align: left;
color: #FFFFFF !important;
}
}
}
} }
.smallUserInfo { .smallUserInfo {
@ -252,6 +368,7 @@ page {
margin: 0 24rpx; // margin top margin margin: 0 24rpx; // margin top margin
} }
} }
.cardz3 { .cardz3 {
width: 686rpx; width: 686rpx;
height: 356rpx; height: 356rpx;
@ -268,4 +385,29 @@ page {
margin: 0 24rpx; // margin top margin margin: 0 24rpx; // margin top margin
} }
} }
.school {
position: absolute;
top: 362rpx;
right: 32rpx;
height: 28rpx;
border-radius: 14rpx;
opacity: 0.5;
background: #000000 !important;
display: flex; /* 添加 flex 布局 */
align-items: center; /* 垂直居中 */
justify-content: center; /* 水平居中 */
.school1 {
display: flex;
align-items: center;
margin: 4rpx 18rpx;
.textInfo {
margin-left: 8rpx;
font-size: 18rpx;
color: #FFFFFF !important;
line-height: 28rpx; /* 确保文字垂直居中 */
}
}
}
</style> </style>

View File

@ -111,6 +111,7 @@
registerSuccess(result) { registerSuccess(result) {
// //
this.$store.dispatch('GetInfo').then(res => { this.$store.dispatch('GetInfo').then(res => {
this.$store.dispatch('GetUserInfo');
this.$tab.reLaunch('/pages/index') this.$tab.reLaunch('/pages/index')
}) })
} }

View File

@ -1,19 +1,159 @@
<template class="content"> <template>
<view class="fixed-header"> <view class="work-container">
外卖 <!-- 轮播图 -->
<uni-swiper-dot class="uni-swiper-dot-box" :info="data" :current="current" field="content">
<swiper class="swiper-box" :current="swiperDotIndex" @change="changeSwiper">
<swiper-item v-for="(item, index) in data" :key="index">
<view class="swiper-item" @click="clickBannerItem(item)">
<image class="w-full" :src="item.image" mode="aspectFill" :draggable="false" />
</view>
</swiper-item>
</swiper>
</uni-swiper-dot>
<!-- 宫格组件 -->
<uni-section title="系统管理" type="line"></uni-section>
<view class="grid-body">
</view>
<view>
<up-button type="primary" text="待审核" size @click="clickBannerItem(1)"></up-button>
<up-button type="primary" text="发布成功" size @click="clickBannerItem(2)"></up-button>
<up-button type="primary" text="审核失败" size @click="clickBannerItem(3)"></up-button>
</view>
<fileUpload v-model="fileList1" :fileTypeInfo="fileTypeInfo1">
</fileUpload>
<fileUpload v-model="fileList1" :fileTypeInfo="fileTypeInfo2">
</fileUpload>
<view class="album" v-for="(item, index) in fileList1" :key="index">
<view class="album__avatar">
<image :src="QNDomain + item.furl" mode="" style="width: 32px;height: 32px;"></image>
</view>
</view>
</view> </view>
</template> </template>
<script setup> <script setup>
import { listInfo, getInfo, delInfo, addInfo, updateInfo } from "@/api/activityInfo/info";
import ActiInfoList from '../common/activityList/index.vue' import fileUpload from './../common/file/fileUpload/index.vue'
import { onShow, onLoad ,onPullDownRefresh} from '@dcloudio/uni-app'
import { getDicts } from "@/api/system/dict/data" import { ref, reactive, getCurrentInstance } from 'vue'
import { ref, reactive, getCurrentInstance, toRefs } from 'vue'
import { useStore } from 'vuex'; import { useStore } from 'vuex';
import { func } from "uview-plus/libs/function/test";
const { proxy } = getCurrentInstance(); const { proxy } = getCurrentInstance();
const store = useStore();
const fileTypeInfo1 = ref("image")
const fileTypeInfo2 = ref("video")
const QNDomain = store.state.user.QNDomain
const current = ref(0)
const swiperDotIndex = ref(0)
const data = ref([{
image: '/static/images/banner/banner01.jpg'
},
{
image: '/static/images/banner/banner02.jpg'
},
{
image: '/static/images/banner/banner03.jpg'
}
])
const fileList1 = ref([])
function clickBannerItem(item) {
if(item === 1){
proxy.$tab.navigateTo('/pages/common/talkState/audit')
}
if(item === 2){
proxy.$tab.navigateTo('/pages/common/talkState/publish')
}
if(item === 3){
proxy.$tab.navigateTo('/pages/common/talkState/auditFailure')
}
}
function changeSwiper(e) {
current.value = e.detail.current
}
</script> </script>
<style lang="scss">
<style lang="scss">
/* #ifndef APP-NVUE */
page {
display: flex;
flex-direction: column;
box-sizing: border-box;
background-color: #fff;
min-height: 100%;
height: auto;
}
view {
font-size: 14px;
line-height: inherit;
}
/* #endif */
.text {
text-align: center;
font-size: 26rpx;
margin-top: 10rpx;
}
.grid-item-box {
flex: 1;
/* #ifndef APP-NVUE */
display: flex;
/* #endif */
flex-direction: column;
align-items: center;
justify-content: center;
padding: 15px 0;
}
.uni-margin-wrap {
width: 690rpx;
width: 100%;
}
.swiper {
height: 300rpx;
}
.swiper-box {
height: 150px;
}
.swiper-item {
/* #ifndef APP-NVUE */
display: flex;
/* #endif */
flex-direction: column;
justify-content: center;
align-items: center;
color: #fff;
height: 300rpx;
line-height: 300rpx;
}
@media screen and (min-width: 500px) {
.uni-swiper-dot-box {
width: 400px;
/* #ifndef APP-NVUE */
margin: 0 auto;
/* #endif */
margin-top: 8px;
}
.image {
width: 100%;
}
}
</style> </style>

View File

@ -7,7 +7,7 @@ import defaultAvatar from "@/static/images/profile.jpg";
import { ref } from 'vue'; import { ref } from 'vue';
const baseUrl = config.baseUrl; const baseUrl = config.baseUrl;
const user = { const userInfo = {
state: { state: {
birthday: storage.get(constant.birthday) /** 生日 */, birthday: storage.get(constant.birthday) /** 生日 */,
doingsStatus: storage.get(constant.doingsStatus) /** 活动发布权限(0没有1有) */, doingsStatus: storage.get(constant.doingsStatus) /** 活动发布权限(0没有1有) */,
@ -21,48 +21,78 @@ const user = {
infoRank: storage.get(constant.infoRank) /** 用户等级 */, infoRank: storage.get(constant.infoRank) /** 用户等级 */,
infoCoin: storage.get(constant.infoCoin) /** 虚拟币数量 */, infoCoin: storage.get(constant.infoCoin) /** 虚拟币数量 */,
infoActive: storage.get(constant.infoActive) /** 活跃度 */, infoActive: storage.get(constant.infoActive) /** 活跃度 */,
remark: storage.get(constant.remark) /** 简介 */, infoAssist: storage.get(constant.infoAssist) /** 获赞 */,
followCount: storage.get(constant.followCount) /** 关注 */,
fanCount: storage.get(constant.fanCount) /** 粉丝 */,
remark: storage.get(constant.remark) /** 签名 */,
}, },
mutations: { mutations: {
SET_BIRTHDAY: (state, birthday) => { SET_BIRTHDAY: (state, birthday) => {
state.birthday = birthday; state.birthday = birthday;
storage.set(constant.birthday, birthday);
}, },
SET_doingsStatus: (state, doingsStatus) => { SET_doingsStatus: (state, doingsStatus) => {
state.doingsStatus = doingsStatus; state.doingsStatus = doingsStatus;
storage.set(constant.doingsStatus, doingsStatus);
}, },
SET_infoName: (state, infoName) => { SET_infoName: (state, infoName) => {
state.infoName = infoName; state.infoName = infoName;
storage.set(constant.infoName, infoName);
}, },
SET_infoSchool: (state, infoSchool) => { SET_infoSchool: (state, infoSchool) => {
state.infoSchool = infoSchool; state.infoSchool = infoSchool;
storage.set(constant.infoSchool, infoSchool);
}, },
SET_infoDepartment: (state, infoDepartment) => { SET_infoDepartment: (state, infoDepartment) => {
state.infoDepartment = infoDepartment; state.infoDepartment = infoDepartment;
storage.set(constant.infoDepartment, infoDepartment);
}, },
SET_infoGrade: (state, infoGrade) => { SET_infoGrade: (state, infoGrade) => {
state.infoGrade = infoGrade; state.infoGrade = infoGrade;
storage.set(constant.infoGrade, infoGrade);
}, },
SET_infoCode: (state, infoCode) => { SET_infoCode: (state, infoCode) => {
state.infoCode = infoCode; state.infoCode = infoCode;
storage.set(constant.infoCode, infoCode);
}, },
SET_infoDocument: (state, infoDocument) => { SET_infoDocument: (state, infoDocument) => {
state.infoDocument = infoDocument; state.infoDocument = infoDocument;
storage.set(constant.infoDocument, infoDocument);
}, },
SET_auditInfo: (state, auditInfo) => { SET_auditInfo: (state, auditInfo) => {
state.auditInfo = auditInfo; state.auditInfo = auditInfo;
storage.set(constant.auditInfo, auditInfo);
}, },
SET_infoRank: (state, infoRank) => { SET_infoRank: (state, infoRank) => {
state.infoRank = infoRank; state.infoRank = infoRank;
storage.set(constant.infoRank, infoRank);
}, },
SET_infoCoin: (state, infoCoin) => { SET_infoCoin: (state, infoCoin) => {
state.infoCoin = infoCoin; state.infoCoin = infoCoin;
storage.set(constant.infoCoin, infoCoin);
}, },
SET_infoActive: (state, infoActive) => { SET_infoActive: (state, infoActive) => {
state.infoActive = infoActive; state.infoActive = infoActive;
storage.set(constant.infoActive, infoActive);
}, },
SET_infoAssist: (state, infoAssist) => {
state.infoAssist = infoAssist;
storage.set(constant.infoAssist, infoAssist);
},
SET_followCount: (state, followCount) => {
state.followCount = followCount;
storage.set(constant.followCount, followCount);
},
SET_fanCount: (state, fanCount) => {
state.fanCount = fanCount;
storage.set(constant.fanCount, fanCount);
},
SET_remark: (state, remark) => { SET_remark: (state, remark) => {
state.remark = remark; state.remark = remark;
storage.set(constant.remark, remark);
}, },
}, },
@ -73,8 +103,6 @@ const user = {
getUserInfo() getUserInfo()
.then((res) => { .then((res) => {
const userInfo = res.data; const userInfo = res.data;
console.log("res", res);
const infoDocument = ref([]); const infoDocument = ref([]);
infoDocument.value = infoDocument.value =
userInfo == null || userInfo == null ||
@ -83,6 +111,7 @@ const user = {
? defaultAvatar ? defaultAvatar
: userInfo.infoDocument; : userInfo.infoDocument;
if (userInfo) { if (userInfo) {
console.log("userInfo:",userInfo);
commit("SET_BIRTHDAY", userInfo.birthday); commit("SET_BIRTHDAY", userInfo.birthday);
commit("SET_doingsStatus", userInfo.doingsStatus); commit("SET_doingsStatus", userInfo.doingsStatus);
commit("SET_infoName", userInfo.infoName); commit("SET_infoName", userInfo.infoName);
@ -95,6 +124,9 @@ const user = {
commit("SET_infoRank", userInfo.infoRank); commit("SET_infoRank", userInfo.infoRank);
commit("SET_infoCoin", userInfo.infoCoin); commit("SET_infoCoin", userInfo.infoCoin);
commit("SET_infoActive", userInfo.infoActive); commit("SET_infoActive", userInfo.infoActive);
commit("SET_infoAssist", userInfo.infoAssist);
commit("SET_followCount", userInfo.followCount);
commit("SET_fanCount", userInfo.fanCount);
commit("SET_remark", userInfo.remark); commit("SET_remark", userInfo.remark);
} }
@ -108,4 +140,4 @@ const user = {
}, },
}; };
export default user; export default userInfo;

View File

@ -1,8 +1,30 @@
const constant = { const constant = {
avatar: 'vuex_avatar', avatar: "vuex_avatar",
name: 'vuex_name', name: "vuex_name",
roles: 'vuex_roles', roles: "vuex_roles",
permissions: 'vuex_permissions' permissions: "vuex_permissions",
} nickName: "vuex_nickName",
// userInfo
sex: "vuex_sex",
QNDomain: "vuex_QNDomain",
phoneType: "vuex_phoneType",
// userInfo
birthday: "vuex_birthday",
doingsStatus: "vuex_doingsStatus",
infoName: "vuex_infoName",
infoSchool: "vuex_infoSchool",
infoDepartment: "vuex_infoDepartment",
infoGrade: "vuex_infoGrade",
infoCode: "vuex_infoCode",
infoDocument: "vuex_infoDocument",
auditInfo: "vuex_auditInfo",
infoRank: "vuex_infoRank",
infoCoin: "vuex_infoCoin",
infoActive: "vuex_infoActive",
infoAssist: "vuex_infoAssist",
followCount: "vuex_followCount",
fanCount: "vuex_fanCount",
remark: "vuex_remark",
};
export default constant export default constant;

13
utils/dict.js Normal file
View File

@ -0,0 +1,13 @@
import { ref } from 'vue'
import store from '@/store'
import { getDicts } from "@/api/system/dict/data"
const sex_dict = ref([])
export const getDictLabelByValue = (dictInfo, state) => {
return getDicts(dictInfo).then(e => {
const dict = e.data.find((dict) => dict.dictValue === state);
return dict ? dict : '未知状态';
});
};

View File

@ -7,6 +7,8 @@ const tu21 = ref(QNDomain + "home/icon/image/png/tu2-1_20240531153239639.png")
const tu22 = ref(QNDomain + "home/icon/image/png/tu2-2_20240531163115818.png") const tu22 = ref(QNDomain + "home/icon/image/png/tu2-2_20240531163115818.png")
//定位 //定位
const tu51 = ref(QNDomain + "home/icon/image/png/tu5-1_20240601124004353.png") const tu51 = ref(QNDomain + "home/icon/image/png/tu5-1_20240601124004353.png")
const tu51addres = ref(QNDomain + "home/icon/image/png/addres_20240609145253989.png")
const tu512 = ref(QNDomain + "home/icon/image/png/tu5-1-2_20240605120128566.png") const tu512 = ref(QNDomain + "home/icon/image/png/tu5-1-2_20240605120128566.png")
//开始 //开始
const tu52 = ref(QNDomain + "home/icon/image/png/tu5-2_20240601124010403.png") const tu52 = ref(QNDomain + "home/icon/image/png/tu5-2_20240601124010403.png")
@ -14,6 +16,8 @@ const tu522 = ref(QNDomain + "home/icon/image/png/tu5-2-2_20240605120128561.png"
//结束 //结束
const tu53 = ref(QNDomain + "home/icon/image/png/tu5-3_20240601124016641.png") const tu53 = ref(QNDomain + "home/icon/image/png/tu5-3_20240601124016641.png")
const tu532 = ref(QNDomain + "home/icon/image/png/tu5-3-2_20240605120128565.png") const tu532 = ref(QNDomain + "home/icon/image/png/tu5-3-2_20240605120128565.png")
//V
const tu36 = ref(QNDomain + "home/icon/image/png/tu3-6_20240609144044085.png")
const tu23 = ref(QNDomain + "home/icon/image/png/tu2-3_20240602093303793.png") const tu23 = ref(QNDomain + "home/icon/image/png/tu2-3_20240602093303793.png")
@ -34,6 +38,8 @@ const sb2x1 = ref(QNDomain + "home/icon/image/png/审核失败@2x1_2024060510110
//+背景图 //+背景图
const bjt = ref(QNDomain + "home/icon/image/png/bjtu_20240608121940341.png"); const bjt = ref(QNDomain + "home/icon/image/png/bjtu_20240608121940341.png");
const bjt2 = ref(QNDomain + "home/icon/image/png/minebackpng2_20240608144208172.png"); const bjt2 = ref(QNDomain + "home/icon/image/png/minebackpng2_20240608144208172.png");
//修改
const mupdate = ref(QNDomain + "home/icon/image/png/mineupdate_20240609132053217.png");
//+更多 //+更多
const gd11 = ref(QNDomain + "home/icon/image/png/gd11_20240608080819017.png"); const gd11 = ref(QNDomain + "home/icon/image/png/gd11_20240608080819017.png");
@ -58,13 +64,13 @@ const hd14 = ref(QNDomain + "home/icon/image/png/hd14_20240608080819057.png");
const hd15 = ref(QNDomain + "home/icon/image/png/hd15_20240608080819068.png"); const hd15 = ref(QNDomain + "home/icon/image/png/hd15_20240608080819068.png");
export default { export default {
tu21,tu22,tu23,tu2x, tu21,tu22,tu23,tu2x,
tu51,tu52,tu53,tu512,tu522,tu532, tu51,tu51addres,tu52,tu53,tu512,tu522,tu532,tu36,
sh2x,sh2x1, sh2x,sh2x1,
cg2x21,cg2x22, cg2x21,cg2x22,
sb2x,sb2x1, sb2x,sb2x1,
//我的界面 //我的界面
bjt,bjt2, bjt,bjt2,mupdate,
gd11,gd12,gd13,gd14,gd21,gd22,gd23,gd24, gd11,gd12,gd13,gd14,gd21,gd22,gd23,gd24,
ht11,ht12,ht13,ht14,ht15, ht11,ht12,ht13,ht14,ht15,
hd11,hd12,hd13,hd14,hd15, hd11,hd12,hd13,hd14,hd15,

View File

@ -4,7 +4,32 @@ import constant from './constant'
let storageKey = 'storage_data' let storageKey = 'storage_data'
// 存储节点变量名 // 存储节点变量名
let storageNodeKeys = [constant.avatar, constant.name, constant.roles, constant.permissions] let storageNodeKeys = [
constant.avatar,
constant.nickName,
constant.sex,
constant.QNDomain,
constant.phoneType,
// userInfo
constant.birthday,
constant.doingsStatus,
constant.infoName,
constant.infoSchool,
constant.infoDepartment,
constant.infoGrade,
constant.infoCode,
constant.infoDocument,
constant.auditInfo,
constant.infoRank,
constant.infoCoin,
constant.infoActive,
constant.infoAssist,
constant.followCount,
constant.fanCount,
constant.remark,
constant.name, constant.roles, constant.permissions]
const storage = { const storage = {
set: function(key, value) { set: function(key, value) {