Compare commits
5 Commits
83a1078a4d
...
production
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3f49c11caf | ||
|
|
044b88dbf7 | ||
|
|
ca4b038e14 | ||
|
|
d2e77e66fc | ||
|
|
ab3d9985c8 |
114
App.vue
@@ -3,26 +3,29 @@ import { reactive, inject, onMounted } from 'vue';
|
|||||||
import { onLaunch, onShow, onHide } from '@dcloudio/uni-app';
|
import { onLaunch, onShow, onHide } from '@dcloudio/uni-app';
|
||||||
import useUserStore from './stores/useUserStore';
|
import useUserStore from './stores/useUserStore';
|
||||||
import useDictStore from './stores/useDictStore';
|
import useDictStore from './stores/useDictStore';
|
||||||
const { $api, navTo, appendScriptTagElement } = inject('globalFunction');
|
const { $api, navTo, appendScriptTagElement, aes_Decrypt, sm2_Decrypt } = inject('globalFunction');
|
||||||
import config from '@/config.js';
|
import config from '@/config.js';
|
||||||
|
|
||||||
|
const appword = 'aKd20dbGdFvmuwrt'; // 固定值
|
||||||
|
|
||||||
onLaunch((options) => {
|
onLaunch((options) => {
|
||||||
useUserStore().initSeesionId(); //更新
|
getUserInfo();
|
||||||
|
// useUserStore().initSeesionId(); //更新
|
||||||
useDictStore().getDictData();
|
useDictStore().getDictData();
|
||||||
uni.hideTabBar();
|
// uni.hideTabBar();
|
||||||
// 登录
|
// 登录
|
||||||
let token = uni.getStorageSync('token') || ''; // 同步获取 缓存信息
|
// let token = uni.getStorageSync('token') || ''; // 同步获取 缓存信息
|
||||||
if (token) {
|
// if (token) {
|
||||||
useUserStore()
|
// useUserStore()
|
||||||
.loginSetToken(token)
|
// .loginSetToken(token)
|
||||||
.then(() => {
|
// .then(() => {
|
||||||
$api.msg('登录成功');
|
// $api.msg('登录成功');
|
||||||
});
|
// });
|
||||||
} else {
|
// } else {
|
||||||
uni.redirectTo({
|
// uni.redirectTo({
|
||||||
url: '/pages/login/login',
|
// url: '/pages/login/login',
|
||||||
});
|
// });
|
||||||
}
|
// }
|
||||||
});
|
});
|
||||||
|
|
||||||
onMounted(() => {});
|
onMounted(() => {});
|
||||||
@@ -34,6 +37,87 @@ onShow(() => {
|
|||||||
onHide(() => {
|
onHide(() => {
|
||||||
console.log('App Hide');
|
console.log('App Hide');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function getUserInfo() {
|
||||||
|
lightAppJssdk.user.getUserInfoWithEncryptedParamByAppId({
|
||||||
|
appId: 'qdsrgznrgpp', // 接入方在成功创建应用后自动生成
|
||||||
|
success: function (data) {
|
||||||
|
if (data == '未登录') onLoginApp();
|
||||||
|
else {
|
||||||
|
if (typeof data == 'string') data = JSON.parse(data);
|
||||||
|
|
||||||
|
const sm2_privateKey = '7e14966df4ecd4241ed082ef716d82b52113cb5899ebdc704a98844d0a32b0dc';
|
||||||
|
let sm2_encrypt_result = data.data;
|
||||||
|
let sm2_decrypt_result = sm2_Decrypt(sm2_encrypt_result, sm2_privateKey);
|
||||||
|
|
||||||
|
if (typeof sm2_decrypt_result == 'string') sm2_decrypt_result = JSON.parse(sm2_decrypt_result);
|
||||||
|
|
||||||
|
// 其次,对sm2解密后的结果进行 aes解密
|
||||||
|
// aes解密需要用到 appword , 为固定值,使用示例代码中的即可
|
||||||
|
let aes_encrypt_result = sm2_decrypt_result.data;
|
||||||
|
let aes_decrypt_result = aes_Decrypt(aes_encrypt_result, appword);
|
||||||
|
|
||||||
|
// 加密
|
||||||
|
loginCallback(aes_decrypt_result);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
fail: function (data) {
|
||||||
|
console.log('err', data);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 使用jssdk调用登录页面
|
||||||
|
*/
|
||||||
|
function onLoginApp() {
|
||||||
|
lightAppJssdk.user.loginapp({
|
||||||
|
success: function (data) {
|
||||||
|
if (data == '未登录') {
|
||||||
|
//取消登录或登录失败,关闭页面
|
||||||
|
oncloseWindow();
|
||||||
|
} else {
|
||||||
|
getUserInfo();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
fail: function (data) {
|
||||||
|
//关闭页面
|
||||||
|
oncloseWindow();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 关闭容器
|
||||||
|
*/
|
||||||
|
function oncloseWindow() {
|
||||||
|
lightAppJssdk.navigation.close({
|
||||||
|
success: function (data) {},
|
||||||
|
fail: function (data) {},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function loginCallback(userInfo) {
|
||||||
|
let params = {
|
||||||
|
username: userInfo,
|
||||||
|
};
|
||||||
|
$api.createRequest('/app/login', params, 'post').then((resData) => {
|
||||||
|
useUserStore()
|
||||||
|
.loginSetToken(resData.token)
|
||||||
|
.then((resume) => {
|
||||||
|
if (resume.data.jobTitleId) {
|
||||||
|
useUserStore().initSeesionId();
|
||||||
|
uni.reLaunch({
|
||||||
|
url: '/pages/index/index',
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
uni.redirectTo({
|
||||||
|
url: '/pages/login/login',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import useUserStore from "../stores/useUserStore";
|
import useUserStore from "../stores/useUserStore";
|
||||||
import {
|
import {
|
||||||
|
request,
|
||||||
createRequest,
|
createRequest,
|
||||||
uploadFile
|
uploadFile
|
||||||
} from "../utils/request";
|
} from "../utils/request";
|
||||||
@@ -7,9 +8,6 @@ import streamRequest, {
|
|||||||
chatRequest
|
chatRequest
|
||||||
} from "../utils/streamRequest.js";
|
} from "../utils/streamRequest.js";
|
||||||
|
|
||||||
const sm4 = typeof window.sm4 !== 'undefined' ? window.sm4 :
|
|
||||||
(typeof window.smCrypto !== 'undefined' ? window.smCrypto.sm4 : null);
|
|
||||||
|
|
||||||
export const CloneDeep = (props) => {
|
export const CloneDeep = (props) => {
|
||||||
if (typeof props !== 'object' || props === null) {
|
if (typeof props !== 'object' || props === null) {
|
||||||
return props
|
return props
|
||||||
@@ -554,52 +552,31 @@ function isEmptyObject(obj) {
|
|||||||
return obj && typeof obj === 'object' && !Array.isArray(obj) && Object.keys(obj).length === 0;
|
return obj && typeof obj === 'object' && !Array.isArray(obj) && Object.keys(obj).length === 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function aes_Decrypt(word, key) {
|
||||||
export function sm4Decrypt(key, value, mode = "hex") {
|
var key = CryptoJS.enc.Utf8.parse(key) //转为128bit
|
||||||
try {
|
var srcs = CryptoJS.enc.Hex.parse(word) //转为16进制
|
||||||
if (key.length !== 32) {
|
var str = CryptoJS.enc.Base64.stringify(srcs) //变为Base64编码的字符串
|
||||||
alert('密钥必须是32位16进制字符串(128位)');
|
var decrypt = CryptoJS.AES.decrypt(str, key, {
|
||||||
return;
|
mode: CryptoJS.mode.ECB,
|
||||||
}
|
spadding: CryptoJS.pad.Pkcs7
|
||||||
const decrypted = sm4.decrypt(value, key, {
|
})
|
||||||
mode: 'ecb',
|
return decrypt.toString(CryptoJS.enc.Utf8)
|
||||||
cipherType: mode === 'hex' ? 'hex' : 'base64',
|
|
||||||
padding: 'pkcs#5'
|
|
||||||
});
|
|
||||||
|
|
||||||
return decrypted
|
|
||||||
|
|
||||||
} catch (e) {
|
|
||||||
console.log('解密失败')
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function sm4Encrypt(key, value, mode = "hex") {
|
|
||||||
try {
|
|
||||||
|
|
||||||
if (key.length !== 32) {
|
export function sm2_Decrypt(word, key) {
|
||||||
alert('密钥必须是32位16进制字符串(128位)');
|
return SM.decrypt(word, key);
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const encrypted = sm4.encrypt(value, key, {
|
|
||||||
mode: 'ecb',
|
|
||||||
cipherType: mode === 'hex' ? 'hex' : 'base64',
|
|
||||||
padding: 'pkcs#5'
|
|
||||||
});
|
|
||||||
|
|
||||||
return encrypted
|
|
||||||
|
|
||||||
} catch (e) {
|
|
||||||
console.log('加密失败')
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function sm2_Encrypt(word, key) {
|
||||||
|
return SM.encrypt(word, key);
|
||||||
|
}
|
||||||
|
|
||||||
export const $api = {
|
export const $api = {
|
||||||
msg,
|
msg,
|
||||||
prePage,
|
prePage,
|
||||||
sleep,
|
sleep,
|
||||||
|
request,
|
||||||
createRequest,
|
createRequest,
|
||||||
streamRequest,
|
streamRequest,
|
||||||
chatRequest,
|
chatRequest,
|
||||||
@@ -607,7 +584,8 @@ export const $api = {
|
|||||||
uploadFile,
|
uploadFile,
|
||||||
formatFileSize,
|
formatFileSize,
|
||||||
sendingMiniProgramMessage,
|
sendingMiniProgramMessage,
|
||||||
copyText
|
copyText,
|
||||||
|
aes_Decrypt,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -637,5 +615,7 @@ export default {
|
|||||||
insertSortData,
|
insertSortData,
|
||||||
isInWechatMiniProgramWebview,
|
isInWechatMiniProgramWebview,
|
||||||
isEmptyObject,
|
isEmptyObject,
|
||||||
sm4Decrypt,
|
aes_Decrypt,
|
||||||
|
sm2_Decrypt,
|
||||||
|
sm2_Encrypt
|
||||||
}
|
}
|
||||||
@@ -1,37 +1,17 @@
|
|||||||
<template>
|
<template>
|
||||||
<view>
|
<view>{{ salaryText }}</view>
|
||||||
<view v-if="!minSalary || !maxSalary">面议</view>
|
|
||||||
<view v-else class="texts">
|
|
||||||
<text class="num">{{ minSalary / 1000 }}</text>
|
|
||||||
<text class="unit">k</text>
|
|
||||||
<text class="gap">~</text>
|
|
||||||
<text class="num">{{ maxSalary / 1000 }}</text>
|
|
||||||
<text class="unit">k</text>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { inject, computed } from "vue";
|
import { inject, computed } from 'vue';
|
||||||
import useDictStore from "../../stores/useDictStore";
|
import useDictStore from '../../stores/useDictStore';
|
||||||
const { minSalary, maxSalary } = defineProps(["minSalary", "maxSalary"]);
|
const { minSalary, maxSalary, isMonth } = defineProps(['minSalary', 'maxSalary', 'isMonth']);
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
const salaryText = computed(() => {
|
||||||
.texts{
|
if (!minSalary || !maxSalary) return '面议';
|
||||||
letter-spacing: 1rpx;
|
if (isMonth) {
|
||||||
}
|
return `${minSalary}-${maxSalary}/月`;
|
||||||
.num{
|
}
|
||||||
font-size: 32rpx;
|
return `${minSalary / 1000}k-${maxSalary / 1000}k`;
|
||||||
font-weight: 500;
|
});
|
||||||
}
|
</script>
|
||||||
.unit{
|
|
||||||
font-size: 24rpx;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
.gap{
|
|
||||||
font-size: 32rpx;
|
|
||||||
font-weight: 500;
|
|
||||||
margin-left: 5rpx;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted, computed } from 'vue';
|
import { ref, defineProps, onMounted, computed } from 'vue';
|
||||||
import { useReadMsg } from '@/stores/useReadMsg';
|
import { useReadMsg } from '@/stores/useReadMsg';
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
currentpage: {
|
currentpage: {
|
||||||
|
|||||||
19
config.js
@@ -1,9 +1,8 @@
|
|||||||
export default {
|
export default {
|
||||||
// baseUrl: 'http://39.98.44.136:8080', // 测试
|
baseUrl: 'https://fw.rc.qingdao.gov.cn/rgpp-api/api', // 内网
|
||||||
baseUrl: 'https://qd.zhaopinzao8dian.com/api', // 测试
|
// baseUrl: 'https://qd.zhaopinzao8dian.com/api', // 测试
|
||||||
// baseUrl: 'http://10.133.17.161:8080/api', // 测试
|
// baseUrl: "http://192.168.98.110:18181",
|
||||||
// baseUrl: 'http://192.168.3.19:8080', // 测试
|
// baseUrl: "http://192.168.3.19:8080",
|
||||||
// baseUrl: 'http://39.98.44.136:6009', // 测试
|
|
||||||
// sseAI+
|
// sseAI+
|
||||||
// StreamBaseURl: 'http://39.98.44.136:8000',
|
// StreamBaseURl: 'http://39.98.44.136:8000',
|
||||||
StreamBaseURl: 'https://qd.zhaopinzao8dian.com/ai',
|
StreamBaseURl: 'https://qd.zhaopinzao8dian.com/ai',
|
||||||
@@ -19,6 +18,10 @@ export default {
|
|||||||
OnlyUseCachedDB: false,
|
OnlyUseCachedDB: false,
|
||||||
// 使用模拟定位
|
// 使用模拟定位
|
||||||
UsingSimulatedPositioning: true,
|
UsingSimulatedPositioning: true,
|
||||||
|
// 私钥
|
||||||
|
pubilcKey: '',
|
||||||
|
// 公钥
|
||||||
|
privateKey: '',
|
||||||
// 应用信息
|
// 应用信息
|
||||||
appInfo: {
|
appInfo: {
|
||||||
// 应用名称
|
// 应用名称
|
||||||
@@ -72,11 +75,5 @@ export default {
|
|||||||
title: '找工作,用 AI 更高效|青岛市智能求职平台',
|
title: '找工作,用 AI 更高效|青岛市智能求职平台',
|
||||||
desc: '融合海量岗位、智能简历匹配、竞争力分析,助你精准锁定理想职位!',
|
desc: '融合海量岗位、智能简历匹配、竞争力分析,助你精准锁定理想职位!',
|
||||||
imgUrl: 'https://qd.zhaopinzao8dian.com/file/csn/qd_shareLogo.jpg',
|
imgUrl: 'https://qd.zhaopinzao8dian.com/file/csn/qd_shareLogo.jpg',
|
||||||
},
|
|
||||||
sm4Config: {
|
|
||||||
key: '86C63180C1306ABC4D8F989E0A0BC9F3',
|
|
||||||
mode: 'ECB', // default
|
|
||||||
iv: 'UISwD9fW6cFh9SNS', // default is null
|
|
||||||
cipherType: 'base64' // default is base64
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -49,6 +49,7 @@ export function useTTSPlayer() {
|
|||||||
const newUtterance = new SpeechSynthesisUtterance(filteredText); // Use filtered text
|
const newUtterance = new SpeechSynthesisUtterance(filteredText); // Use filtered text
|
||||||
utteranceRef.value = newUtterance;
|
utteranceRef.value = newUtterance;
|
||||||
|
|
||||||
|
newUtterance.lang = 'zh-CN';
|
||||||
newUtterance.rate = options.rate || 1;
|
newUtterance.rate = options.rate || 1;
|
||||||
newUtterance.pitch = options.pitch || 1;
|
newUtterance.pitch = options.pitch || 1;
|
||||||
if (options.voice) {
|
if (options.voice) {
|
||||||
|
|||||||
10
index.html
@@ -18,15 +18,17 @@
|
|||||||
</script>
|
</script>
|
||||||
<title></title>
|
<title></title>
|
||||||
<!-- vconsole -->
|
<!-- vconsole -->
|
||||||
<!-- <script src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js"></script>
|
<script src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js"></script>
|
||||||
<script>
|
<script>
|
||||||
var vConsole = new window.VConsole();
|
var vConsole = new window.VConsole();
|
||||||
vConsole.destroy();
|
vConsole.destroy();
|
||||||
</script> -->
|
</script>
|
||||||
<!-- 爱山东jssdk -->
|
<!-- 爱山东jssdk -->
|
||||||
<!-- <script type="text/javascript" src="https://isdapp.shandong.gov.cn/jmopen/jssdk/index.js"></script> -->
|
<script type="text/javascript" src="https://isdapp.shandong.gov.cn/jmopen/jssdk/index.js"></script>
|
||||||
|
|
||||||
<script type="module" src="./static/js/sm4.min.js"></script>
|
<script type="text/javascript" src="./static/encryption/aes.js"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript" src="./static/encryption/SM.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<!-- <body> -->
|
<!-- <body> -->
|
||||||
<div id="app"><!--app-html--></div>
|
<div id="app"><!--app-html--></div>
|
||||||
|
|||||||
@@ -80,7 +80,7 @@
|
|||||||
"locale": "zh-Hans",
|
"locale": "zh-Hans",
|
||||||
"h5": {
|
"h5": {
|
||||||
"router": {
|
"router": {
|
||||||
"base": "/app/",
|
"base": "./",
|
||||||
"mode": "hash"
|
"mode": "hash"
|
||||||
},
|
},
|
||||||
"title": "青岛智慧就业服务",
|
"title": "青岛智慧就业服务",
|
||||||
@@ -97,6 +97,9 @@
|
|||||||
"serviceHost": ""
|
"serviceHost": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"devServer": {
|
||||||
|
"https": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"dependencies": {
|
|
||||||
"pixi.js": "^7.4.3"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -37,8 +37,8 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="des-card" style="margin-top: 24rpx">
|
<view class="des-card" style="margin-top: 24rpx">
|
||||||
<view class="fl_box fl_justbet">
|
<view class="fl_box fl_justbet">
|
||||||
<view style="white-space:nowrap">求职意向岗位</view>
|
<view>求职意向岗位</view>
|
||||||
<view class="line_1" style="padding-left:40rpx" >{{ userInfo.jobIntention || userInfo.jobTitle?.join(',') || '-' }}</view>
|
<view>{{ userInfo.jobIntention || "-" }}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="fl_box fl_justbet">
|
<view class="fl_box fl_justbet">
|
||||||
<view>毕业学校</view>
|
<view>毕业学校</view>
|
||||||
|
|||||||
534
pages.json
@@ -1,284 +1,288 @@
|
|||||||
{
|
{
|
||||||
"pages": [
|
"pages": [
|
||||||
//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||||||
|
{
|
||||||
|
"path": "pages/index/index",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "青岛智慧就业平台",
|
||||||
|
// #ifdef H5
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
// #endif
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/mine/mine",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "我的",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/msglog/msglog",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "消息",
|
||||||
|
"navigationStyle": "custom",
|
||||||
|
"enablePullDownRefresh": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/careerfair/careerfair",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "招聘会",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/login/login",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "AI+就业服务程序",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/nearby/nearby",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "附近",
|
||||||
|
"navigationBarBackgroundColor": "#4778EC",
|
||||||
|
"navigationBarTextStyle": "white",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/chat/chat",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "AI+",
|
||||||
|
"navigationBarBackgroundColor": "#4778EC",
|
||||||
|
"navigationBarTextStyle": "white",
|
||||||
|
"enablePullDownRefresh": false,
|
||||||
|
// #ifdef H5
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
//#endif
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/search/search",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"subpackages": [
|
||||||
|
{
|
||||||
|
"root": "packageA",
|
||||||
|
"pages": [
|
||||||
{
|
{
|
||||||
"path": "pages/index/index",
|
"path": "pages/choiceness/choiceness",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "青岛智慧就业平台",
|
"navigationBarTitleText": "精选",
|
||||||
// #ifdef H5
|
"navigationBarBackgroundColor": "#4778EC",
|
||||||
"navigationStyle": "custom"
|
"navigationBarTextStyle": "white",
|
||||||
// #endif
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"path": "pages/mine/mine",
|
"path": "pages/post/post",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "我的",
|
"navigationBarTitleText": "职位详情",
|
||||||
"navigationStyle": "custom"
|
"navigationBarBackgroundColor": "#4778EC",
|
||||||
}
|
"navigationBarTextStyle": "white",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"path": "pages/msglog/msglog",
|
"path": "pages/UnitDetails/UnitDetails",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "消息",
|
"navigationBarTitleText": "单位详情",
|
||||||
"navigationStyle": "custom",
|
"navigationBarBackgroundColor": "#4778EC",
|
||||||
"enablePullDownRefresh": false
|
"navigationBarTextStyle": "white",
|
||||||
}
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"path": "pages/careerfair/careerfair",
|
"path": "pages/exhibitors/exhibitors",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "招聘会",
|
"navigationBarTitleText": "参展单位",
|
||||||
"navigationStyle": "custom"
|
"navigationBarBackgroundColor": "#4778EC",
|
||||||
}
|
"navigationBarTextStyle": "white",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"path": "pages/login/login",
|
"path": "pages/myResume/myResume",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "AI+就业服务程序",
|
"navigationBarTitleText": "我的简历",
|
||||||
"navigationStyle": "custom"
|
"navigationBarBackgroundColor": "#FFFFFF",
|
||||||
}
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"path": "pages/nearby/nearby",
|
"path": "pages/vCard/vCard",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "附近",
|
"navigationBarTitleText": "点子名片",
|
||||||
"navigationBarBackgroundColor": "#4778EC",
|
"navigationBarBackgroundColor": "#FFFFFF",
|
||||||
"navigationBarTextStyle": "white",
|
"navigationStyle": "custom"
|
||||||
"navigationStyle": "custom"
|
}
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"path": "pages/chat/chat",
|
"path": "pages/Intendedposition/Intendedposition",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "AI+",
|
"navigationBarTitleText": "投递记录",
|
||||||
"navigationBarBackgroundColor": "#4778EC",
|
"navigationBarBackgroundColor": "#FFFFFF"
|
||||||
"navigationBarTextStyle": "white",
|
}
|
||||||
"enablePullDownRefresh": false,
|
|
||||||
// #ifdef H5
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
//#endif
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"path": "pages/search/search",
|
"path": "pages/collection/collection",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "",
|
"navigationBarTitleText": "我的收藏",
|
||||||
"navigationStyle": "custom"
|
"navigationBarBackgroundColor": "#FFFFFF",
|
||||||
}
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/browseJob/browseJob",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "我的浏览",
|
||||||
|
"navigationBarBackgroundColor": "#FFFFFF",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/addPosition/addPosition",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "添加岗位",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/selectDate/selectDate",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/personalInfo/personalInfo",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "个人信息",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/jobExpect/jobExpect",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "求职期望",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/workExp/workExp",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "工作经历",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/reservation/reservation",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "我的预约",
|
||||||
|
"navigationBarBackgroundColor": "#FFFFFF"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/choicenessList/choicenessList",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "精选企业",
|
||||||
|
"navigationBarBackgroundColor": "#FFFFFF",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/newJobPosition/newJobPosition",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "新职位推荐",
|
||||||
|
"navigationBarBackgroundColor": "#FFFFFF"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/systemNotification/systemNotification",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "系统通知",
|
||||||
|
"navigationBarBackgroundColor": "#FFFFFF"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/tiktok/tiktok",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "",
|
||||||
|
"navigationBarBackgroundColor": "#FFFFFF",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/moreJobs/moreJobs",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "更多岗位",
|
||||||
|
"navigationBarBackgroundColor": "#FFFFFF"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"subpackages": [{
|
}
|
||||||
"root": "packageA",
|
],
|
||||||
"pages": [{
|
"tabBar": {
|
||||||
"path": "pages/choiceness/choiceness",
|
"custom": true,
|
||||||
"style": {
|
"display": "none",
|
||||||
"navigationBarTitleText": "精选",
|
"color": "#5E5F60",
|
||||||
"navigationBarBackgroundColor": "#4778EC",
|
"selectedColor": "#256BFA",
|
||||||
"navigationBarTextStyle": "white",
|
"borderStyle": "black",
|
||||||
"navigationStyle": "custom"
|
"backgroundColor": "#ffffff",
|
||||||
}
|
"midButton": {
|
||||||
},
|
"width": "50px",
|
||||||
{
|
"height": "50px",
|
||||||
"path": "pages/post/post",
|
"backgroundImage": "static/tabbar/logo2copy.png"
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "职位详情",
|
|
||||||
"navigationBarBackgroundColor": "#4778EC",
|
|
||||||
"navigationBarTextStyle": "white",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/UnitDetails/UnitDetails",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "单位详情",
|
|
||||||
"navigationBarBackgroundColor": "#4778EC",
|
|
||||||
"navigationBarTextStyle": "white",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/exhibitors/exhibitors",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "参展单位",
|
|
||||||
"navigationBarBackgroundColor": "#4778EC",
|
|
||||||
"navigationBarTextStyle": "white",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/myResume/myResume",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "我的简历",
|
|
||||||
"navigationBarBackgroundColor": "#FFFFFF",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/vCard/vCard",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "点子名片",
|
|
||||||
"navigationBarBackgroundColor": "#FFFFFF",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/Intendedposition/Intendedposition",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "投递记录",
|
|
||||||
"navigationBarBackgroundColor": "#FFFFFF"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/collection/collection",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "我的收藏",
|
|
||||||
"navigationBarBackgroundColor": "#FFFFFF",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/browseJob/browseJob",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "我的浏览",
|
|
||||||
"navigationBarBackgroundColor": "#FFFFFF",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/addPosition/addPosition",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "添加岗位",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/selectDate/selectDate",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/personalInfo/personalInfo",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "个人信息",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/jobExpect/jobExpect",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "求职期望",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/workExp/workExp",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "工作经历",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/reservation/reservation",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "我的预约",
|
|
||||||
"navigationBarBackgroundColor": "#FFFFFF"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/choicenessList/choicenessList",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "精选企业",
|
|
||||||
"navigationBarBackgroundColor": "#FFFFFF",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/newJobPosition/newJobPosition",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "新职位推荐",
|
|
||||||
"navigationBarBackgroundColor": "#FFFFFF"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/systemNotification/systemNotification",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "系统通知",
|
|
||||||
"navigationBarBackgroundColor": "#FFFFFF"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/tiktok/tiktok",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "",
|
|
||||||
"navigationBarBackgroundColor": "#FFFFFF",
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/moreJobs/moreJobs",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "更多岗位",
|
|
||||||
"navigationBarBackgroundColor": "#FFFFFF"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}],
|
|
||||||
"tabBar": {
|
|
||||||
"custom": true,
|
|
||||||
"display": "none",
|
|
||||||
"color": "#5E5F60",
|
|
||||||
"selectedColor": "#256BFA",
|
|
||||||
"borderStyle": "black",
|
|
||||||
"backgroundColor": "#ffffff",
|
|
||||||
"midButton": {
|
|
||||||
"width": "50px",
|
|
||||||
"height": "50px",
|
|
||||||
"backgroundImage": "static/tabbar/logo2copy.png"
|
|
||||||
},
|
|
||||||
"list": [{
|
|
||||||
"pagePath": "pages/index/index",
|
|
||||||
"iconPath": "static/tabbar/calendar.png",
|
|
||||||
"selectedIconPath": "static/tabbar/calendared.png",
|
|
||||||
"text": "职位"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"pagePath": "pages/careerfair/careerfair",
|
|
||||||
"iconPath": "static/tabbar/post.png",
|
|
||||||
"selectedIconPath": "static/tabbar/posted.png",
|
|
||||||
"text": "招聘会"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"pagePath": "pages/chat/chat",
|
|
||||||
"iconPath": "static/tabbar/logo3.png",
|
|
||||||
"selectedIconPath": "static/tabbar/logo3.png"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"pagePath": "pages/msglog/msglog",
|
|
||||||
"iconPath": "static/tabbar/chat4.png",
|
|
||||||
"selectedIconPath": "static/tabbar/chat4ed.png",
|
|
||||||
"text": "消息"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"pagePath": "pages/mine/mine",
|
|
||||||
"iconPath": "static/tabbar/mine.png",
|
|
||||||
"selectedIconPath": "static/tabbar/mined.png",
|
|
||||||
"text": "我的"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"globalStyle": {
|
"list": [
|
||||||
"navigationBarTextStyle": "black",
|
{
|
||||||
"navigationBarTitleText": "uni-app",
|
"pagePath": "pages/index/index",
|
||||||
"navigationBarBackgroundColor": "#F8F8F8",
|
"iconPath": "static/tabbar/calendar.png",
|
||||||
"backgroundColor": "#F8F8F8",
|
"selectedIconPath": "static/tabbar/calendared.png",
|
||||||
// "enablePullDownRefresh": false,
|
"text": "职位"
|
||||||
// "navigationStyle": "custom",
|
},
|
||||||
"rpxCalcBaseDeviceWidth": 375,
|
{
|
||||||
"rpxCalcMaxDeviceWidth": 750,
|
"pagePath": "pages/careerfair/careerfair",
|
||||||
"rpxCalcIncludeWidth": 750
|
"iconPath": "static/tabbar/post.png",
|
||||||
},
|
"selectedIconPath": "static/tabbar/posted.png",
|
||||||
"uniIdRouter": {}
|
"text": "招聘会"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pagePath": "pages/chat/chat",
|
||||||
|
"iconPath": "static/tabbar/logo3.png",
|
||||||
|
"selectedIconPath": "static/tabbar/logo3.png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pagePath": "pages/msglog/msglog",
|
||||||
|
"iconPath": "static/tabbar/chat4.png",
|
||||||
|
"selectedIconPath": "static/tabbar/chat4ed.png",
|
||||||
|
"text": "消息"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pagePath": "pages/mine/mine",
|
||||||
|
"iconPath": "static/tabbar/mine.png",
|
||||||
|
"selectedIconPath": "static/tabbar/mined.png",
|
||||||
|
"text": "我的"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"globalStyle": {
|
||||||
|
"navigationBarTextStyle": "black",
|
||||||
|
"navigationBarTitleText": "uni-app",
|
||||||
|
"navigationBarBackgroundColor": "#F8F8F8",
|
||||||
|
"backgroundColor": "#F8F8F8",
|
||||||
|
// "enablePullDownRefresh": false,
|
||||||
|
// "navigationStyle": "custom",
|
||||||
|
"rpxCalcBaseDeviceWidth": 375,
|
||||||
|
"rpxCalcMaxDeviceWidth": 750,
|
||||||
|
"rpxCalcIncludeWidth": 750
|
||||||
|
},
|
||||||
|
"uniIdRouter": {}
|
||||||
}
|
}
|
||||||
@@ -250,6 +250,8 @@ import {
|
|||||||
ref,
|
ref,
|
||||||
inject,
|
inject,
|
||||||
nextTick,
|
nextTick,
|
||||||
|
defineProps,
|
||||||
|
defineEmits,
|
||||||
onMounted,
|
onMounted,
|
||||||
onUnmounted,
|
onUnmounted,
|
||||||
toRaw,
|
toRaw,
|
||||||
@@ -446,7 +448,7 @@ const scrollToBottom = throttle(function () {
|
|||||||
}, 500);
|
}, 500);
|
||||||
|
|
||||||
function getGuess() {
|
function getGuess() {
|
||||||
$api.chatRequest('/app/chat/guest', { sessionId: chatSessionID.value }, 'POST').then((res) => {
|
$api.chatRequest('/guest', { sessionId: chatSessionID.value }, 'POST').then((res) => {
|
||||||
guessList.value = res.data;
|
guessList.value = res.data;
|
||||||
showGuess.value = true;
|
showGuess.value = true;
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, inject } from 'vue';
|
import { ref, inject, defineEmits } from 'vue';
|
||||||
const emit = defineEmits(['onSend']);
|
const emit = defineEmits(['onSend']);
|
||||||
const { $api } = inject('globalFunction');
|
const { $api } = inject('globalFunction');
|
||||||
const popup = ref(null);
|
const popup = ref(null);
|
||||||
|
|||||||
@@ -1,345 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view class="container">
|
|
||||||
<!-- 用于承载 PIXI 的 Canvas -->
|
|
||||||
<!-- #ifdef H5 -->
|
|
||||||
<view id="matchCanvas" class="match-canvas"></view>
|
|
||||||
<!-- #endif -->
|
|
||||||
<!-- #ifndef H5 -->
|
|
||||||
<canvas type="webgl" id="matchCanvas" canvas-id="matchCanvas" class="match-canvas" />
|
|
||||||
<!-- #endif -->
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script setup>
|
|
||||||
import { onMounted, onUnmounted, ref } from "vue";
|
|
||||||
import * as PIXI from "pixi.js";
|
|
||||||
|
|
||||||
const appRef = ref(null); // 存储 PIXI 应用实例
|
|
||||||
|
|
||||||
// 标签数据:包含名称、颜色、大小、位置(角度、半径)
|
|
||||||
const mockTags = [
|
|
||||||
{
|
|
||||||
name: "医生",
|
|
||||||
bgColor: 0x0069fe,
|
|
||||||
fontColor: 0xffffff,
|
|
||||||
size: 17,
|
|
||||||
opacity: 1.0,
|
|
||||||
angle: 0,
|
|
||||||
radius: 0,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "工程师",
|
|
||||||
bgColor: 0x87e2ec,
|
|
||||||
fontColor: 0xffffff,
|
|
||||||
size: 14,
|
|
||||||
opacity: 1,
|
|
||||||
angle: -Math.PI / 2, // 12点方向
|
|
||||||
radius: 60,
|
|
||||||
tailRotation: Math.PI / 2, // 拖尾向下
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "建筑师",
|
|
||||||
bgColor: 0xffebeb,
|
|
||||||
fontColor: 0xf86e6e,
|
|
||||||
size: 11.5,
|
|
||||||
opacity: 1,
|
|
||||||
angle: -Math.PI / 4, // 1点方向
|
|
||||||
radius: 115,
|
|
||||||
tailRotation: (3 * Math.PI) / 4, // 拖尾向左下
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "律师",
|
|
||||||
bgColor: 0x21ea85,
|
|
||||||
fontColor: 0xffffff,
|
|
||||||
size: 15,
|
|
||||||
opacity: 1,
|
|
||||||
angle: -Math.PI / 10, // 2点方向
|
|
||||||
radius: 130,
|
|
||||||
tailRotation: (3 * Math.PI) / 4, // 拖尾向左下
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "记者",
|
|
||||||
bgColor: 0xebf3ff,
|
|
||||||
fontColor: 0x1d71ef,
|
|
||||||
size: 12,
|
|
||||||
opacity: 1,
|
|
||||||
angle: Math.PI / 120, // 3点方向
|
|
||||||
radius: 130,
|
|
||||||
tailRotation: Math.PI, // 拖尾向左
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "程序员",
|
|
||||||
bgColor: 0xff9d57,
|
|
||||||
fontColor: 0xffffff,
|
|
||||||
size: 14.5,
|
|
||||||
opacity: 0.6,
|
|
||||||
angle: Math.PI / 9, // 4点方向
|
|
||||||
radius: 120,
|
|
||||||
tailRotation: (5 * Math.PI) / 4, // 拖尾向左上
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "摄影师",
|
|
||||||
bgColor: 0xd8e5fe,
|
|
||||||
fontColor: 0x1d71ef,
|
|
||||||
size: 11,
|
|
||||||
opacity: 1,
|
|
||||||
angle: Math.PI / 3.2, // 5点方向
|
|
||||||
radius: 75,
|
|
||||||
tailRotation: (3 * Math.PI) / 2, // 拖尾向上
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "设计师",
|
|
||||||
bgColor: 0xff9400,
|
|
||||||
fontColor: 0xffffff,
|
|
||||||
size: 14,
|
|
||||||
opacity: 1,
|
|
||||||
angle: (2 * Math.PI) / 3, // 7点方向
|
|
||||||
radius: 92,
|
|
||||||
tailRotation: (7 * Math.PI) / 4, // 拖尾向右上
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "心理咨询师",
|
|
||||||
bgColor: 0xebf3ff,
|
|
||||||
fontColor: 0x1d71ef,
|
|
||||||
size: 10.5,
|
|
||||||
opacity: 1,
|
|
||||||
angle: (5.4 * Math.PI) / 6, // 8点方向
|
|
||||||
radius: 110,
|
|
||||||
tailRotation: 0, // 拖尾向右
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "护士",
|
|
||||||
bgColor: 0xff6969,
|
|
||||||
fontColor: 0xffffff,
|
|
||||||
size: 15,
|
|
||||||
opacity: 1,
|
|
||||||
angle: (6.3 * Math.PI) / 6, // 10点方向
|
|
||||||
radius: 110,
|
|
||||||
tailRotation: Math.PI / 4, // 拖尾向右下
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "会计",
|
|
||||||
bgColor: 0xfce9c9,
|
|
||||||
fontColor: 0xfbc55f,
|
|
||||||
size: 13,
|
|
||||||
opacity: 1,
|
|
||||||
angle: (7.2 * Math.PI) / 6, // 11点方向
|
|
||||||
radius: 115,
|
|
||||||
tailRotation: Math.PI / 4, // 拖尾向右下
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
onMounted(async () => {
|
|
||||||
if (appRef.value) return;
|
|
||||||
// 初始化 PIXI 应用
|
|
||||||
const canvas = document.getElementById("matchCanvas");
|
|
||||||
const sw = canvas.clientWidth;
|
|
||||||
const sh = canvas.clientHeight;
|
|
||||||
|
|
||||||
const app = new PIXI.Application({
|
|
||||||
backgroundAlpha: 0,
|
|
||||||
antialias: true,
|
|
||||||
autoDensity: true,
|
|
||||||
width: sw,
|
|
||||||
height: sh,
|
|
||||||
backgroundColor: 0xf5f7fa,
|
|
||||||
});
|
|
||||||
appRef.value = app;
|
|
||||||
|
|
||||||
canvas.appendChild(app.view);
|
|
||||||
|
|
||||||
// 标签容器(管理所有标签)
|
|
||||||
const tagsContainer = new PIXI.Container();
|
|
||||||
app.stage.addChild(tagsContainer);
|
|
||||||
|
|
||||||
// 存储已放置标签的信息(位置、尺寸、浮动动画参数)
|
|
||||||
const placedTags = [];
|
|
||||||
|
|
||||||
for (let i = 0; i < mockTags.length; i++) {
|
|
||||||
const { angle, radius, tailRotation, ...tagData } = mockTags[i];
|
|
||||||
const x = sw / 2 + radius * Math.cos(angle);
|
|
||||||
const y = sh / 2 + radius * Math.sin(angle);
|
|
||||||
const tag = createTag(tagData, x, y, placedTags, app, i);
|
|
||||||
|
|
||||||
// 上下浮动动画
|
|
||||||
const originalY = tag.y;
|
|
||||||
let floatOffset = Math.random() * Math.PI * 2;
|
|
||||||
let floatSpeed = 0.01 + Math.random() * 0.02;
|
|
||||||
let floatRange = 2 + Math.random() * 2;
|
|
||||||
|
|
||||||
// 为标签添加彗星拖尾效果
|
|
||||||
if (radius > 0) {
|
|
||||||
// 中心标签不需要拖尾
|
|
||||||
const tail = createCometTail(tagData.bgColor, tailRotation, tag);
|
|
||||||
|
|
||||||
// 修正:使用 addChildAt 将拖尾添加到最底层
|
|
||||||
tag.addChildAt(tail, 0);
|
|
||||||
|
|
||||||
// 为拖尾添加单独的动画
|
|
||||||
app.ticker.add(() => {
|
|
||||||
if (tail.updateTail) {
|
|
||||||
tail.updateTail();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// 使用PIXI ticker进行动画
|
|
||||||
app.ticker.add(() => {
|
|
||||||
floatOffset += floatSpeed;
|
|
||||||
tag.y = originalY + Math.sin(floatOffset) * floatRange;
|
|
||||||
});
|
|
||||||
|
|
||||||
tagsContainer.addChild(tag);
|
|
||||||
placedTags.push({ ...tagData, bounds: tag.getBounds() });
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// 销毁时清理资源
|
|
||||||
onUnmounted(() => {
|
|
||||||
if (appRef.value) {
|
|
||||||
appRef.value.destroy(true, true);
|
|
||||||
appRef.value = null;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// 创建彗星拖尾效果
|
|
||||||
function createCometTail(bgColor, tailRotation, tag) {
|
|
||||||
const tailGroup = new PIXI.Container();
|
|
||||||
|
|
||||||
// 拖尾直接放在标签中心位置
|
|
||||||
tailGroup.x = 0;
|
|
||||||
tailGroup.y = 0;
|
|
||||||
|
|
||||||
const tail = new PIXI.Graphics();
|
|
||||||
tailGroup.addChild(tail);
|
|
||||||
|
|
||||||
// 拖尾参数
|
|
||||||
const baseLength = 45; // 基础长度
|
|
||||||
const startWidth = tag.width * 0.9; // 起始宽度(长边)
|
|
||||||
const endWidth = 35; // 末端宽度(短边)
|
|
||||||
|
|
||||||
// 拖尾动画参数
|
|
||||||
let breathPhase = Math.random() * Math.PI * 2;
|
|
||||||
const breathSpeed = 0.04;
|
|
||||||
|
|
||||||
// 更新拖尾的呼吸动画
|
|
||||||
tailGroup.updateTail = () => {
|
|
||||||
breathPhase += breathSpeed;
|
|
||||||
const breathScale = 0.85 + 0.15 * Math.sin(breathPhase);
|
|
||||||
tail.clear();
|
|
||||||
|
|
||||||
// 绘制梯形拖尾
|
|
||||||
const currentLength = baseLength * breathScale;
|
|
||||||
|
|
||||||
// 计算拖尾的四个顶点
|
|
||||||
// 长边在标签中心,水平方向(与标签长边平行)
|
|
||||||
const startLeft = { x: -startWidth / 2, y: 0 };
|
|
||||||
const startRight = { x: startWidth / 2, y: 0 };
|
|
||||||
|
|
||||||
// 短边在拖尾方向,保持水平
|
|
||||||
const endCenter = {
|
|
||||||
x: Math.cos(tailRotation) * currentLength,
|
|
||||||
y: Math.sin(tailRotation) * currentLength,
|
|
||||||
};
|
|
||||||
|
|
||||||
const endLeft = {
|
|
||||||
x: endCenter.x - endWidth / 2,
|
|
||||||
y: endCenter.y,
|
|
||||||
};
|
|
||||||
|
|
||||||
const endRight = {
|
|
||||||
x: endCenter.x + endWidth / 2,
|
|
||||||
y: endCenter.y,
|
|
||||||
};
|
|
||||||
|
|
||||||
// 使用分段绘制实现渐变
|
|
||||||
const segments = 6;
|
|
||||||
for (let i = 0; i < segments; i++) {
|
|
||||||
const progress = i / segments;
|
|
||||||
const nextProgress = (i + 1) / segments;
|
|
||||||
|
|
||||||
// 计算分段的位置 - 保持长边水平
|
|
||||||
const segmentStartLeft = {
|
|
||||||
x: startLeft.x * (1 - progress) + endLeft.x * progress,
|
|
||||||
y: startLeft.y * (1 - progress) + endLeft.y * progress,
|
|
||||||
};
|
|
||||||
const segmentStartRight = {
|
|
||||||
x: startRight.x * (1 - progress) + endRight.x * progress,
|
|
||||||
y: startRight.y * (1 - progress) + endRight.y * progress,
|
|
||||||
};
|
|
||||||
const segmentEndLeft = {
|
|
||||||
x: startLeft.x * (1 - nextProgress) + endLeft.x * nextProgress,
|
|
||||||
y: startLeft.y * (1 - nextProgress) + endLeft.y * nextProgress,
|
|
||||||
};
|
|
||||||
const segmentEndRight = {
|
|
||||||
x: startRight.x * (1 - nextProgress) + endRight.x * nextProgress,
|
|
||||||
y: startRight.y * (1 - nextProgress) + endRight.y * nextProgress,
|
|
||||||
};
|
|
||||||
|
|
||||||
// 透明度从0.4渐变到0
|
|
||||||
const segmentAlpha = 0.4 * (1 - progress);
|
|
||||||
|
|
||||||
tail.beginFill(bgColor, segmentAlpha);
|
|
||||||
tail.moveTo(segmentStartLeft.x, segmentStartLeft.y);
|
|
||||||
tail.lineTo(segmentEndLeft.x, segmentEndLeft.y);
|
|
||||||
tail.lineTo(segmentEndRight.x, segmentEndRight.y);
|
|
||||||
tail.lineTo(segmentStartRight.x, segmentStartRight.y);
|
|
||||||
tail.lineTo(segmentStartLeft.x, segmentStartLeft.y);
|
|
||||||
tail.endFill();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// 初始绘制
|
|
||||||
tailGroup.updateTail();
|
|
||||||
|
|
||||||
return tailGroup;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 创建单个标签(背景+文本)
|
|
||||||
function createTag(tagData, x, y, placedTags, app, index) {
|
|
||||||
const tagGroup = new PIXI.Container();
|
|
||||||
tagGroup.x = x;
|
|
||||||
tagGroup.y = y;
|
|
||||||
|
|
||||||
// 先创建文本以测量宽度
|
|
||||||
const text = new PIXI.Text(tagData.name, {
|
|
||||||
fontFamily: "Arial",
|
|
||||||
fontSize: tagData.size,
|
|
||||||
fill: tagData.fontColor,
|
|
||||||
});
|
|
||||||
text.anchor.set(0.5);
|
|
||||||
|
|
||||||
// 根据文字个数动态计算宽度
|
|
||||||
const padding = 10;
|
|
||||||
const charWidth = tagData.size * 1.5;
|
|
||||||
const charHeight = tagData.size * 1.3;
|
|
||||||
const textWidth = tagData.name.length * charWidth;
|
|
||||||
|
|
||||||
let width = textWidth + padding * 2;
|
|
||||||
if (index == 0) width = tagData.size * 4.5 + 10;
|
|
||||||
|
|
||||||
const height = charHeight + padding;
|
|
||||||
|
|
||||||
// 背景(圆角矩形)
|
|
||||||
const bg = new PIXI.Graphics();
|
|
||||||
bg.beginFill(tagData.bgColor, tagData.opacity ?? 1);
|
|
||||||
bg.drawRoundedRect(-width / 2, -height / 2, width, height, 20);
|
|
||||||
bg.endFill();
|
|
||||||
tagGroup.addChild(bg);
|
|
||||||
|
|
||||||
// 添加文本
|
|
||||||
tagGroup.addChild(text);
|
|
||||||
|
|
||||||
return tagGroup;
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.container {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.match-canvas {
|
|
||||||
width: 100%;
|
|
||||||
height: 350rpx; /* 可根据需求调整高度 */
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -148,14 +148,14 @@
|
|||||||
<!-- 筛选 -->
|
<!-- 筛选 -->
|
||||||
<select-filter ref="selectFilterModel"></select-filter>
|
<select-filter ref="selectFilterModel"></select-filter>
|
||||||
|
|
||||||
<view class="maskFristEntry" v-if="maskFristEntry">
|
<!-- <view class="maskFristEntry" v-if="maskFristEntry">
|
||||||
<view class="entry-content">
|
<view class="entry-content">
|
||||||
<text class="text1">左滑查看视频</text>
|
<text class="text1">左滑查看视频</text>
|
||||||
<text class="text2">左滑查看视频</text>
|
<text class="text2">左滑查看视频</text>
|
||||||
<view class="goExperience">去体验</view>
|
<view class="goExperience">去体验</view>
|
||||||
<view class="maskFristEntry-Close" @click="closeFristEntry">1</view>
|
<view class="maskFristEntry-Close" @click="closeFristEntry">1</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view> -->
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -183,7 +183,7 @@ const waterfallsFlowRef = ref(null);
|
|||||||
const loadmoreRef = ref(null);
|
const loadmoreRef = ref(null);
|
||||||
const conditionSearch = ref({});
|
const conditionSearch = ref({});
|
||||||
const waterfallcolumn = ref(2);
|
const waterfallcolumn = ref(2);
|
||||||
const maskFristEntry = ref(true);
|
const maskFristEntry = ref(false);
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
tabIndex: 'all',
|
tabIndex: 'all',
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -47,13 +47,11 @@
|
|||||||
import { reactive, inject, watch, ref, onMounted } from 'vue';
|
import { reactive, inject, watch, ref, onMounted } from 'vue';
|
||||||
import Tabbar from '@/components/tabbar/midell-box.vue';
|
import Tabbar from '@/components/tabbar/midell-box.vue';
|
||||||
import { onLoad, onShow } from '@dcloudio/uni-app';
|
import { onLoad, onShow } from '@dcloudio/uni-app';
|
||||||
import IndexRefactor from './components/index-refactor.vue';
|
|
||||||
import IndexOne from './components/index-one.vue';
|
import IndexOne from './components/index-one.vue';
|
||||||
import IndexTwo from './components/index-two.vue';
|
import IndexTwo from './components/index-two.vue';
|
||||||
const loadedMap = reactive([false, false]);
|
const loadedMap = reactive([false, false]);
|
||||||
const swiperRefs = [ref(null), ref(null)];
|
const swiperRefs = [ref(null), ref(null)];
|
||||||
// const components = [IndexOne, IndexTwo];
|
const components = [IndexOne, IndexTwo];
|
||||||
const components = [IndexRefactor, IndexTwo];
|
|
||||||
import { storeToRefs } from 'pinia';
|
import { storeToRefs } from 'pinia';
|
||||||
import { useReadMsg } from '@/stores/useReadMsg';
|
import { useReadMsg } from '@/stores/useReadMsg';
|
||||||
const { unreadCount } = storeToRefs(useReadMsg());
|
const { unreadCount } = storeToRefs(useReadMsg());
|
||||||
@@ -69,7 +67,7 @@ onLoad(() => {
|
|||||||
|
|
||||||
onShow(() => {
|
onShow(() => {
|
||||||
// 获取消息列表
|
// 获取消息列表
|
||||||
useReadMsg().fetchMessages();
|
// useReadMsg().fetchMessages();
|
||||||
});
|
});
|
||||||
|
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
|
|||||||
@@ -109,7 +109,6 @@
|
|||||||
</template>
|
</template>
|
||||||
</tabcontrolVue>
|
</tabcontrolVue>
|
||||||
<SelectJobs ref="selectJobsModel"></SelectJobs>
|
<SelectJobs ref="selectJobsModel"></SelectJobs>
|
||||||
<view class="backdoor" @click="loginbackdoor">后门</view>
|
|
||||||
</AppLayout>
|
</AppLayout>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -126,7 +125,7 @@ const { getDictSelectOption, oneDictData } = useDictStore();
|
|||||||
const openSelectPopup = inject('openSelectPopup');
|
const openSelectPopup = inject('openSelectPopup');
|
||||||
// status
|
// status
|
||||||
const selectJobsModel = ref();
|
const selectJobsModel = ref();
|
||||||
const tabCurrent = ref(0);
|
const tabCurrent = ref(1);
|
||||||
const salay = [2, 5, 10, 15, 20, 25, 30, 50, 80, 100];
|
const salay = [2, 5, 10, 15, 20, 25, 30, 50, 80, 100];
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
station: [],
|
station: [],
|
||||||
@@ -150,7 +149,8 @@ const fromValue = reactive({
|
|||||||
});
|
});
|
||||||
|
|
||||||
onLoad((parmas) => {
|
onLoad((parmas) => {
|
||||||
// getTreeselect();
|
console.log(parmas);
|
||||||
|
getTreeselect();
|
||||||
});
|
});
|
||||||
|
|
||||||
onMounted(() => {});
|
onMounted(() => {});
|
||||||
@@ -244,23 +244,6 @@ function getTreeselect() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function loginbackdoor() {
|
|
||||||
$api.createRequest('/app/mock/login', {}, 'post').then((resData) => {
|
|
||||||
$api.msg('模拟帐号密码测试登录成功');
|
|
||||||
loginSetToken(resData.token).then((resume) => {
|
|
||||||
if (resume.data.jobTitleId) {
|
|
||||||
// 设置推荐列表,每次退出登录都需要更新
|
|
||||||
useUserStore().initSeesionId();
|
|
||||||
uni.reLaunch({
|
|
||||||
url: '/pages/index/index',
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
nextStep();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// 登录
|
// 登录
|
||||||
function loginTest() {
|
function loginTest() {
|
||||||
// uni.share({
|
// uni.share({
|
||||||
@@ -307,12 +290,6 @@ function complete() {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="stylus" scoped>
|
<style lang="stylus" scoped>
|
||||||
.backdoor{
|
|
||||||
position: fixed;
|
|
||||||
left: 0;
|
|
||||||
top: 500rpx;
|
|
||||||
background: red
|
|
||||||
}
|
|
||||||
.input-nx
|
.input-nx
|
||||||
position: relative
|
position: relative
|
||||||
border-bottom: 2rpx solid #EBEBEB
|
border-bottom: 2rpx solid #EBEBEB
|
||||||
|
|||||||
@@ -45,7 +45,9 @@
|
|||||||
<text v-if="userInfo.jobTitle.length - 1 !== index">|</text>
|
<text v-if="userInfo.jobTitle.length - 1 !== index">|</text>
|
||||||
</text>
|
</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="top-btn button-click">电子名片</view>
|
<view class="top-btn button-click" >
|
||||||
|
电子名片
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="card-main">
|
<view class="card-main">
|
||||||
<view class="main-title">服务专区</view>
|
<view class="main-title">服务专区</view>
|
||||||
@@ -130,6 +132,7 @@ const isAbove90 = (percent) => parseFloat(percent) < 90;
|
|||||||
|
|
||||||
function getUserstatistics() {
|
function getUserstatistics() {
|
||||||
$api.createRequest('/app/user/statistics').then((resData) => {
|
$api.createRequest('/app/user/statistics').then((resData) => {
|
||||||
|
console.log(resData);
|
||||||
counts.value = resData.data;
|
counts.value = resData.data;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
168
static/encryption/SM.js
Normal file
1354
static/encryption/aes.js
Normal file
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 987 B |
|
Before Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 683 B |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 5.3 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 9.7 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 778 B |
|
Before Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 514 B |
|
Before Width: | Height: | Size: 295 B |
|
Before Width: | Height: | Size: 555 B |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 5.7 KiB |
|
Before Width: | Height: | Size: 5.7 KiB |
7
static/js/sm4.min.js
vendored
@@ -180,7 +180,7 @@ const useChatGroupDBStore = defineStore("messageGroup", () => {
|
|||||||
resolve();
|
resolve();
|
||||||
}
|
}
|
||||||
|
|
||||||
$api.streamRequest('/app/chat/chat', params, onDataReceived, onError, onComplete);
|
$api.streamRequest('/chat', params, onDataReceived, onError, onComplete);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
reject(err);
|
reject(err);
|
||||||
@@ -230,7 +230,7 @@ const useChatGroupDBStore = defineStore("messageGroup", () => {
|
|||||||
|
|
||||||
// 云端数据
|
// 云端数据
|
||||||
function getHistory() {
|
function getHistory() {
|
||||||
$api.chatRequest('/app/chat/getHistory').then((res) => {
|
$api.chatRequest('/getHistory').then((res) => {
|
||||||
if (!res.data.list.length) return
|
if (!res.data.list.length) return
|
||||||
let tabel = parseHistory(res.data.list)
|
let tabel = parseHistory(res.data.list)
|
||||||
if (tabel && tabel.length) {
|
if (tabel && tabel.length) {
|
||||||
@@ -250,7 +250,7 @@ const useChatGroupDBStore = defineStore("messageGroup", () => {
|
|||||||
const params = {
|
const params = {
|
||||||
sessionId: chatSessionID.value
|
sessionId: chatSessionID.value
|
||||||
}
|
}
|
||||||
$api.chatRequest('/app/chat/detail', params, 'GET', loading).then((res) => {
|
$api.chatRequest('/detail', params, 'GET', loading).then((res) => {
|
||||||
let list = parseHistoryDetail(res.data.list, chatSessionID.value)
|
let list = parseHistoryDetail(res.data.list, chatSessionID.value)
|
||||||
if (list.length) {
|
if (list.length) {
|
||||||
baseDB.db.add(massageName.value, list).then((ids) => {
|
baseDB.db.add(massageName.value, list).then((ids) => {
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<view
|
<view
|
||||||
v-for="(item, index) in data.column"
|
v-for="(item, index) in data.column"
|
||||||
:key="index"
|
:key="index"
|
||||||
class="waterfalls-flow-column "
|
class="waterfalls-flow-column"
|
||||||
:id="`waterfalls_flow_column_${index + 1}`"
|
:id="`waterfalls_flow_column_${index + 1}`"
|
||||||
:msg="msg"
|
:msg="msg"
|
||||||
:style="{ width: w, 'margin-left': index == 0 ? 0 : m }"
|
:style="{ width: w, 'margin-left': index == 0 ? 0 : m }"
|
||||||
|
|||||||
113
utils/request.js
@@ -1,20 +1,76 @@
|
|||||||
import config from "@/config.js"
|
import config from "@/config.js"
|
||||||
import useUserStore from '@/stores/useUserStore';
|
|
||||||
import {
|
import {
|
||||||
sm4Decrypt,
|
sm2_Decrypt,
|
||||||
sm4Encrypt
|
sm2_Encrypt
|
||||||
} from '../common/globalFunction';
|
} from '@/common/globalFunction';
|
||||||
|
import useUserStore from '@/stores/useUserStore';
|
||||||
|
|
||||||
|
|
||||||
const needToEncrypt = [
|
|
||||||
["post", "/app/login"],
|
export function request({
|
||||||
["get", "/app/user/resume"],
|
url,
|
||||||
["post", "/app/user/resume"],
|
method = 'GET',
|
||||||
["post", "/app/user/experience/edit"],
|
data = {},
|
||||||
["post", "/app/user/experience/delete"],
|
load = false,
|
||||||
["get", "/app/user/experience/getSingle/{value}"],
|
header = {}
|
||||||
["get", "/app/user/experience/list"]
|
} = {}) {
|
||||||
]
|
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
if (load) {
|
||||||
|
uni.showLoading({
|
||||||
|
title: '请稍候',
|
||||||
|
mask: true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
let Authorization = ''
|
||||||
|
if (useUserStore().token) {
|
||||||
|
Authorization = `${useUserStore().userInfo.token}${useUserStore().token}`
|
||||||
|
}
|
||||||
|
uni.request({
|
||||||
|
url: config.baseUrl + url,
|
||||||
|
method,
|
||||||
|
data: data,
|
||||||
|
header: {
|
||||||
|
'Authorization': Authorization || '',
|
||||||
|
},
|
||||||
|
success: resData => {
|
||||||
|
// 响应拦截
|
||||||
|
if (resData.statusCode === 200) {
|
||||||
|
const {
|
||||||
|
code,
|
||||||
|
msg
|
||||||
|
} = resData.data
|
||||||
|
if (code === 200) {
|
||||||
|
resolve(resData.data)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
uni.showToast({
|
||||||
|
title: msg,
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
if (resData.data?.code === 401 || resData.data?.code === 402) {
|
||||||
|
useUserStore().logOut()
|
||||||
|
uni.showToast({
|
||||||
|
title: '登录过期,请重新登录',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
const err = new Error('请求出现异常,请联系工作人员')
|
||||||
|
err.error = resData
|
||||||
|
reject(err)
|
||||||
|
},
|
||||||
|
fail: err => reject(err),
|
||||||
|
complete() {
|
||||||
|
if (load) {
|
||||||
|
uni.hideLoading();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param url String,请求的地址,默认:none
|
* @param url String,请求的地址,默认:none
|
||||||
@@ -38,44 +94,15 @@ export function createRequest(url, data = {}, method = 'GET', loading = false, h
|
|||||||
|
|
||||||
const header = headers || {};
|
const header = headers || {};
|
||||||
header["Authorization"] = encodeURIComponent(Authorization);
|
header["Authorization"] = encodeURIComponent(Authorization);
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
|
||||||
// 检查当前请求是否需要加密
|
|
||||||
const isEncrypt = needToEncrypt.some(item => {
|
|
||||||
const matchMethod = item[0].toLowerCase() === method.toLowerCase();
|
|
||||||
const matchUrl = item[1].includes('{') ?
|
|
||||||
url.startsWith(item[1].split('/{')[0]) // 检查动态路径的前缀
|
|
||||||
:
|
|
||||||
item[1] === url; // 检查静态路径
|
|
||||||
return matchMethod && matchUrl;
|
|
||||||
});
|
|
||||||
|
|
||||||
let requestData = data;
|
|
||||||
|
|
||||||
if (isEncrypt) {
|
|
||||||
const jsonData = JSON.stringify(data);
|
|
||||||
const encryptedBody = sm4Encrypt(config.sm4Config.key, jsonData);
|
|
||||||
requestData = {
|
|
||||||
encrypted: true,
|
|
||||||
encryptedData: encryptedBody,
|
|
||||||
timestamp: Date.now()
|
|
||||||
};
|
|
||||||
}
|
|
||||||
// ------------------------------------------------------------------
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
uni.request({
|
uni.request({
|
||||||
url: config.baseUrl + url,
|
url: config.baseUrl + url,
|
||||||
method: method,
|
method: method,
|
||||||
data: requestData,
|
data: data,
|
||||||
header,
|
header,
|
||||||
success: resData => {
|
success: resData => {
|
||||||
// 响应拦截
|
// 响应拦截
|
||||||
if (resData.statusCode === 200) {
|
if (resData.statusCode === 200) {
|
||||||
if (resData.data.encrypted) {
|
|
||||||
const decryptedData = sm4Decrypt(config
|
|
||||||
.sm4Config.key, resData.data.encryptedData)
|
|
||||||
resData.data = JSON.parse(decryptedData)
|
|
||||||
}
|
|
||||||
const {
|
const {
|
||||||
code,
|
code,
|
||||||
msg
|
msg
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ export default function StreamRequest(url, data = {}, onDataReceived, onError, o
|
|||||||
};
|
};
|
||||||
return new Promise(async (resolve, reject) => {
|
return new Promise(async (resolve, reject) => {
|
||||||
try {
|
try {
|
||||||
const response = await fetch(config.baseUrl + url, {
|
const response = await fetch(config.StreamBaseURl + url, {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
headers,
|
headers,
|
||||||
body: JSON.stringify(data)
|
body: JSON.stringify(data)
|
||||||
@@ -46,7 +46,6 @@ export default function StreamRequest(url, data = {}, onDataReceived, onError, o
|
|||||||
let lines = buffer.split("\n");
|
let lines = buffer.split("\n");
|
||||||
buffer = lines.pop(); // 可能是不完整的 JSON 片段,留待下次解析
|
buffer = lines.pop(); // 可能是不完整的 JSON 片段,留待下次解析
|
||||||
for (let line of lines) {
|
for (let line of lines) {
|
||||||
line = line.slice(5).trim()
|
|
||||||
if (line.startsWith("data: ")) {
|
if (line.startsWith("data: ")) {
|
||||||
const jsonData = line.slice(6).trim();
|
const jsonData = line.slice(6).trim();
|
||||||
if (jsonData === "[DONE]") {
|
if (jsonData === "[DONE]") {
|
||||||
@@ -105,7 +104,7 @@ export function chatRequest(url, data = {}, method = 'GET', loading = false, hea
|
|||||||
header["Authorization"] = encodeURIComponent(Authorization);
|
header["Authorization"] = encodeURIComponent(Authorization);
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
uni.request({
|
uni.request({
|
||||||
url: config.baseUrl + url,
|
url: config.StreamBaseURl + url,
|
||||||
method: method,
|
method: method,
|
||||||
data: data,
|
data: data,
|
||||||
header,
|
header,
|
||||||
|
|||||||