Compare commits
13 Commits
check-site
...
feat-huawe
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
86e43e3e6c | ||
|
|
bf09d8ad26 | ||
| 03aa6e099f | |||
| 4585fb6c07 | |||
| 4aeb7d04c4 | |||
|
|
067bbf6e2d | ||
|
|
3cef4b9987 | ||
| 97f6971bd0 | |||
| 526c813d8d | |||
| 29280f6f57 | |||
| 1c2fee28ec | |||
| 5b9114aeac | |||
| 2dfb2e0316 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,3 +2,4 @@
|
|||||||
/.hbuilderx
|
/.hbuilderx
|
||||||
/.idea
|
/.idea
|
||||||
/node_modules
|
/node_modules
|
||||||
|
/iconfont-preview.html
|
||||||
|
|||||||
356
common/js/ai-service.js
Normal file
356
common/js/ai-service.js
Normal file
@@ -0,0 +1,356 @@
|
|||||||
|
import http from './http.js'
|
||||||
|
import store from '@/store/index.js'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
/**
|
||||||
|
* 发送消息到Dify API
|
||||||
|
* @param {string} message 用户消息内容
|
||||||
|
* @param {Object} options 配置选项
|
||||||
|
* @returns {Promise}
|
||||||
|
*/
|
||||||
|
async sendMessage(message, options = {}) {
|
||||||
|
try {
|
||||||
|
// 获取AI配置
|
||||||
|
const aiConfig = store.getters.globalAIAgentConfig
|
||||||
|
|
||||||
|
// 构建Dify API请求参数
|
||||||
|
const params = {
|
||||||
|
url: '/api/ai/chat', // 后端代理接口
|
||||||
|
data: {
|
||||||
|
message: message,
|
||||||
|
conversation_id: options.conversationId || this.generateConversationId(),
|
||||||
|
user_id: store.state.memberInfo?.id || 'anonymous',
|
||||||
|
stream: options.stream || false, // 是否流式响应
|
||||||
|
// Dify API参数
|
||||||
|
inputs: {},
|
||||||
|
query: message,
|
||||||
|
response_mode: options.stream ? 'streaming' : 'blocking',
|
||||||
|
user: store.state.memberInfo?.id || 'anonymous'
|
||||||
|
},
|
||||||
|
header: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 如果有Dify配置,添加API密钥
|
||||||
|
if (aiConfig?.difyApiKey) {
|
||||||
|
params.header['Authorization'] = `Bearer ${aiConfig.difyApiKey}`
|
||||||
|
}
|
||||||
|
|
||||||
|
if (aiConfig?.difyBaseUrl) {
|
||||||
|
params.header['X-Dify-Url'] = aiConfig.difyBaseUrl
|
||||||
|
}
|
||||||
|
|
||||||
|
// 发送请求
|
||||||
|
const response = await http.sendRequest({
|
||||||
|
...params,
|
||||||
|
async: false // 使用Promise方式
|
||||||
|
})
|
||||||
|
|
||||||
|
return this.handleResponse(response, options)
|
||||||
|
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Dify API请求失败:', error)
|
||||||
|
throw new Error('AI服务暂时不可用,请稍后重试')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 流式消息处理
|
||||||
|
* @param {string} message 用户消息
|
||||||
|
* @param {Function} onChunk 流式数据回调
|
||||||
|
* @param {Function} onComplete 完成回调
|
||||||
|
*/
|
||||||
|
async sendStreamMessage(message, onChunk, onComplete) {
|
||||||
|
try {
|
||||||
|
const aiConfig = store.getters.globalAIAgentConfig
|
||||||
|
|
||||||
|
// 检查配置
|
||||||
|
if (!aiConfig?.difyBaseUrl || !aiConfig?.difyApiKey) {
|
||||||
|
throw new Error('未配置Dify服务')
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建WebSocket连接或使用Server-Sent Events
|
||||||
|
if (aiConfig?.difyWsUrl) {
|
||||||
|
return this.connectWebSocket(message, onChunk, onComplete)
|
||||||
|
} else {
|
||||||
|
// 使用HTTP流式请求
|
||||||
|
return this.sendHttpStream(message, onChunk, onComplete)
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (error) {
|
||||||
|
console.error('流式消息发送失败:', error)
|
||||||
|
throw error
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* WebSocket连接
|
||||||
|
*/
|
||||||
|
connectWebSocket(message, onChunk, onComplete) {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const aiConfig = store.getters.globalAIAgentConfig
|
||||||
|
const wsUrl = aiConfig.difyWsUrl
|
||||||
|
|
||||||
|
if (!wsUrl) {
|
||||||
|
reject(new Error('未配置WebSocket地址'))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// #ifdef H5
|
||||||
|
const ws = new WebSocket(wsUrl)
|
||||||
|
|
||||||
|
ws.onopen = () => {
|
||||||
|
// 发送消息
|
||||||
|
ws.send(JSON.stringify({
|
||||||
|
message: message,
|
||||||
|
user_id: store.state.memberInfo?.id || 'anonymous',
|
||||||
|
conversation_id: this.generateConversationId()
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
|
||||||
|
ws.onmessage = (event) => {
|
||||||
|
try {
|
||||||
|
const data = JSON.parse(event.data)
|
||||||
|
if (data.type === 'chunk' && onChunk) {
|
||||||
|
onChunk(data.content)
|
||||||
|
} else if (data.type === 'complete' && onComplete) {
|
||||||
|
onComplete(data.content)
|
||||||
|
ws.close()
|
||||||
|
resolve(data.content)
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error('WebSocket消息解析失败:', e)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ws.onerror = (error) => {
|
||||||
|
console.error('WebSocket连接错误:', error)
|
||||||
|
reject(error)
|
||||||
|
}
|
||||||
|
|
||||||
|
ws.onclose = () => {
|
||||||
|
console.log('WebSocket连接关闭')
|
||||||
|
}
|
||||||
|
// #endif
|
||||||
|
|
||||||
|
// #ifdef MP-WEIXIN || APP-PLUS
|
||||||
|
// 小程序和APP使用uni.connectSocket
|
||||||
|
uni.connectSocket({
|
||||||
|
url: wsUrl,
|
||||||
|
success: () => {
|
||||||
|
uni.onSocketOpen(() => {
|
||||||
|
uni.sendSocketMessage({
|
||||||
|
data: JSON.stringify({
|
||||||
|
message: message,
|
||||||
|
user_id: store.state.memberInfo?.id || 'anonymous',
|
||||||
|
conversation_id: this.generateConversationId()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
uni.onSocketMessage((res) => {
|
||||||
|
try {
|
||||||
|
const data = JSON.parse(res.data)
|
||||||
|
if (data.type === 'chunk' && onChunk) {
|
||||||
|
onChunk(data.content)
|
||||||
|
} else if (data.type === 'complete' && onComplete) {
|
||||||
|
onComplete(data.content)
|
||||||
|
uni.closeSocket()
|
||||||
|
resolve(data.content)
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error('WebSocket消息解析失败:', e)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
uni.onSocketError((error) => {
|
||||||
|
console.error('WebSocket连接错误:', error)
|
||||||
|
reject(error)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
fail: (error) => {
|
||||||
|
reject(error)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
// #endif
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* HTTP流式请求
|
||||||
|
*/
|
||||||
|
async sendHttpStream(message, onChunk, onComplete) {
|
||||||
|
const aiConfig = store.getters.globalAIAgentConfig
|
||||||
|
|
||||||
|
const params = {
|
||||||
|
url: '/api/ai/chat-stream',
|
||||||
|
data: {
|
||||||
|
message: message,
|
||||||
|
conversation_id: this.generateConversationId(),
|
||||||
|
user_id: store.state.memberInfo?.id || 'anonymous',
|
||||||
|
stream: true
|
||||||
|
},
|
||||||
|
header: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (aiConfig?.difyApiKey) {
|
||||||
|
params.header['Authorization'] = `Bearer ${aiConfig.difyApiKey}`
|
||||||
|
}
|
||||||
|
|
||||||
|
// 使用fetch API进行流式请求(H5环境)
|
||||||
|
// #ifdef H5
|
||||||
|
try {
|
||||||
|
const response = await fetch(`${aiConfig.difyBaseUrl}/chat-messages`, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
'Authorization': `Bearer ${aiConfig.difyApiKey}`
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
inputs: {},
|
||||||
|
query: message,
|
||||||
|
response_mode: 'streaming',
|
||||||
|
user: store.state.memberInfo?.id || 'anonymous'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
const reader = response.body.getReader()
|
||||||
|
const decoder = new TextDecoder()
|
||||||
|
let content = ''
|
||||||
|
|
||||||
|
while (true) {
|
||||||
|
const { done, value } = await reader.read()
|
||||||
|
if (done) break
|
||||||
|
|
||||||
|
const chunk = decoder.decode(value)
|
||||||
|
const lines = chunk.split('\n')
|
||||||
|
|
||||||
|
for (const line of lines) {
|
||||||
|
if (line.startsWith('data: ')) {
|
||||||
|
try {
|
||||||
|
const data = JSON.parse(line.slice(6))
|
||||||
|
if (data.event === 'text_message' && data.text) {
|
||||||
|
content += data.text
|
||||||
|
if (onChunk) onChunk(data.text)
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
// 忽略解析错误
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (onComplete) onComplete(content)
|
||||||
|
return content
|
||||||
|
|
||||||
|
} catch (error) {
|
||||||
|
console.error('HTTP流式请求失败:', error)
|
||||||
|
throw error
|
||||||
|
}
|
||||||
|
// #endif
|
||||||
|
|
||||||
|
// 非H5环境使用普通请求模拟流式效果
|
||||||
|
// #ifndef H5
|
||||||
|
const response = await http.sendRequest({
|
||||||
|
...params,
|
||||||
|
async: false
|
||||||
|
})
|
||||||
|
|
||||||
|
// 模拟流式效果
|
||||||
|
if (response.success && response.data) {
|
||||||
|
const content = response.data
|
||||||
|
const chunkSize = 3
|
||||||
|
let index = 0
|
||||||
|
|
||||||
|
const streamInterval = setInterval(() => {
|
||||||
|
if (index < content.length) {
|
||||||
|
const chunk = content.substring(index, index + chunkSize)
|
||||||
|
index += chunkSize
|
||||||
|
if (onChunk) onChunk(chunk)
|
||||||
|
} else {
|
||||||
|
clearInterval(streamInterval)
|
||||||
|
if (onComplete) onComplete(content)
|
||||||
|
}
|
||||||
|
}, 100)
|
||||||
|
}
|
||||||
|
// #endif
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理API响应
|
||||||
|
*/
|
||||||
|
handleResponse(response, options) {
|
||||||
|
if (response.code === 0 || response.success) {
|
||||||
|
return {
|
||||||
|
success: true,
|
||||||
|
content: response.data?.answer || response.data?.content || response.data,
|
||||||
|
conversationId: response.data?.conversation_id,
|
||||||
|
messageId: response.data?.message_id
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
throw new Error(response.message || 'AI服务返回错误')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生成会话ID
|
||||||
|
*/
|
||||||
|
generateConversationId() {
|
||||||
|
return 'conv_' + Date.now() + '_' + Math.random().toString(36).substr(2, 9)
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取AI服务状态
|
||||||
|
*/
|
||||||
|
async getServiceStatus() {
|
||||||
|
try {
|
||||||
|
const aiConfig = store.getters.globalAIAgentConfig
|
||||||
|
|
||||||
|
if (!aiConfig?.difyBaseUrl || !aiConfig?.difyApiKey) {
|
||||||
|
return {
|
||||||
|
available: false,
|
||||||
|
reason: '未配置Dify服务'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 简单的健康检查
|
||||||
|
const response = await http.sendRequest({
|
||||||
|
url: '/api/ai/health',
|
||||||
|
async: false
|
||||||
|
})
|
||||||
|
|
||||||
|
return {
|
||||||
|
available: response.success,
|
||||||
|
reason: response.success ? '服务正常' : '服务异常'
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (error) {
|
||||||
|
return {
|
||||||
|
available: false,
|
||||||
|
reason: '服务检查失败'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 清除会话历史
|
||||||
|
*/
|
||||||
|
async clearConversation(conversationId) {
|
||||||
|
try {
|
||||||
|
const response = await http.sendRequest({
|
||||||
|
url: '/api/ai/clear-conversation',
|
||||||
|
data: { conversation_id: conversationId },
|
||||||
|
async: false
|
||||||
|
})
|
||||||
|
|
||||||
|
return response.success
|
||||||
|
|
||||||
|
} catch (error) {
|
||||||
|
console.error('清除会话失败:', error)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -14,16 +14,19 @@ try {
|
|||||||
// 调试版本,配置说明
|
// 调试版本,配置说明
|
||||||
const devCfg = {
|
const devCfg = {
|
||||||
// 商户ID
|
// 商户ID
|
||||||
uniacid: 926, //使用刘凯的手机登录微信开发工具,对应的商户为防爆电器
|
uniacid: 1, //825
|
||||||
|
|
||||||
//api请求地址
|
//api请求地址
|
||||||
baseUrl: 'https://xcx21.5g-quickapp.com/',
|
baseUrl: 'https://dev.aigc-quickapp.com/',
|
||||||
|
// baseUrl: 'http://localhost:8010/',
|
||||||
|
|
||||||
// 图片域名
|
// 图片域名
|
||||||
imgDomain: 'https://xcx21.5g-quickapp.com/',
|
imgDomain: 'https://dev.aigc-quickapp.com/',
|
||||||
|
//imgDomain: 'http://localhost:8010/',
|
||||||
|
|
||||||
// H5端域名
|
// H5端域名
|
||||||
h5Domain: 'https://xcx21.5g-quickapp.com/',
|
h5Domain: 'https://dev.aigc-quickapp.com/',
|
||||||
|
// h5Domain: 'http://localhost:8010/',
|
||||||
|
|
||||||
// // api请求地址
|
// // api请求地址
|
||||||
// baseUrl: 'https://tsaas.liveplatform.cn/',
|
// baseUrl: 'https://tsaas.liveplatform.cn/',
|
||||||
|
|||||||
112
common/js/event-safety.js
Normal file
112
common/js/event-safety.js
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
// 事件安全处理工具
|
||||||
|
export class EventSafety {
|
||||||
|
// 创建安全的事件对象
|
||||||
|
static createSafeEvent(originalEvent = {}) {
|
||||||
|
const safeEvent = {
|
||||||
|
type: originalEvent.type || 'unknown',
|
||||||
|
timeStamp: originalEvent.timeStamp || Date.now(),
|
||||||
|
detail: originalEvent.detail || {},
|
||||||
|
// 安全的目标对象
|
||||||
|
get target() {
|
||||||
|
return EventSafety.createSafeTarget(originalEvent.target)
|
||||||
|
},
|
||||||
|
get currentTarget() {
|
||||||
|
return EventSafety.createSafeTarget(originalEvent.currentTarget)
|
||||||
|
},
|
||||||
|
// 安全的 matches 方法
|
||||||
|
matches(selector) {
|
||||||
|
return EventSafety.safeMatches(originalEvent.target, selector)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return new Proxy(safeEvent, {
|
||||||
|
get(obj, prop) {
|
||||||
|
// 防止访问不存在的属性
|
||||||
|
if (prop in obj) {
|
||||||
|
return obj[prop]
|
||||||
|
}
|
||||||
|
return undefined
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建安全的目标对象
|
||||||
|
static createSafeTarget(target) {
|
||||||
|
if (!target || typeof target !== 'object') {
|
||||||
|
return EventSafety.getFallbackTarget()
|
||||||
|
}
|
||||||
|
|
||||||
|
const safeTarget = {
|
||||||
|
// 基础属性
|
||||||
|
tagName: target.tagName || '',
|
||||||
|
id: target.id || '',
|
||||||
|
className: target.className || '',
|
||||||
|
// 安全的方法
|
||||||
|
matches: (selector) => EventSafety.safeMatches(target, selector),
|
||||||
|
// 数据集
|
||||||
|
dataset: target.dataset || {}
|
||||||
|
}
|
||||||
|
|
||||||
|
return safeTarget
|
||||||
|
}
|
||||||
|
|
||||||
|
// 安全的 matches 检查
|
||||||
|
static safeMatches(element, selector) {
|
||||||
|
if (!element || typeof element.matches !== 'function') {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
return element.matches(selector)
|
||||||
|
} catch (error) {
|
||||||
|
console.warn('matches 检查失败:', error)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 回退目标对象
|
||||||
|
static getFallbackTarget() {
|
||||||
|
return {
|
||||||
|
tagName: '',
|
||||||
|
id: '',
|
||||||
|
className: '',
|
||||||
|
matches: () => false,
|
||||||
|
dataset: {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 包装事件处理器
|
||||||
|
static wrapEventHandler(handler, options = {}) {
|
||||||
|
return function(event) {
|
||||||
|
try {
|
||||||
|
// 创建安全的事件对象
|
||||||
|
const safeEvent = EventSafety.createSafeEvent(event)
|
||||||
|
return handler.call(this, safeEvent)
|
||||||
|
} catch (error) {
|
||||||
|
console.error('事件处理错误:', error)
|
||||||
|
// 可选的错误处理
|
||||||
|
if (options.onError) {
|
||||||
|
options.onError(error, event, this)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 验证事件类型
|
||||||
|
static isValidEventType(event, expectedType) {
|
||||||
|
return event && event.type === expectedType
|
||||||
|
}
|
||||||
|
|
||||||
|
// 提取安全的事件数据
|
||||||
|
static extractEventData(event, fields = ['type', 'timeStamp', 'detail']) {
|
||||||
|
const result = {}
|
||||||
|
|
||||||
|
fields.forEach(field => {
|
||||||
|
if (event && field in event) {
|
||||||
|
result[field] = event[field]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
}
|
||||||
152
common/js/huaweiPay.js
Normal file
152
common/js/huaweiPay.js
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
/**
|
||||||
|
* 华为支付核心工具类
|
||||||
|
* 适配端:华为快应用(原生支付)、微信小程序(H5支付)、H5端(H5支付)
|
||||||
|
* 核心:统一封装支付调用逻辑,返回H5支付链接适配web-view组件
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 华为支付调用封装
|
||||||
|
* @param {String} outTradeNo 前端生成的唯一订单号
|
||||||
|
* @param {Number} amount 支付金额(单位:元,保留2位小数)
|
||||||
|
* @param {String} subject 订单标题
|
||||||
|
* @param {String} payType 支付类型(默认huaweipay)
|
||||||
|
* @returns {Promise} 支付结果(含H5支付链接)
|
||||||
|
*/
|
||||||
|
export function invokeHuaweiPay(outTradeNo, amount, subject, payType = 'huaweipay') {
|
||||||
|
return new Promise(async (resolve, reject) => {
|
||||||
|
try {
|
||||||
|
// 1. 显示加载中提示
|
||||||
|
uni.showLoading({
|
||||||
|
title: '发起支付...'
|
||||||
|
});
|
||||||
|
|
||||||
|
// 2. 调用后端生成订单
|
||||||
|
const orderRes = await uni.request({
|
||||||
|
url: getApiUrl() + '/api/huawei/pay/createOrder',
|
||||||
|
method: 'POST',
|
||||||
|
data: {
|
||||||
|
out_trade_no: outTradeNo,
|
||||||
|
total_amount: amount,
|
||||||
|
subject: subject,
|
||||||
|
pay_type: payType
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 3. 校验后端返回结果
|
||||||
|
if (orderRes.data.code !== 0) {
|
||||||
|
uni.hideLoading();
|
||||||
|
reject(new Error(orderRes.data.msg || '生成支付订单失败'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 4. 区分运行端处理
|
||||||
|
const systemInfo = uni.getSystemInfoSync();
|
||||||
|
const accountInfo = uni.getAccountInfoSync();
|
||||||
|
const isHuaweiQuickApp = systemInfo.platform === 'quickapp-huawei'; // 华为快应用
|
||||||
|
const isWechatMini = accountInfo?.miniProgram?.appId?.includes('wx'); // 微信小程序
|
||||||
|
const isH5 = systemInfo.platform === 'web' || !accountInfo?.miniProgram; // H5端
|
||||||
|
|
||||||
|
if (isHuaweiQuickApp) {
|
||||||
|
// 4.1 华为快应用:原生唤起支付控件
|
||||||
|
// 注意:这里需要根据实际的华为快应用支付SDK调用
|
||||||
|
try {
|
||||||
|
// 示例代码,实际需要根据华为快应用文档调整
|
||||||
|
const huaweiPay = require('@service.pay.huawei');
|
||||||
|
huaweiPay.pay({
|
||||||
|
orderInfo: orderRes.data.data.orderInfo,
|
||||||
|
success: (payRes) => {
|
||||||
|
uni.hideLoading();
|
||||||
|
resolve({
|
||||||
|
code: 0,
|
||||||
|
msg: '华为支付控件唤起成功',
|
||||||
|
data: payRes
|
||||||
|
});
|
||||||
|
},
|
||||||
|
fail: (err) => {
|
||||||
|
uni.hideLoading();
|
||||||
|
const errMsg = err.message || err.code || '未知错误';
|
||||||
|
reject(new Error(`支付失败:${errMsg}`));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} catch (sdkError) {
|
||||||
|
// SDK不存在,降级到H5支付
|
||||||
|
if (orderRes.data.data.payUrl) {
|
||||||
|
uni.hideLoading();
|
||||||
|
resolve({
|
||||||
|
code: 0,
|
||||||
|
msg: '跳转华为支付H5页面',
|
||||||
|
data: { payUrl: orderRes.data.data.payUrl }
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
uni.hideLoading();
|
||||||
|
reject(new Error('华为支付SDK不可用且无H5支付链接'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (isWechatMini || isH5) {
|
||||||
|
// 4.2 微信小程序/H5端:返回H5支付链接(适配web-view)
|
||||||
|
if (!orderRes.data.data.payUrl) {
|
||||||
|
uni.hideLoading();
|
||||||
|
reject(new Error('未获取到华为支付H5跳转链接'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
uni.hideLoading();
|
||||||
|
resolve({
|
||||||
|
code: 0,
|
||||||
|
msg: '跳转华为支付H5页面',
|
||||||
|
data: { payUrl: orderRes.data.data.payUrl }
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// 4.3 其他端:提示不支持
|
||||||
|
uni.hideLoading();
|
||||||
|
reject(new Error('当前环境暂不支持华为支付'));
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
uni.hideLoading();
|
||||||
|
reject(new Error(`支付异常:${err.message || '网络请求失败'}`));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 校验支付最终状态(统一适配所有支付方式)
|
||||||
|
* @param {String} outTradeNo 前端生成的订单号
|
||||||
|
* @returns {Promise} 校验结果(包含订单实际支付状态)
|
||||||
|
*/
|
||||||
|
export function checkPayStatus(outTradeNo) {
|
||||||
|
return new Promise(async (resolve, reject) => {
|
||||||
|
try {
|
||||||
|
// 统一调用后端状态校验接口(适配所有支付类型)
|
||||||
|
const checkRes = await uni.request({
|
||||||
|
url: getApiUrl() + '/api/pay/checkStatus',
|
||||||
|
method: 'POST',
|
||||||
|
data: {
|
||||||
|
out_trade_no: outTradeNo
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
resolve(checkRes.data);
|
||||||
|
} catch (err) {
|
||||||
|
reject(new Error(`校验支付状态失败:${err.message || '网络请求失败'}`));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取API基础URL
|
||||||
|
*/
|
||||||
|
function getApiUrl() {
|
||||||
|
// 尝试获取配置的API地址
|
||||||
|
try {
|
||||||
|
// #ifdef H5
|
||||||
|
const config = require('@/common/js/config.js').default;
|
||||||
|
return config.baseUrl || '';
|
||||||
|
// #endif
|
||||||
|
// #ifndef H5
|
||||||
|
const config = require('@/common/js/config.js').default;
|
||||||
|
return config.baseUrl || '';
|
||||||
|
// #endif
|
||||||
|
} catch (e) {
|
||||||
|
console.warn('获取API配置失败,使用空字符串');
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
288
common/js/navigation.js
Normal file
288
common/js/navigation.js
Normal file
@@ -0,0 +1,288 @@
|
|||||||
|
import { EventSafety } from './event-safety'
|
||||||
|
|
||||||
|
export class NavigationHelper {
|
||||||
|
constructor() {
|
||||||
|
this.navigationCache = new Map()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 安全地获取导航栏高度
|
||||||
|
async getNavigationHeight(component, options = {}) {
|
||||||
|
const cacheKey = `nav_height`
|
||||||
|
|
||||||
|
// 检查缓存
|
||||||
|
if (this.navigationCache.has(cacheKey) && !options.forceRefresh) {
|
||||||
|
return this.navigationCache.get(cacheKey)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取高度
|
||||||
|
try {
|
||||||
|
// 尝试直接获取 uni-page-head
|
||||||
|
const height = await this.getDirectNavigationHeight(component)
|
||||||
|
if (height > 0) {
|
||||||
|
this.navigationCache.set(cacheKey, height)
|
||||||
|
return height
|
||||||
|
}
|
||||||
|
|
||||||
|
// 备用方案:平台特定方法
|
||||||
|
const platformHeight = await this.getPlatformNavigationHeight()
|
||||||
|
this.navigationCache.set(cacheKey, platformHeight)
|
||||||
|
return platformHeight
|
||||||
|
} catch (error) {
|
||||||
|
console.warn('获取导航栏高度失败,使用默认值:', error)
|
||||||
|
const defaultHeight = this.getDefaultNavHeight()
|
||||||
|
this.navigationCache.set(cacheKey, defaultHeight)
|
||||||
|
return defaultHeight
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 直接查询导航栏高度
|
||||||
|
getDirectNavigationHeight(component) {
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
const query = uni.createSelectorQuery().in(component)
|
||||||
|
|
||||||
|
query.select('.uni-page-head').boundingClientRect((rect) => {
|
||||||
|
if (rect && rect.height > 0) {
|
||||||
|
console.log('直接查询导航栏高度成功:', rect.height)
|
||||||
|
resolve(rect.height)
|
||||||
|
} else {
|
||||||
|
console.warn('未找到 uni-page-head 元素或高度为0')
|
||||||
|
resolve(0)
|
||||||
|
}
|
||||||
|
}).exec()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 平台特定的高度获取
|
||||||
|
getPlatformNavigationHeight() {
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
// #ifdef MP-WEIXIN
|
||||||
|
// 微信小程序精确计算
|
||||||
|
try {
|
||||||
|
const menuButtonInfo = wx.getMenuButtonBoundingClientRect()
|
||||||
|
const systemInfo = uni.getSystemInfoSync()
|
||||||
|
|
||||||
|
const height = menuButtonInfo.bottom +
|
||||||
|
(menuButtonInfo.top - systemInfo.statusBarHeight)
|
||||||
|
console.log('微信小程序导航栏高度:', height)
|
||||||
|
resolve(height)
|
||||||
|
} catch (error) {
|
||||||
|
console.error('微信小程序高度计算失败:', error)
|
||||||
|
resolve(44)
|
||||||
|
}
|
||||||
|
|
||||||
|
// #endif
|
||||||
|
|
||||||
|
// #ifdef H5
|
||||||
|
// H5环境:尝试获取自定义导航栏或使用默认值
|
||||||
|
if (typeof document !== 'undefined') {
|
||||||
|
const customNav = document.querySelector('.uni-page-head')
|
||||||
|
if (customNav) {
|
||||||
|
resolve(customNav.offsetHeight)
|
||||||
|
} else {
|
||||||
|
resolve(44) // 默认导航栏高度
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
resolve(44)
|
||||||
|
}
|
||||||
|
// #endif
|
||||||
|
|
||||||
|
// #ifdef APP-PLUS
|
||||||
|
// App端:状态栏 + 导航栏
|
||||||
|
try {
|
||||||
|
const statusBarHeight = plus.navigator.getStatusbarHeight()
|
||||||
|
resolve(statusBarHeight + 44)
|
||||||
|
} catch (error) {
|
||||||
|
console.error('App端高度获取失败:', error)
|
||||||
|
resolve(88)
|
||||||
|
}
|
||||||
|
// #endif
|
||||||
|
|
||||||
|
// 默认值
|
||||||
|
resolve(44)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取默认高度
|
||||||
|
getDefaultHeight() {
|
||||||
|
// #ifdef MP-WEIXIN
|
||||||
|
return 44 // 微信小程序默认
|
||||||
|
// #endif
|
||||||
|
// #ifdef H5
|
||||||
|
return 44 // H5默认
|
||||||
|
// #endif
|
||||||
|
// #ifdef APP-PLUS
|
||||||
|
return 88 // App默认(状态栏44 + 导航栏44)
|
||||||
|
// #endif
|
||||||
|
return 44
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取状态栏高度
|
||||||
|
getStatusBarHeight() {
|
||||||
|
// #ifdef MP-WEIXIN
|
||||||
|
const systemInfo = uni.getSystemInfoSync()
|
||||||
|
return systemInfo.statusBarHeight || 20
|
||||||
|
// #endif
|
||||||
|
// #ifdef H5
|
||||||
|
return 0 // H5通常没有状态栏
|
||||||
|
// #endif
|
||||||
|
// #ifdef APP-PLUS
|
||||||
|
try {
|
||||||
|
return plus.navigator.getStatusbarHeight()
|
||||||
|
} catch (error) {
|
||||||
|
return 44
|
||||||
|
}
|
||||||
|
// #endif
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取安全区域
|
||||||
|
getSafeAreaInsets() {
|
||||||
|
try {
|
||||||
|
const systemInfo = uni.getSystemInfoSync()
|
||||||
|
return systemInfo.safeArea || {
|
||||||
|
top: 0,
|
||||||
|
bottom: 0,
|
||||||
|
left: 0,
|
||||||
|
right: 0
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
return {
|
||||||
|
top: 0,
|
||||||
|
bottom: 0,
|
||||||
|
left: 0,
|
||||||
|
right: 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建安全的事件处理器
|
||||||
|
createSafeEventHandler(handler, options = {}) {
|
||||||
|
return EventSafety.wrapEventHandler(handler, options)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 安全地处理服务请求事件
|
||||||
|
createServiceRequestHandler(component) {
|
||||||
|
return this.createSafeEventHandler((event) => {
|
||||||
|
return this.handleServiceRequest(event, component)
|
||||||
|
}, {
|
||||||
|
onError: (error, event) => {
|
||||||
|
this.handleNavigationError(error, event, component)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 处理服务请求
|
||||||
|
async handleServiceRequest(event, component) {
|
||||||
|
console.log('处理导航相关服务请求:', event.type)
|
||||||
|
|
||||||
|
// 安全检查事件目标
|
||||||
|
if (this.shouldProcessNavigationRequest(event)) {
|
||||||
|
await this.processNavigationRequest(event, component)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 检查是否应该处理导航请求
|
||||||
|
shouldProcessNavigationRequest(event) {
|
||||||
|
// 方法1:检查事件类型
|
||||||
|
if (event.type === 'service.requestComponentInfo') {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
// 方法2:检查目标元素
|
||||||
|
if (event.matches('.navigation-component') || event.matches('.uni-page-head')) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
// 方法3:检查事件详情
|
||||||
|
if (event.detail && event.detail.componentType === 'navigation') {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// 处理导航请求
|
||||||
|
async processNavigationRequest(event, component) {
|
||||||
|
try {
|
||||||
|
// 获取导航栏信息
|
||||||
|
const navInfo = await this.getNavigationInfo(component)
|
||||||
|
|
||||||
|
// 发送响应
|
||||||
|
this.emitNavigationResponse(navInfo, component)
|
||||||
|
|
||||||
|
} catch (error) {
|
||||||
|
console.error('处理导航请求失败:', error)
|
||||||
|
throw error
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// 获取完整的导航信息
|
||||||
|
async getNavigationInfo(component) {
|
||||||
|
const [navHeight, statusBarHeight, safeArea] = await Promise.all([
|
||||||
|
this.getNavigationHeight(component),
|
||||||
|
this.getStatusBarHeight(),
|
||||||
|
this.getSafeAreaInsets()
|
||||||
|
])
|
||||||
|
|
||||||
|
return {
|
||||||
|
navHeight,
|
||||||
|
statusBarHeight,
|
||||||
|
safeArea,
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 发送导航响应
|
||||||
|
emitNavigationResponse(navInfo, component) {
|
||||||
|
if (component && component.$emit) {
|
||||||
|
component.$emit('navigation.infoResponse', {
|
||||||
|
success: true,
|
||||||
|
data: navInfo,
|
||||||
|
timestamp: Date.now()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 错误处理
|
||||||
|
handleNavigationError(error, event, component) {
|
||||||
|
console.error('导航处理错误:', {
|
||||||
|
error: error.message,
|
||||||
|
eventType: event?.type,
|
||||||
|
component: component?.$options?.name
|
||||||
|
})
|
||||||
|
|
||||||
|
// 发送错误响应
|
||||||
|
if (component && component.$emit) {
|
||||||
|
component.$emit('navigation.infoError', {
|
||||||
|
success: false,
|
||||||
|
error: error.message,
|
||||||
|
timestamp: Date.now()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 显示用户友好的错误信息
|
||||||
|
this.showError('导航服务暂时不可用')
|
||||||
|
}
|
||||||
|
|
||||||
|
// 显示错误提示
|
||||||
|
showError(message) {
|
||||||
|
uni.showToast({
|
||||||
|
title: message,
|
||||||
|
icon: 'none',
|
||||||
|
duration: 2000
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 清理缓存
|
||||||
|
clearCache() {
|
||||||
|
this.navigationCache.clear()
|
||||||
|
console.log('导航缓存已清理')
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建全局实例
|
||||||
|
const navigationHelper = new NavigationHelper()
|
||||||
|
|
||||||
|
export default navigationHelper
|
||||||
28
common/js/payCore.js
Normal file
28
common/js/payCore.js
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
/**
|
||||||
|
* 全支付方式统一调用入口
|
||||||
|
* 整合微信/支付宝/华为支付的所有方法,简化页面引入逻辑
|
||||||
|
* 依赖:payUtils.js、huaweiPay.js(无需修改原文件)
|
||||||
|
*/
|
||||||
|
|
||||||
|
// 1. 引入原工具类的所有方法(修正方法名)
|
||||||
|
import {
|
||||||
|
invokeWechatPay, // 微信支付(完整方法名)
|
||||||
|
invokeAlipay, // 支付宝支付(完整方法名)
|
||||||
|
checkPayStatus as payUtilsCheck // 微信/支付宝支付状态校验(完整方法名)
|
||||||
|
} from './payUtils.js';
|
||||||
|
|
||||||
|
import {
|
||||||
|
invokeHuaweiPay, // 华为支付(完整方法名)
|
||||||
|
checkPayStatus as huaweiCheck // 华为支付状态校验(完整方法名)
|
||||||
|
} from './huaweiPay.js';
|
||||||
|
|
||||||
|
// 2. 导出所有支付调用方法(修正方法名,和原方法一致)
|
||||||
|
export {
|
||||||
|
invokeWechatPay,
|
||||||
|
invokeAlipay,
|
||||||
|
invokeHuaweiPay
|
||||||
|
};
|
||||||
|
|
||||||
|
// 3. 导出统一的支付状态校验方法(两个工具类逻辑完全一致,任选其一即可)
|
||||||
|
export const checkPayStatus = payUtilsCheck;
|
||||||
|
// 若需使用华为支付工具类的校验逻辑,可替换为:export const checkPayStatus = huaweiCheck;
|
||||||
212
common/js/payUtils.js
Normal file
212
common/js/payUtils.js
Normal file
@@ -0,0 +1,212 @@
|
|||||||
|
/**
|
||||||
|
* 微信/支付宝支付工具类
|
||||||
|
* 适配端:微信小程序(全支付方式)、华为快应用(全支付方式)、H5(全支付方式)
|
||||||
|
* 核心:统一封装支付调用逻辑,返回H5支付链接适配web-view组件
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 微信支付调用封装
|
||||||
|
* @param {String} outTradeNo 前端生成的唯一订单号
|
||||||
|
* @param {Number} amount 支付金额(单位:元,保留2位小数)
|
||||||
|
* @param {String} subject 订单标题
|
||||||
|
* @returns {Promise} 支付结果(含H5支付链接)
|
||||||
|
*/
|
||||||
|
export function invokeWechatPay(outTradeNo, amount, subject) {
|
||||||
|
return new Promise(async (resolve, reject) => {
|
||||||
|
try {
|
||||||
|
// 1. 调用后端接口生成微信支付订单
|
||||||
|
const orderRes = await uni.request({
|
||||||
|
url: getApiUrl() + '/api/pay/wechat/createOrder',
|
||||||
|
method: 'POST',
|
||||||
|
data: {
|
||||||
|
out_trade_no: outTradeNo,
|
||||||
|
total_amount: amount,
|
||||||
|
subject: subject,
|
||||||
|
pay_type: 'wechatpay'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 2. 校验后端返回结果
|
||||||
|
if (orderRes.data.code !== 0) {
|
||||||
|
reject(new Error(orderRes.data.msg || '生成微信支付订单失败'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 3. 区分运行端处理
|
||||||
|
const systemInfo = uni.getSystemInfoSync();
|
||||||
|
const accountInfo = uni.getAccountInfoSync();
|
||||||
|
const isWechatMini = accountInfo?.miniProgram?.appId?.includes('wx'); // 微信小程序
|
||||||
|
const isHuaweiQuickApp = systemInfo.platform === 'quickapp-huawei'; // 华为快应用
|
||||||
|
|
||||||
|
if (isWechatMini) {
|
||||||
|
// 3.1 微信小程序:优先原生唤起,失败则返回H5链接
|
||||||
|
if (orderRes.data.data.timeStamp && orderRes.data.data.paySign) {
|
||||||
|
uni.requestPayment({
|
||||||
|
timeStamp: orderRes.data.data.timeStamp,
|
||||||
|
nonceStr: orderRes.data.data.nonceStr,
|
||||||
|
package: orderRes.data.data.package,
|
||||||
|
signType: 'MD5',
|
||||||
|
paySign: orderRes.data.data.paySign,
|
||||||
|
success: () => {
|
||||||
|
resolve({
|
||||||
|
code: 0,
|
||||||
|
msg: '微信支付控件唤起成功',
|
||||||
|
data: {}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
fail: (err) => {
|
||||||
|
// 原生唤起失败,返回H5链接适配web-view
|
||||||
|
if (orderRes.data.data.payUrl) {
|
||||||
|
resolve({
|
||||||
|
code: 0,
|
||||||
|
msg: '原生支付失败,跳转H5支付',
|
||||||
|
data: { payUrl: orderRes.data.data.payUrl }
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
reject(new Error(`微信支付失败:${err.errMsg || '无H5支付链接'}`));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else if (orderRes.data.data.payUrl) {
|
||||||
|
// 无原生支付参数,直接返回H5链接
|
||||||
|
resolve({
|
||||||
|
code: 0,
|
||||||
|
msg: '跳转微信支付H5页面',
|
||||||
|
data: { payUrl: orderRes.data.data.payUrl }
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
reject(new Error('缺少微信支付参数(原生/H5)'));
|
||||||
|
}
|
||||||
|
} else if (isHuaweiQuickApp) {
|
||||||
|
// 3.2 华为快应用:返回H5支付链接
|
||||||
|
if (!orderRes.data.data.payUrl) {
|
||||||
|
reject(new Error('未获取到微信支付H5跳转链接'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
resolve({
|
||||||
|
code: 0,
|
||||||
|
msg: '跳转微信支付H5页面',
|
||||||
|
data: { payUrl: orderRes.data.data.payUrl }
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// 3.3 H5端:直接跳转
|
||||||
|
if (!orderRes.data.data.payUrl) {
|
||||||
|
reject(new Error('未获取到微信支付跳转链接'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
window.location.href = orderRes.data.data.payUrl;
|
||||||
|
resolve({
|
||||||
|
code: 0,
|
||||||
|
msg: '跳转微信支付页面成功',
|
||||||
|
data: {}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
reject(new Error(`微信支付异常:${err.message || '网络请求失败'}`));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 支付宝支付调用封装(全端支持,返回H5链接适配web-view)
|
||||||
|
* @param {String} outTradeNo 前端生成的唯一订单号
|
||||||
|
* @param {Number} amount 支付金额(单位:元)
|
||||||
|
* @param {String} subject 订单标题
|
||||||
|
* @returns {Promise} 支付结果(含H5支付链接)
|
||||||
|
*/
|
||||||
|
export function invokeAlipay(outTradeNo, amount, subject) {
|
||||||
|
return new Promise(async (resolve, reject) => {
|
||||||
|
try {
|
||||||
|
// 1. 调用后端接口生成支付宝支付订单
|
||||||
|
const orderRes = await uni.request({
|
||||||
|
url: getApiUrl() + '/api/pay/alipay/createOrder',
|
||||||
|
method: 'POST',
|
||||||
|
data: {
|
||||||
|
out_trade_no: outTradeNo,
|
||||||
|
total_amount: amount,
|
||||||
|
subject: subject,
|
||||||
|
pay_type: 'alipay'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 2. 校验后端返回结果
|
||||||
|
if (orderRes.data.code !== 0) {
|
||||||
|
reject(new Error(orderRes.data.msg || '生成支付宝支付订单失败'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 3. 区分运行端处理(全端返回H5链接)
|
||||||
|
const accountInfo = uni.getAccountInfoSync();
|
||||||
|
const isWechatMini = accountInfo?.miniProgram?.appId?.includes('wx');
|
||||||
|
const isHuaweiQuickApp = uni.getSystemInfoSync().platform === 'quickapp-huawei';
|
||||||
|
|
||||||
|
if (!orderRes.data.data.payUrl) {
|
||||||
|
reject(new Error('未获取到支付宝支付H5跳转链接'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isWechatMini || isHuaweiQuickApp) {
|
||||||
|
// 3.1 微信小程序/华为快应用:返回H5链接(适配web-view)
|
||||||
|
resolve({
|
||||||
|
code: 0,
|
||||||
|
msg: '跳转支付宝支付H5页面',
|
||||||
|
data: { payUrl: orderRes.data.data.payUrl }
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// 3.2 H5端:直接跳转
|
||||||
|
window.location.href = orderRes.data.data.payUrl;
|
||||||
|
resolve({
|
||||||
|
code: 0,
|
||||||
|
msg: '跳转支付宝支付页面成功',
|
||||||
|
data: {}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
reject(new Error(`支付宝支付异常:${err.message || '网络请求失败'}`));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 统一支付状态校验(和huaweiPay.js的checkPayStatus对齐)
|
||||||
|
* @param {String} outTradeNo 前端生成的订单号
|
||||||
|
* @returns {Promise} 校验结果(包含订单实际支付状态)
|
||||||
|
*/
|
||||||
|
export function checkPayStatus(outTradeNo) {
|
||||||
|
return new Promise(async (resolve, reject) => {
|
||||||
|
try {
|
||||||
|
// 统一调用后端状态校验接口(适配所有支付类型)
|
||||||
|
const checkRes = await uni.request({
|
||||||
|
url: getApiUrl() + '/api/pay/checkStatus', // 和huaweiPay.js使用同一接口
|
||||||
|
method: 'POST',
|
||||||
|
data: {
|
||||||
|
out_trade_no: outTradeNo
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
resolve(checkRes.data);
|
||||||
|
} catch (err) {
|
||||||
|
reject(new Error(`校验支付状态失败:${err.message || '网络请求失败'}`));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取API基础URL
|
||||||
|
*/
|
||||||
|
function getApiUrl() {
|
||||||
|
// 尝试获取配置的API地址
|
||||||
|
try {
|
||||||
|
// #ifdef H5
|
||||||
|
const config = require('@/common/js/config.js').default;
|
||||||
|
return config.baseUrl || '';
|
||||||
|
// #endif
|
||||||
|
// #ifndef H5
|
||||||
|
const config = require('@/common/js/config.js').default;
|
||||||
|
return config.baseUrl || '';
|
||||||
|
// #endif
|
||||||
|
} catch (e) {
|
||||||
|
console.warn('获取API配置失败,使用空字符串');
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
271
components/ai-chat-message/README.md
Normal file
271
components/ai-chat-message/README.md
Normal file
@@ -0,0 +1,271 @@
|
|||||||
|
# AI智能客服组件
|
||||||
|
|
||||||
|
一个功能完整的AI智能客服对话组件,支持多种消息类型和交互功能。
|
||||||
|
|
||||||
|
## 功能特性
|
||||||
|
|
||||||
|
- ✅ 支持对话上下文管理
|
||||||
|
- ✅ 支持多种消息类型:文本、Markdown、文件、音频、视频、链接、商品卡片
|
||||||
|
- ✅ 支持语音输入和录音
|
||||||
|
- ✅ 支持图片、文件、位置等附件发送
|
||||||
|
- ✅ 支持消息操作按钮(点赞、踩等)
|
||||||
|
- ✅ 支持历史消息加载
|
||||||
|
- ✅ 响应式设计,适配多端
|
||||||
|
|
||||||
|
## 安装使用
|
||||||
|
|
||||||
|
### 1. 引入组件
|
||||||
|
|
||||||
|
在 `pages.json` 中注册组件:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"usingComponents": {
|
||||||
|
"ai-chat-message": "/components/ai-chat-message/ai-chat-message"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. 在页面中使用
|
||||||
|
|
||||||
|
```vue
|
||||||
|
<template>
|
||||||
|
<view class="container">
|
||||||
|
<ai-chat-message
|
||||||
|
ref="chat"
|
||||||
|
:initial-messages="messages"
|
||||||
|
@message-sent="onMessageSent"
|
||||||
|
@ai-response="onAIResponse"
|
||||||
|
@action-click="onActionClick" />
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
messages: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
role: 'ai',
|
||||||
|
type: 'text',
|
||||||
|
content: '您好!我是AI智能客服,有什么可以帮助您的吗?',
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
onMessageSent(message) {
|
||||||
|
console.log('用户发送消息:', message)
|
||||||
|
},
|
||||||
|
onAIResponse(message) {
|
||||||
|
console.log('AI回复消息:', message)
|
||||||
|
},
|
||||||
|
onActionClick({ action, message }) {
|
||||||
|
console.log('操作点击:', action, message)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
```
|
||||||
|
|
||||||
|
## Props 配置
|
||||||
|
|
||||||
|
| 参数 | 类型 | 默认值 | 说明 |
|
||||||
|
|------|------|--------|------|
|
||||||
|
| initialMessages | Array | [] | 初始消息列表 |
|
||||||
|
| userAvatar | String | '/static/images/default-avatar.png' | 用户头像 |
|
||||||
|
| aiAvatar | String | '/static/images/ai-avatar.png' | AI头像 |
|
||||||
|
| showLoadMore | Boolean | true | 是否显示加载更多 |
|
||||||
|
| maxMessages | Number | 100 | 最大消息数量 |
|
||||||
|
|
||||||
|
## Events 事件
|
||||||
|
|
||||||
|
| 事件名 | 参数 | 说明 |
|
||||||
|
|--------|------|------|
|
||||||
|
| message-sent | message | 用户发送消息 |
|
||||||
|
| ai-response | message | AI回复消息 |
|
||||||
|
| action-click | {action, message} | 操作按钮点击 |
|
||||||
|
| history-loaded | messages | 历史消息加载完成 |
|
||||||
|
| file-preview | message | 文件预览 |
|
||||||
|
| audio-play | message | 音频播放 |
|
||||||
|
| audio-pause | message | 音频暂停 |
|
||||||
|
| video-play | message | 视频播放 |
|
||||||
|
| video-pause | message | 视频暂停 |
|
||||||
|
| link-open | message | 链接打开 |
|
||||||
|
| product-view | message | 商品查看 |
|
||||||
|
| input-change | value | 输入内容变化 |
|
||||||
|
|
||||||
|
## 消息类型格式
|
||||||
|
|
||||||
|
### 文本消息
|
||||||
|
```javascript
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
role: 'user', // 或 'ai'
|
||||||
|
type: 'text',
|
||||||
|
content: '消息内容',
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Markdown消息
|
||||||
|
```javascript
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
role: 'ai',
|
||||||
|
type: 'markdown',
|
||||||
|
content: '# 标题\n**粗体** *斜体* `代码`',
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### 文件消息
|
||||||
|
```javascript
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
role: 'ai',
|
||||||
|
type: 'file',
|
||||||
|
fileName: '文档.pdf',
|
||||||
|
fileSize: 1024000,
|
||||||
|
url: '文件地址',
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### 音频消息
|
||||||
|
```javascript
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
role: 'ai',
|
||||||
|
type: 'audio',
|
||||||
|
title: '语音消息',
|
||||||
|
duration: 60, // 秒
|
||||||
|
url: '音频地址',
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### 视频消息
|
||||||
|
```javascript
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
role: 'ai',
|
||||||
|
type: 'video',
|
||||||
|
title: '产品介绍',
|
||||||
|
duration: 120, // 秒
|
||||||
|
url: '视频地址',
|
||||||
|
cover: '封面图',
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### 链接消息
|
||||||
|
```javascript
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
role: 'ai',
|
||||||
|
type: 'link',
|
||||||
|
title: '帮助文档',
|
||||||
|
description: '详细的使用说明',
|
||||||
|
url: 'https://example.com',
|
||||||
|
image: '缩略图',
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### 商品卡片
|
||||||
|
```javascript
|
||||||
|
{
|
||||||
|
id: 7,
|
||||||
|
role: 'ai',
|
||||||
|
type: 'product',
|
||||||
|
title: '商品名称',
|
||||||
|
price: 299,
|
||||||
|
description: '商品描述',
|
||||||
|
image: '商品图片',
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## 方法
|
||||||
|
|
||||||
|
通过 ref 调用组件方法:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
// 添加消息
|
||||||
|
this.$refs.chat.addMessage(message)
|
||||||
|
|
||||||
|
// 清空消息
|
||||||
|
this.$refs.chat.clearMessages()
|
||||||
|
|
||||||
|
// 滚动到底部
|
||||||
|
this.$refs.chat.scrollToBottom()
|
||||||
|
```
|
||||||
|
|
||||||
|
## 样式定制
|
||||||
|
|
||||||
|
组件使用 SCSS 编写,可以通过 CSS 变量进行主题定制:
|
||||||
|
|
||||||
|
```css
|
||||||
|
.ai-chat-container {
|
||||||
|
--primary-color: #ff4544;
|
||||||
|
--bg-color: #f8f8f8;
|
||||||
|
--text-color: #333;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## 方法
|
||||||
|
|
||||||
|
通过 ref 调用组件方法:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
// 添加消息
|
||||||
|
this.$refs.chat.addMessage(message)
|
||||||
|
|
||||||
|
// 清空消息
|
||||||
|
this.$refs.chat.clearMessages()
|
||||||
|
|
||||||
|
// 滚动到底部
|
||||||
|
this.$refs.chat.scrollToBottom()
|
||||||
|
|
||||||
|
// 开始语音输入
|
||||||
|
this.$refs.chat.startVoiceInput()
|
||||||
|
|
||||||
|
// 停止语音输入
|
||||||
|
this.$refs.chat.stopVoiceInput()
|
||||||
|
```
|
||||||
|
|
||||||
|
## 样式定制
|
||||||
|
|
||||||
|
组件使用 SCSS 编写,可以通过 CSS 变量进行主题定制:
|
||||||
|
|
||||||
|
```css
|
||||||
|
.ai-chat-container {
|
||||||
|
--primary-color: #ff4544;
|
||||||
|
--bg-color: #f8f8f8;
|
||||||
|
--text-color: #333;
|
||||||
|
--border-color: #eeeeee;
|
||||||
|
--user-bg: #e6f7ff;
|
||||||
|
--ai-bg: #f6f6f6;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## 图标字体
|
||||||
|
|
||||||
|
组件使用自定义图标字体,需要在页面中引入:
|
||||||
|
|
||||||
|
```html
|
||||||
|
<style>
|
||||||
|
@import url('/components/ai-chat-message/iconfont.css');
|
||||||
|
</style>
|
||||||
|
```
|
||||||
|
|
||||||
|
## 注意事项
|
||||||
|
|
||||||
|
1. 组件已适配项目中已有的 `ns-loading` 组件
|
||||||
|
2. 需要配置对应的图标字体文件
|
||||||
|
3. 音频播放功能在 H5 和 APP 端支持较好
|
||||||
|
4. 文件预览功能依赖平台能力
|
||||||
|
5. 语音输入功能需要用户授权麦克风权限
|
||||||
6
components/ai-chat-message/ai-chat-message.json
Normal file
6
components/ai-chat-message/ai-chat-message.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"component": true,
|
||||||
|
"usingComponents": {
|
||||||
|
"ns-loading": "../ns-loading/ns-loading"
|
||||||
|
}
|
||||||
|
}
|
||||||
1630
components/ai-chat-message/ai-chat-message.vue
Normal file
1630
components/ai-chat-message/ai-chat-message.vue
Normal file
File diff suppressed because it is too large
Load Diff
288
components/ai-chat-message/demo.vue
Normal file
288
components/ai-chat-message/demo.vue
Normal file
@@ -0,0 +1,288 @@
|
|||||||
|
<template>
|
||||||
|
<view class="demo-container">
|
||||||
|
<view class="demo-header">
|
||||||
|
<text class="demo-title">AI智能客服组件演示</text>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<ai-chat-message
|
||||||
|
ref="chat"
|
||||||
|
:initial-messages="demoMessages"
|
||||||
|
user-avatar="/static/images/demo-user.png"
|
||||||
|
ai-avatar="/static/images/demo-ai.png"
|
||||||
|
@message-sent="onMessageSent"
|
||||||
|
@ai-response="onAIResponse"
|
||||||
|
@action-click="onActionClick"
|
||||||
|
@file-preview="onFilePreview"
|
||||||
|
@audio-play="onAudioPlay"
|
||||||
|
@video-play="onVideoPlay"
|
||||||
|
@link-open="onLinkOpen"
|
||||||
|
@product-view="onProductView" />
|
||||||
|
|
||||||
|
<view class="demo-controls">
|
||||||
|
<button class="control-btn" @click="addTextMessage">添加文本消息</button>
|
||||||
|
<button class="control-btn" @click="addMarkdownMessage">添加Markdown</button>
|
||||||
|
<button class="control-btn" @click="addFileMessage">添加文件</button>
|
||||||
|
<button class="control-btn" @click="addAudioMessage">添加音频</button>
|
||||||
|
<button class="control-btn" @click="addVideoMessage">添加视频</button>
|
||||||
|
<button class="control-btn" @click="addLinkMessage">添加链接</button>
|
||||||
|
<button class="control-btn" @click="addProductMessage">添加商品</button>
|
||||||
|
<button class="control-btn" @click="clearMessages">清空消息</button>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
demoMessages: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
role: 'ai',
|
||||||
|
type: 'text',
|
||||||
|
content: '您好!我是AI智能客服演示程序,我可以展示多种消息类型。请点击下方的按钮体验不同功能!',
|
||||||
|
timestamp: Date.now() - 300000,
|
||||||
|
actions: [
|
||||||
|
{ id: 1, text: '开始体验', type: 'like' }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
// 添加文本消息
|
||||||
|
addTextMessage() {
|
||||||
|
const message = {
|
||||||
|
id: Date.now(),
|
||||||
|
role: 'ai',
|
||||||
|
type: 'text',
|
||||||
|
content: '这是一个文本消息示例,支持**粗体**、*斜体*和`代码`格式。也可以包含换行符\n这是第二行内容。',
|
||||||
|
timestamp: Date.now(),
|
||||||
|
actions: [
|
||||||
|
{ id: 1, text: '有帮助', type: 'like' },
|
||||||
|
{ id: 2, text: '没帮助', type: 'dislike' }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
this.$refs.chat.messages.push(message)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 添加Markdown消息
|
||||||
|
addMarkdownMessage() {
|
||||||
|
const message = {
|
||||||
|
id: Date.now(),
|
||||||
|
role: 'ai',
|
||||||
|
type: 'markdown',
|
||||||
|
content: `# Markdown文档示例
|
||||||
|
|
||||||
|
## 二级标题
|
||||||
|
|
||||||
|
这是一个支持**粗体**、*斜体*和\`代码\`的Markdown消息。
|
||||||
|
|
||||||
|
### 功能特性
|
||||||
|
- ✅ 支持标题层级
|
||||||
|
- ✅ 支持列表展示
|
||||||
|
- ✅ 支持代码高亮
|
||||||
|
- ✅ 支持链接跳转
|
||||||
|
|
||||||
|
[查看详细文档](https://example.com)\n\n**注意:** 这是一个演示内容,实际使用时可以集成真实的文档系统。`,
|
||||||
|
timestamp: Date.now(),
|
||||||
|
actions: [
|
||||||
|
{ id: 1, text: '查看文档', type: 'like' }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
this.$refs.chat.messages.push(message)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 添加文件消息
|
||||||
|
addFileMessage() {
|
||||||
|
const message = {
|
||||||
|
id: Date.now(),
|
||||||
|
role: 'ai',
|
||||||
|
type: 'file',
|
||||||
|
fileName: '产品介绍文档.pdf',
|
||||||
|
fileSize: 2048000,
|
||||||
|
url: 'https://example.com/document.pdf',
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
this.$refs.chat.messages.push(message)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 添加音频消息
|
||||||
|
addAudioMessage() {
|
||||||
|
const message = {
|
||||||
|
id: Date.now(),
|
||||||
|
role: 'ai',
|
||||||
|
type: 'audio',
|
||||||
|
title: '产品功能介绍',
|
||||||
|
duration: 89,
|
||||||
|
url: 'https://example.com/audio.mp3',
|
||||||
|
timestamp: Date.now(),
|
||||||
|
playing: false,
|
||||||
|
currentTime: 0
|
||||||
|
}
|
||||||
|
this.$refs.chat.messages.push(message)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 添加视频消息
|
||||||
|
addVideoMessage() {
|
||||||
|
const message = {
|
||||||
|
id: Date.now(),
|
||||||
|
role: 'ai',
|
||||||
|
type: 'video',
|
||||||
|
title: '产品演示视频',
|
||||||
|
duration: 180,
|
||||||
|
url: 'https://example.com/video.mp4',
|
||||||
|
cover: '/static/images/video-cover.jpg',
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
this.$refs.chat.messages.push(message)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 添加链接消息
|
||||||
|
addLinkMessage() {
|
||||||
|
const message = {
|
||||||
|
id: Date.now(),
|
||||||
|
role: 'ai',
|
||||||
|
type: 'link',
|
||||||
|
title: '帮助中心',
|
||||||
|
description: '详细的产品使用说明和常见问题解答',
|
||||||
|
url: 'https://example.com/help',
|
||||||
|
image: '/static/images/link-thumbnail.jpg',
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
this.$refs.chat.messages.push(message)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 添加商品消息
|
||||||
|
addProductMessage() {
|
||||||
|
const message = {
|
||||||
|
id: Date.now(),
|
||||||
|
role: 'ai',
|
||||||
|
type: 'product',
|
||||||
|
title: '智能手表 X1',
|
||||||
|
price: 1299,
|
||||||
|
description: '全新一代智能手表,支持心率监测、运动追踪、消息提醒等功能',
|
||||||
|
image: '/static/images/product-demo.jpg',
|
||||||
|
timestamp: Date.now(),
|
||||||
|
actions: [
|
||||||
|
{ id: 1, text: '立即购买', type: 'like' },
|
||||||
|
{ id: 2, text: '查看详情', type: 'dislike' }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
this.$refs.chat.messages.push(message)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 清空消息
|
||||||
|
clearMessages() {
|
||||||
|
this.$refs.chat.messages = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
role: 'ai',
|
||||||
|
type: 'text',
|
||||||
|
content: '消息已清空,可以重新开始体验!',
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
// 事件处理
|
||||||
|
onMessageSent(message) {
|
||||||
|
console.log('用户发送消息:', message)
|
||||||
|
uni.showToast({
|
||||||
|
title: '消息发送成功',
|
||||||
|
icon: 'success'
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
onAIResponse(message) {
|
||||||
|
console.log('AI回复消息:', message)
|
||||||
|
},
|
||||||
|
|
||||||
|
onActionClick({ action, message }) {
|
||||||
|
console.log('操作点击:', action, message)
|
||||||
|
uni.showToast({
|
||||||
|
title: `点击了: ${action.text}`,
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
onFilePreview(message) {
|
||||||
|
console.log('文件预览:', message)
|
||||||
|
uni.showToast({
|
||||||
|
title: '正在打开文件...',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
onAudioPlay(message) {
|
||||||
|
console.log('音频播放:', message)
|
||||||
|
},
|
||||||
|
|
||||||
|
onVideoPlay(message) {
|
||||||
|
console.log('视频播放:', message)
|
||||||
|
},
|
||||||
|
|
||||||
|
onLinkOpen(message) {
|
||||||
|
console.log('链接打开:', message)
|
||||||
|
uni.showToast({
|
||||||
|
title: '正在打开链接...',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
onProductView(message) {
|
||||||
|
console.log('商品查看:', message)
|
||||||
|
uni.showToast({
|
||||||
|
title: '正在查看商品...',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.demo-container {
|
||||||
|
height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-header {
|
||||||
|
background-color: #ff4544;
|
||||||
|
color: white;
|
||||||
|
padding: 30rpx;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
.demo-title {
|
||||||
|
font-size: 32rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-controls {
|
||||||
|
background-color: white;
|
||||||
|
padding: 20rpx;
|
||||||
|
border-top: 2rpx solid #eeeeee;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 10rpx;
|
||||||
|
|
||||||
|
.control-btn {
|
||||||
|
flex: 1;
|
||||||
|
min-width: 150rpx;
|
||||||
|
height: 60rpx;
|
||||||
|
background-color: #f8f8f8;
|
||||||
|
border-radius: 30rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #333;
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
background-color: #eeeeee;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,142 +1,213 @@
|
|||||||
<template>
|
<template>
|
||||||
<!-- 悬浮按钮 -->
|
<!-- 悬浮按钮 -->
|
||||||
<view v-if="pageCount == 1 || need" class="fixed-box" :style="{ height: fixBtnShow ? '330rpx' : '120rpx' }">
|
<view v-if="pageCount == 1 || need" class="fixed-box" :style="{ height: fixBtnShow ? '330rpx' : '120rpx' }">
|
||||||
<!-- <view class="btn-item" v-if="fixBtnShow" @click="$util.redirectTo('/pages/index/index')"> -->
|
<!-- <view class="btn-item" v-if="fixBtnShow" @click="$util.redirectTo('/pages/index/index')"> -->
|
||||||
<!-- #ifdef MP-WEIXIN -->
|
|
||||||
<button class="btn-item" v-if="fixBtnShow" hoverClass="none" openType="contact" sessionFrom="weapp" showMessageCard="true" :style="{backgroundImage:'url('+(kefuimg?kefuimg:'')+')',backgroundSize:'100% 100%'}">
|
<!-- AI智能助手 -->
|
||||||
<text class="icox icox-kefu" v-if="!kefuimg"></text>
|
<view class="btn-item" v-if="fixBtnShow && enableAIChat" @click="openAIChat" :style="{backgroundImage:'url('+(aiAgentimg?aiAgentimg:'')+')',backgroundSize:'100% 100%'}">
|
||||||
<!-- <view>首页</view> -->
|
<text class="ai-icon" v-if="!aiAgentimg">🤖</text>
|
||||||
</button>
|
<!-- 未读消息小红点 -->
|
||||||
<!-- #endif -->
|
<view v-if="unreadCount > 0" class="unread-badge">
|
||||||
<view class="btn-item" v-if="fixBtnShow" @click="call()" :style="{backgroundImage:'url('+(phoneimg?phoneimg:'')+')',backgroundSize:'100% 100%'}">
|
<text class="badge-text">{{ unreadCount > 99 ? '99+' : unreadCount }}</text>
|
||||||
<text class="iconfont icon-dianhua" v-if="!phoneimg"></text>
|
</view>
|
||||||
<!-- <view>我的</view> -->
|
</view>
|
||||||
</view>
|
|
||||||
|
<!-- #ifdef MP-WEIXIN -->
|
||||||
<!-- <view class="btn-item icon-xiala" v-if="fixBtnShow" @click="fixBtnShow ? (fixBtnShow = false) : (fixBtnShow = true)">
|
<button class="btn-item" v-if="fixBtnShow" hoverClass="none" openType="contact" sessionFrom="weapp" showMessageCard="true" :style="{backgroundImage:'url('+(kefuimg?kefuimg:'')+')',backgroundSize:'100% 100%'}">
|
||||||
<text class="iconfont icon-unfold"></text>
|
<text class="icox icox-kefu" v-if="!kefuimg"></text>
|
||||||
</view>
|
<!-- <view>首页</view> -->
|
||||||
<view class="btn-item switch" v-else :class="{ show: fixBtnShow }"
|
</button>
|
||||||
@click="fixBtnShow ? (fixBtnShow = false) : (fixBtnShow = true)">
|
<!-- #endif -->
|
||||||
<view class="">快捷</view>
|
|
||||||
<view>导航</view>
|
<!-- 电话 -->
|
||||||
</view> -->
|
<view class="btn-item" v-if="fixBtnShow" @click="call()" :style="{backgroundImage:'url('+(phoneimg?phoneimg:'')+')',backgroundSize:'100% 100%'}">
|
||||||
</view>
|
<text class="iconfont icon-dianhua" v-if="!phoneimg"></text>
|
||||||
</template>
|
<!-- <view>我的</view> -->
|
||||||
|
</view>
|
||||||
<script>
|
|
||||||
export default {
|
<!-- <view class="btn-item icon-xiala" v-if="fixBtnShow" @click="fixBtnShow ? (fixBtnShow = false) : (fixBtnShow = true)">
|
||||||
name: 'hover-nav',
|
<text class="iconfont icon-unfold"></text>
|
||||||
props: {
|
</view>
|
||||||
need: {
|
<view class="btn-item switch" v-else :class="{ show: fixBtnShow }"
|
||||||
type: Boolean,
|
@click="fixBtnShow ? (fixBtnShow = false) : (fixBtnShow = true)">
|
||||||
default: false
|
<view class="">快捷</view>
|
||||||
},
|
<view>导航</view>
|
||||||
},
|
</view> -->
|
||||||
data() {
|
</view>
|
||||||
return {
|
</template>
|
||||||
pageCount: 0,
|
|
||||||
fixBtnShow: true,
|
<script>
|
||||||
tel:'',
|
import { mapGetters, mapMutations } from 'vuex'
|
||||||
kefuimg:'',
|
|
||||||
phoneimg:''
|
export default {
|
||||||
};
|
name: 'hover-nav',
|
||||||
},
|
props: {
|
||||||
created() {
|
need: {
|
||||||
this.kefuimg = this.$util.getDefaultImage().kefu
|
type: Boolean,
|
||||||
this.phoneimg = this.$util.getDefaultImage().phone
|
default: false
|
||||||
this.pageCount = getCurrentPages().length;
|
},
|
||||||
var that = this
|
},
|
||||||
uni.getStorage({
|
data() {
|
||||||
key:'shopInfo',
|
return {
|
||||||
success(e){
|
pageCount: 0,
|
||||||
that.tel = e.data.mobile
|
fixBtnShow: true,
|
||||||
}
|
tel:'',
|
||||||
})
|
kefuimg:'',
|
||||||
|
phoneimg:''
|
||||||
},
|
};
|
||||||
methods: {
|
},
|
||||||
//拨打电话
|
created() {
|
||||||
call(){
|
this.kefuimg = this.$util.getDefaultImage().kefu
|
||||||
uni.makePhoneCall({
|
this.phoneimg = this.$util.getDefaultImage().phone
|
||||||
phoneNumber:this.tel+''
|
this.pageCount = getCurrentPages().length;
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
var that = this
|
||||||
};
|
uni.getStorage({
|
||||||
</script>
|
key:'shopInfo',
|
||||||
|
success(e){
|
||||||
<style lang="scss">
|
that.tel = e.data.mobile
|
||||||
.container-box {
|
}
|
||||||
width: 100%;
|
})
|
||||||
|
|
||||||
.item-wrap {
|
},
|
||||||
border-radius: 10rpx;
|
computed: {
|
||||||
|
...mapGetters([
|
||||||
.image-box {
|
'globalAIAgentConfig',
|
||||||
border-radius: 10rpx;
|
'aiUnreadCount'
|
||||||
}
|
]),
|
||||||
|
aiAgentimg() {
|
||||||
image {
|
return this.globalAIAgentConfig?.icon || this.$util.getDefaultImage().aiAgent || '' // AI智能助手的头像
|
||||||
width: 100%;
|
},
|
||||||
height: auto;
|
unreadCount() {
|
||||||
border-radius: 10rpx;
|
return this.aiUnreadCount
|
||||||
will-change: transform;
|
},
|
||||||
}
|
enableAIChat() {
|
||||||
}
|
return this.globalAIAgentConfig?.enable || true // 是否开启AI智能助手
|
||||||
}
|
},
|
||||||
|
},
|
||||||
//悬浮按钮
|
methods: {
|
||||||
.fixed-box {
|
...mapMutations([
|
||||||
position: fixed;
|
'setAiUnreadCount'
|
||||||
right: 0rpx;
|
]),
|
||||||
bottom: 200rpx;
|
|
||||||
z-index: 10;
|
//拨打电话
|
||||||
// background: #fff;
|
call(){
|
||||||
// box-shadow: 2rpx 2rpx 22rpx rgba(0, 0, 0, 0.3);
|
uni.makePhoneCall({
|
||||||
border-radius: 120rpx;
|
phoneNumber:this.tel+''
|
||||||
padding: 20rpx 0;
|
})
|
||||||
display: flex;
|
},
|
||||||
justify-content: center;
|
|
||||||
flex-direction: column;
|
// 打开AI聊天弹窗
|
||||||
width: 100rpx;
|
openAIChat() {
|
||||||
box-sizing: border-box;
|
if (this.enableAIChat) {
|
||||||
transition: 0.3s;
|
this.setAiUnreadCount(0);
|
||||||
overflow: hidden;
|
}
|
||||||
|
|
||||||
.btn-item {
|
this.$util.redirectTo('/pages_tool/ai-chat/index')
|
||||||
display: flex;
|
}
|
||||||
justify-content: center;
|
|
||||||
text-align: center;
|
}
|
||||||
flex-direction: column;
|
};
|
||||||
line-height: 1;
|
</script>
|
||||||
margin: 14rpx 0;
|
|
||||||
transition: 0.1s;
|
<style lang="scss">
|
||||||
background: #fff;
|
.container-box {
|
||||||
border-radius: 50rpx;
|
width: 100%;
|
||||||
width: 80rpx;
|
|
||||||
height: 80rpx;
|
.item-wrap {
|
||||||
padding: 0;
|
border-radius: 10rpx;
|
||||||
text {
|
|
||||||
font-size: 36rpx;
|
.image-box {
|
||||||
font-weight: bold;
|
border-radius: 10rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
view {
|
image {
|
||||||
font-size: 26rpx;
|
width: 100%;
|
||||||
font-weight: bold;
|
height: auto;
|
||||||
}
|
border-radius: 10rpx;
|
||||||
|
will-change: transform;
|
||||||
&.show {
|
}
|
||||||
transform: rotate(180deg);
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.switch {}
|
//悬浮按钮
|
||||||
|
.fixed-box {
|
||||||
&.icon-xiala {
|
position: fixed;
|
||||||
margin: 0;
|
right: 0rpx;
|
||||||
margin-top: 0.1rpx;
|
bottom: 200rpx;
|
||||||
}
|
z-index: 10;
|
||||||
}
|
// background: #fff;
|
||||||
}
|
// box-shadow: 2rpx 2rpx 22rpx rgba(0, 0, 0, 0.3);
|
||||||
|
border-radius: 120rpx;
|
||||||
|
padding: 20rpx 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
flex-direction: column;
|
||||||
|
width: 100rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
transition: 0.3s;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
.btn-item {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center;
|
||||||
|
flex-direction: column;
|
||||||
|
line-height: 1;
|
||||||
|
margin: 14rpx 0;
|
||||||
|
transition: 0.1s;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 50rpx;
|
||||||
|
width: 80rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
padding: 0;
|
||||||
|
position: relative;
|
||||||
|
text {
|
||||||
|
font-size: 36rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
view {
|
||||||
|
font-size: 26rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.show {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.switch {}
|
||||||
|
|
||||||
|
&.icon-xiala {
|
||||||
|
margin: 0;
|
||||||
|
margin-top: 0.1rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 未读消息小红点
|
||||||
|
.unread-badge {
|
||||||
|
position: absolute;
|
||||||
|
top: -5rpx;
|
||||||
|
right: -5rpx;
|
||||||
|
background-color: #ff4544;
|
||||||
|
color: white;
|
||||||
|
border-radius: 20rpx;
|
||||||
|
min-width: 30rpx;
|
||||||
|
height: 30rpx;
|
||||||
|
font-size: 10rpx;
|
||||||
|
line-height: 30rpx;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0 8rpx;
|
||||||
|
z-index: 1;
|
||||||
|
box-shadow: 0 2rpx 10rpx rgba(255, 69, 68, 0.3);
|
||||||
|
|
||||||
|
.badge-text {
|
||||||
|
font-size: 8rpx;
|
||||||
|
// #ifdef MP-WEIXIN
|
||||||
|
font-size: 20rpx;
|
||||||
|
// #endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
File diff suppressed because it is too large
Load Diff
4
lang/zh-cn/ai/ai-chat.js
Normal file
4
lang/zh-cn/ai/ai-chat.js
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
export const lang = {
|
||||||
|
//title为每个页面的标题
|
||||||
|
title: 'AI智能客服'
|
||||||
|
}
|
||||||
@@ -11,7 +11,7 @@ export const lang = {
|
|||||||
home:'首页',
|
home:'首页',
|
||||||
cart:'购物车',
|
cart:'购物车',
|
||||||
leave:'立即留言',
|
leave:'立即留言',
|
||||||
make:'立即咨询',
|
make:'立即支付',
|
||||||
|
|
||||||
send:'配送',
|
send:'配送',
|
||||||
express:'快递发货',
|
express:'快递发货',
|
||||||
|
|||||||
@@ -54,8 +54,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/* 快应用特有相关 */
|
|
||||||
"quickapp" : {},
|
|
||||||
/* 小程序特有相关 */
|
/* 小程序特有相关 */
|
||||||
"mp-weixin" : {
|
"mp-weixin" : {
|
||||||
"appid" : "wxa8f94045d9c2fc10",
|
"appid" : "wxa8f94045d9c2fc10",
|
||||||
@@ -126,5 +124,12 @@
|
|||||||
"uniStatistics" : {
|
"uniStatistics" : {
|
||||||
"version" : "2"
|
"version" : "2"
|
||||||
},
|
},
|
||||||
"sassImplementationName" : "node-sass"
|
"sassImplementationName" : "node-sass",
|
||||||
|
/** 快应用配置 **/
|
||||||
|
"quickapp-webview" : {
|
||||||
|
"package" : "com.jieganfsj.fivegshop",
|
||||||
|
"minPlatformVersion" : 1070,
|
||||||
|
"versionName" : "1.0.0",
|
||||||
|
"versionCode" : 0
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
4
node_modules/jweixin-module/README.md
generated
vendored
4
node_modules/jweixin-module/README.md
generated
vendored
@@ -19,8 +19,8 @@ https://unpkg.com/jweixin-module/out/index.js
|
|||||||
## 使用
|
## 使用
|
||||||
|
|
||||||
```js
|
```js
|
||||||
var wx = require('jweixin-module')
|
var jweixin = require('jweixin-module')
|
||||||
wx.ready(function(){
|
jweixin.ready(function(){
|
||||||
// TODO
|
// TODO
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|||||||
80
node_modules/jweixin-module/package.json
generated
vendored
80
node_modules/jweixin-module/package.json
generated
vendored
@@ -1,60 +1,26 @@
|
|||||||
{
|
{
|
||||||
"_from": "jweixin-module",
|
|
||||||
"_id": "jweixin-module@1.4.1",
|
|
||||||
"_inBundle": false,
|
|
||||||
"_integrity": "sha512-2R2oa1lYhAsclfjKSf3DP4ZiP1dcrQUbM7aklbeJA+UAg/LS7MqoA6UbTy1cs4sbB34z62K4bKW0Z9iazD8ejg==",
|
|
||||||
"_location": "/jweixin-module",
|
|
||||||
"_phantomChildren": {},
|
|
||||||
"_requested": {
|
|
||||||
"type": "tag",
|
|
||||||
"registry": true,
|
|
||||||
"raw": "jweixin-module",
|
|
||||||
"name": "jweixin-module",
|
"name": "jweixin-module",
|
||||||
"escapedName": "jweixin-module",
|
"version": "1.6.0",
|
||||||
"rawSpec": "",
|
"description": "微信JS-SDK",
|
||||||
"saveSpec": null,
|
"main": "lib/index.js",
|
||||||
"fetchSpec": "latest"
|
"scripts": {},
|
||||||
},
|
"repository": {
|
||||||
"_requiredBy": [
|
"type": "git",
|
||||||
"#USER",
|
"url": "git+https://github.com/zhetengbiji/jweixin-module.git"
|
||||||
"/"
|
},
|
||||||
],
|
"keywords": [
|
||||||
"_resolved": "https://registry.npmjs.org/jweixin-module/-/jweixin-module-1.4.1.tgz",
|
"wxjssdk",
|
||||||
"_shasum": "1fc8fa42622243f6c35651d272cd587debf56cd1",
|
"weixin",
|
||||||
"_spec": "jweixin-module",
|
"jweixin",
|
||||||
"_where": "E:\\demo\\niushop_uniapp",
|
"wechat",
|
||||||
"author": {
|
"jssdk",
|
||||||
"name": "Shengqiang Guo"
|
"wx"
|
||||||
},
|
],
|
||||||
"bugs": {
|
"author": "Shengqiang Guo",
|
||||||
"url": "https://github.com/zhetengbiji/jweixin-module/issues"
|
"license": "ISC",
|
||||||
},
|
"bugs": {
|
||||||
"bundleDependencies": false,
|
"url": "https://github.com/zhetengbiji/jweixin-module/issues"
|
||||||
"deprecated": false,
|
},
|
||||||
"description": "微信JS-SDK",
|
"homepage": "https://github.com/zhetengbiji/jweixin-module#readme",
|
||||||
"devDependencies": {
|
"devDependencies": {}
|
||||||
"textfile": "^1.2.0",
|
|
||||||
"uglify-js": "^3.4.9"
|
|
||||||
},
|
|
||||||
"homepage": "https://github.com/zhetengbiji/jweixin-module#readme",
|
|
||||||
"keywords": [
|
|
||||||
"wxjssdk",
|
|
||||||
"weixin",
|
|
||||||
"jweixin",
|
|
||||||
"wechat",
|
|
||||||
"jssdk",
|
|
||||||
"wx"
|
|
||||||
],
|
|
||||||
"license": "ISC",
|
|
||||||
"main": "out/index.js",
|
|
||||||
"name": "jweixin-module",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/zhetengbiji/jweixin-module.git"
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"build": "node build",
|
|
||||||
"prepublish": "npm run build"
|
|
||||||
},
|
|
||||||
"version": "1.4.1"
|
|
||||||
}
|
}
|
||||||
|
|||||||
28
package-lock.json
generated
28
package-lock.json
generated
@@ -1,13 +1,23 @@
|
|||||||
{
|
{
|
||||||
"name": "uniappsaas",
|
"name": "frontend",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
|
"dependencies": {
|
||||||
|
"@dcloudio/uni-quickapp-webview": "^2.0.2-4080420251103001",
|
||||||
|
"jweixin-module": "^1.6.0"
|
||||||
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"terser-webpack-plugin": "^5.3.10"
|
"terser-webpack-plugin": "^5.3.10"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@dcloudio/uni-quickapp-webview": {
|
||||||
|
"version": "2.0.2-4080420251103001",
|
||||||
|
"resolved": "https://registry.npmmirror.com/@dcloudio/uni-quickapp-webview/-/uni-quickapp-webview-2.0.2-4080420251103001.tgz",
|
||||||
|
"integrity": "sha512-dxDDk/37OoUZ6PmXhXS/9C8Y5tYRalU6FIXT5OlPf1co2VuLF0OrdqAmINJDWs1dBQgN7e6Hw+bkeK9+4SzLxQ==",
|
||||||
|
"license": "Apache-2.0"
|
||||||
|
},
|
||||||
"node_modules/@jridgewell/gen-mapping": {
|
"node_modules/@jridgewell/gen-mapping": {
|
||||||
"version": "0.3.5",
|
"version": "0.3.5",
|
||||||
"resolved": "https://repo.huaweicloud.com/repository/npm/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
|
"resolved": "https://repo.huaweicloud.com/repository/npm/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
|
||||||
@@ -619,6 +629,12 @@
|
|||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/jweixin-module": {
|
||||||
|
"version": "1.6.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/jweixin-module/-/jweixin-module-1.6.0.tgz",
|
||||||
|
"integrity": "sha512-dGk9cf+ipipHmtzYmKZs5B2toX+p4hLyllGLF6xuC8t+B05oYxd8fYoaRz0T30U2n3RUv8a4iwvjhA+OcYz52w==",
|
||||||
|
"license": "ISC"
|
||||||
|
},
|
||||||
"node_modules/loader-runner": {
|
"node_modules/loader-runner": {
|
||||||
"version": "4.3.0",
|
"version": "4.3.0",
|
||||||
"resolved": "https://repo.huaweicloud.com/repository/npm/loader-runner/-/loader-runner-4.3.0.tgz",
|
"resolved": "https://repo.huaweicloud.com/repository/npm/loader-runner/-/loader-runner-4.3.0.tgz",
|
||||||
@@ -984,6 +1000,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@dcloudio/uni-quickapp-webview": {
|
||||||
|
"version": "2.0.2-4080420251103001",
|
||||||
|
"resolved": "https://registry.npmmirror.com/@dcloudio/uni-quickapp-webview/-/uni-quickapp-webview-2.0.2-4080420251103001.tgz",
|
||||||
|
"integrity": "sha512-dxDDk/37OoUZ6PmXhXS/9C8Y5tYRalU6FIXT5OlPf1co2VuLF0OrdqAmINJDWs1dBQgN7e6Hw+bkeK9+4SzLxQ=="
|
||||||
|
},
|
||||||
"@jridgewell/gen-mapping": {
|
"@jridgewell/gen-mapping": {
|
||||||
"version": "0.3.5",
|
"version": "0.3.5",
|
||||||
"resolved": "https://repo.huaweicloud.com/repository/npm/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
|
"resolved": "https://repo.huaweicloud.com/repository/npm/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
|
||||||
@@ -1456,6 +1477,11 @@
|
|||||||
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
|
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"jweixin-module": {
|
||||||
|
"version": "1.6.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/jweixin-module/-/jweixin-module-1.6.0.tgz",
|
||||||
|
"integrity": "sha512-dGk9cf+ipipHmtzYmKZs5B2toX+p4hLyllGLF6xuC8t+B05oYxd8fYoaRz0T30U2n3RUv8a4iwvjhA+OcYz52w=="
|
||||||
|
},
|
||||||
"loader-runner": {
|
"loader-runner": {
|
||||||
"version": "4.3.0",
|
"version": "4.3.0",
|
||||||
"resolved": "https://repo.huaweicloud.com/repository/npm/loader-runner/-/loader-runner-4.3.0.tgz",
|
"resolved": "https://repo.huaweicloud.com/repository/npm/loader-runner/-/loader-runner-4.3.0.tgz",
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
"terser-webpack-plugin": "^5.3.10"
|
"terser-webpack-plugin": "^5.3.10"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@dcloudio/uni-quickapp-webview": "^2.0.2-4080420251103001",
|
||||||
"jweixin-module": "^1.6.0"
|
"jweixin-module": "^1.6.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
1789
pages.json
1789
pages.json
File diff suppressed because it is too large
Load Diff
10
pages_tool/ai-chat/index.json
Normal file
10
pages_tool/ai-chat/index.json
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"navigationBarBackgroundColor": "#ff4544",
|
||||||
|
"navigationBarTextStyle": "white",
|
||||||
|
"backgroundColor": "#f8f8f8",
|
||||||
|
"enablePullDownRefresh": false,
|
||||||
|
"onReachBottomDistance": 50,
|
||||||
|
"usingComponents": {
|
||||||
|
"ai-chat-message": "/components/ai-chat-message/ai-chat-message"
|
||||||
|
}
|
||||||
|
}
|
||||||
650
pages_tool/ai-chat/index.vue
Normal file
650
pages_tool/ai-chat/index.vue
Normal file
@@ -0,0 +1,650 @@
|
|||||||
|
<template>
|
||||||
|
<view class="ai-chat-page" :style="wrapperPageStyle">
|
||||||
|
<!--自定义导航头部 -->
|
||||||
|
<view class="custom-navbar" ref="pageHeader" v-if="showCustomNavbar">
|
||||||
|
<view class="header-left">
|
||||||
|
<button class="back-btn" v-show="showBackButton" @click="goBack">
|
||||||
|
<text class="iconfont icon-back"></text>
|
||||||
|
</button>
|
||||||
|
<!-- 占位元素,确保布局平衡 -->
|
||||||
|
<view v-show="!showBackButton" class="placeholder"></view>
|
||||||
|
</view>
|
||||||
|
<view class="header-center">
|
||||||
|
<text class="header-subtitle">在线为您服务</text>
|
||||||
|
</view>
|
||||||
|
<view class="header-right">
|
||||||
|
<button class="menu-btn" v-show="showMenuButton" @click="showMenu">
|
||||||
|
<text class="iconfont icon-ellipsis"></text>
|
||||||
|
</button>
|
||||||
|
<!-- 占位元素,确保布局平衡 -->
|
||||||
|
<view v-show="!showMenuButton" class="placeholder"></view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- 聊天内容区域 -->
|
||||||
|
<view class="chat-content"
|
||||||
|
:style="wrapperChatContentStyle"
|
||||||
|
>
|
||||||
|
<!-- AI聊天组件 -->
|
||||||
|
<ai-chat-message
|
||||||
|
ref="chat"
|
||||||
|
:initial-messages="initialMessages"
|
||||||
|
:user-avatar="userAvatar"
|
||||||
|
:ai-avatar="aiAvatar"
|
||||||
|
@message-sent="onMessageSent"
|
||||||
|
@ai-response="onAIResponse"
|
||||||
|
@action-click="onActionClick"
|
||||||
|
@history-loaded="onHistoryLoaded"
|
||||||
|
@file-preview="onFilePreview"
|
||||||
|
@audio-play="onAudioPlay"
|
||||||
|
@audio-pause="onAudioPause"
|
||||||
|
@video-play="onVideoPlay"
|
||||||
|
@video-pause="onVideoPause"
|
||||||
|
@link-open="onLinkOpen"
|
||||||
|
@product-view="onProductView"
|
||||||
|
@input-change="onInputChange" />
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { mapGetters, mapMutations } from 'vuex'
|
||||||
|
import navigationHelper from '@/common/js/navigation';
|
||||||
|
import { EventSafety } from '@/common/js/event-safety';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
initialMessages: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
role: 'ai',
|
||||||
|
type: 'text',
|
||||||
|
content: '您好!我是AI智能客服,很高兴为您服务!\n\n我可以帮您:\n• 解答产品相关问题\n• 处理订单问题\n• 提供技术支持\n• 推荐相关商品\n\n请告诉我您需要什么帮助?',
|
||||||
|
timestamp: Date.now() - 60000,
|
||||||
|
actions: [
|
||||||
|
{ type: 'like', icon: 'icon-dianzan1', text: '喜欢', count: 0 },
|
||||||
|
{ type: 'dislike', icon: 'icon-dianzan1', text: '不喜欢', count: 0 }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
|
// --- 系统导航栏/状态栏相关 ---
|
||||||
|
navBarHeight: 44, // uni-page-head 系统导航栏,默认高度为44px
|
||||||
|
statusBarHeight: 0, // 状态栏高度,默认0
|
||||||
|
|
||||||
|
// --- 自定义导航栏 ---
|
||||||
|
showCustomNavbar: true, // 是否显示自定义导航栏
|
||||||
|
showBackButton: false, // 是否显示返回按钮
|
||||||
|
showMenuButton: true, // 是否显示设置菜单按钮
|
||||||
|
|
||||||
|
// --- 聊天内容区域 ---
|
||||||
|
scrollViewHeight: '0px',
|
||||||
|
|
||||||
|
|
||||||
|
// 事件处理器引用(用于清理)
|
||||||
|
safeEventHandlers: new Map()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
...mapGetters([
|
||||||
|
'globalAIAgentConfig'
|
||||||
|
]),
|
||||||
|
|
||||||
|
/// ---- 关于AI客服的配置,支持远程配置 ----
|
||||||
|
userAvatar() {
|
||||||
|
return this.globalAIAgentConfig?.userAvatar || '/static/images/user-avatar.png'
|
||||||
|
},
|
||||||
|
aiAvatar() {
|
||||||
|
return this.globalAIAgentConfig?.aiAvatar || '/static/images/ai-avatar.png'
|
||||||
|
},
|
||||||
|
/// ---- others ----
|
||||||
|
containerHeight() {
|
||||||
|
return `calc(100vh - ${this.navBarHeight + this.statusBarHeight}px)`
|
||||||
|
},
|
||||||
|
wrapperPageStyle() {
|
||||||
|
// #ifdef H5
|
||||||
|
return `top: ${this.navBarHeight + 'px'};`
|
||||||
|
// #endif
|
||||||
|
|
||||||
|
// #ifdef MP-WEIXIN
|
||||||
|
return `top: -1px;` // 微信小程序需要上移1px, 否则与系统导航栏出现1px的空隙
|
||||||
|
// #endif
|
||||||
|
|
||||||
|
return ``
|
||||||
|
},
|
||||||
|
wrapperChatContentStyle() {
|
||||||
|
return {
|
||||||
|
height: this.containerHeight,
|
||||||
|
paddingTop: this.showCustomNavbar ? '0' : (this.navHeight + 'px')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
async onLoad(options) {
|
||||||
|
await this.initPage(options)
|
||||||
|
},
|
||||||
|
|
||||||
|
async onReady() {
|
||||||
|
await this.initNavigation()
|
||||||
|
},
|
||||||
|
|
||||||
|
onShow() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
onHide() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
onUnload() {
|
||||||
|
this.cleanup()
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
// ========== 安全事件处理 ==========
|
||||||
|
setupSafeEventListeners() {
|
||||||
|
// 使用 EventSafety 包装事件处理器
|
||||||
|
const safeHandlers = {
|
||||||
|
serviceRequest: EventSafety.wrapEventHandler(
|
||||||
|
this.handleServiceRequest.bind(this),
|
||||||
|
{ onError: this.handleEventError.bind(this) }
|
||||||
|
),
|
||||||
|
navigationRequest: EventSafety.wrapEventHandler(
|
||||||
|
this.handleNavigationRequest.bind(this),
|
||||||
|
{ onError: this.handleEventError.bind(this) }
|
||||||
|
),
|
||||||
|
componentInteraction: EventSafety.wrapEventHandler(
|
||||||
|
this.handleComponentInteraction.bind(this),
|
||||||
|
{ onError: this.handleEventError.bind(this) }
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 注册事件监听
|
||||||
|
this.$on('service.requestComponentInfo', safeHandlers.serviceRequest)
|
||||||
|
this.$on('navigation.requestInfo', safeHandlers.navigationRequest)
|
||||||
|
this.$on('component.interaction', safeHandlers.componentInteraction)
|
||||||
|
|
||||||
|
// 保存处理器引用用于清理
|
||||||
|
this.safeEventHandlers.set('serviceRequest', safeHandlers.serviceRequest)
|
||||||
|
this.safeEventHandlers.set('navigationRequest', safeHandlers.navigationRequest)
|
||||||
|
this.safeEventHandlers.set('componentInteraction', safeHandlers.componentInteraction)
|
||||||
|
},
|
||||||
|
|
||||||
|
setupNavigationEvents() {
|
||||||
|
// 监听窗口大小变化
|
||||||
|
uni.onWindowResize((res) => {
|
||||||
|
console.log('窗口大小变化:', res.size)
|
||||||
|
this.calculateScrollViewHeight()
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// ========== 事件处理方法 ==========
|
||||||
|
|
||||||
|
async handleServiceRequest(event) {
|
||||||
|
console.log('处理服务请求:', EventSafety.extractEventData(event))
|
||||||
|
|
||||||
|
// 安全地检查事件目标
|
||||||
|
if (event.matches('.service-component') ||
|
||||||
|
event.detail?.componentType === 'service') {
|
||||||
|
await this.processServiceRequest(event)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
async handleNavigationRequest(event) {
|
||||||
|
console.log('处理导航请求:', event.type)
|
||||||
|
|
||||||
|
// 提供导航信息
|
||||||
|
this.emitNavigationInfo(event)
|
||||||
|
},
|
||||||
|
|
||||||
|
handleComponentInteraction(event) {
|
||||||
|
console.log('处理组件交互:', event.detail)
|
||||||
|
|
||||||
|
// 安全地处理组件交互
|
||||||
|
this.processComponentInteraction(event)
|
||||||
|
},
|
||||||
|
|
||||||
|
handleEventError(error, event) {
|
||||||
|
console.error('事件处理错误:', {
|
||||||
|
error: error.message,
|
||||||
|
eventType: event?.type,
|
||||||
|
component: this.$options.name
|
||||||
|
})
|
||||||
|
|
||||||
|
this.showError('操作失败,请重试')
|
||||||
|
},
|
||||||
|
|
||||||
|
// ========== 初始化页面 ==========
|
||||||
|
async initPage(options = {}) {
|
||||||
|
this.$langConfig.title('AI智能客服');
|
||||||
|
this.initChat()
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
// 初始化导航栏相关配置
|
||||||
|
async initNavigation() {
|
||||||
|
try {
|
||||||
|
// 获取导航栏高度
|
||||||
|
this.navBarHeight = await navigationHelper.getNavigationHeight(this, {forceRefresh: false})
|
||||||
|
|
||||||
|
// 获取状态栏高度
|
||||||
|
this.statusBarHeight = navigationHelper.getStatusBarHeight()
|
||||||
|
|
||||||
|
// 计算滚动视图高度
|
||||||
|
this.calculateScrollViewHeight()
|
||||||
|
|
||||||
|
// 注册导航相关事件
|
||||||
|
this.setupNavigationEvents()
|
||||||
|
|
||||||
|
} catch (error) {
|
||||||
|
console.error('初始化导航栏失败:', error)
|
||||||
|
this.setFallbackNavigationValues()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 计算滚动视图高度
|
||||||
|
calculateScrollViewHeight() {
|
||||||
|
const safeArea = navigationHelper.getSafeAreaInsets()
|
||||||
|
const bottomInset = safeArea.bottom || 0
|
||||||
|
const inputHeight = 120 // 输入区域高度
|
||||||
|
|
||||||
|
this.scrollViewHeight = `calc(100vh - ${this.navBarHeight + this.statusBarHeight + inputHeight + bottomInset}px)`
|
||||||
|
},
|
||||||
|
|
||||||
|
// 备用高度设置
|
||||||
|
setFallbackNavigationValues() {
|
||||||
|
// #ifdef MP-WEIXIN
|
||||||
|
this.navBarHeight = 44
|
||||||
|
this.statusBarHeight = 20
|
||||||
|
// #endif
|
||||||
|
|
||||||
|
// #ifdef H5
|
||||||
|
this.navBarHeight = 44
|
||||||
|
this.statusBarHeight = 0
|
||||||
|
// #endif
|
||||||
|
|
||||||
|
// #ifdef APP-PLUS
|
||||||
|
this.navBarHeight = 88
|
||||||
|
this.statusBarHeight = 44
|
||||||
|
// #endif
|
||||||
|
},
|
||||||
|
|
||||||
|
cleanup() {
|
||||||
|
// 清理事件监听器
|
||||||
|
this.safeEventHandlers.forEach((handler, eventType) => {
|
||||||
|
this.$off(eventType, handler)
|
||||||
|
})
|
||||||
|
this.safeEventHandlers.clear()
|
||||||
|
|
||||||
|
console.log('组件清理完成')
|
||||||
|
},
|
||||||
|
|
||||||
|
showError(message) {
|
||||||
|
uni.showToast({
|
||||||
|
title: message,
|
||||||
|
icon: 'none',
|
||||||
|
duration: 2000
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
// 初始化聊天
|
||||||
|
initChat() {
|
||||||
|
// 可以在这里加载历史消息
|
||||||
|
console.log('AI聊天页面初始化')
|
||||||
|
},
|
||||||
|
|
||||||
|
// 返回上一页
|
||||||
|
goBack() {
|
||||||
|
uni.navigateBack()
|
||||||
|
},
|
||||||
|
|
||||||
|
// 显示菜单
|
||||||
|
showMenu() {
|
||||||
|
uni.showActionSheet({
|
||||||
|
itemList: ['清空聊天', '导出记录', '设置', '帮助'],
|
||||||
|
success: (res) => {
|
||||||
|
switch (res.tapIndex) {
|
||||||
|
case 0:
|
||||||
|
this.clearChat()
|
||||||
|
break
|
||||||
|
case 1:
|
||||||
|
this.exportChat()
|
||||||
|
break
|
||||||
|
case 2:
|
||||||
|
this.showSettings()
|
||||||
|
break
|
||||||
|
case 3:
|
||||||
|
this.showHelp()
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 清空聊天
|
||||||
|
clearChat() {
|
||||||
|
uni.showModal({
|
||||||
|
title: '提示',
|
||||||
|
content: '确定要清空聊天记录吗?',
|
||||||
|
success: (res) => {
|
||||||
|
if (res.confirm) {
|
||||||
|
this.$refs.chat.clearMessages()
|
||||||
|
// 重新添加欢迎消息
|
||||||
|
this.$refs.chat.addMessage({
|
||||||
|
id: Date.now(),
|
||||||
|
role: 'ai',
|
||||||
|
type: 'text',
|
||||||
|
content: '聊天记录已清空,有什么可以帮助您的吗?',
|
||||||
|
timestamp: Date.now()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 导出聊天记录
|
||||||
|
exportChat() {
|
||||||
|
uni.showToast({
|
||||||
|
title: '功能开发中',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 显示设置
|
||||||
|
showSettings() {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/settings/index'
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 显示帮助
|
||||||
|
showHelp() {
|
||||||
|
const helpMessage = {
|
||||||
|
id: Date.now(),
|
||||||
|
role: 'ai',
|
||||||
|
type: 'markdown',
|
||||||
|
content: `# 使用帮助
|
||||||
|
|
||||||
|
## 基本功能
|
||||||
|
- **发送消息**: 在输入框中输入文字后发送
|
||||||
|
- **语音输入**: 点击麦克风图标进行语音输入
|
||||||
|
- **附件发送**: 点击+号可以发送图片、文件、位置
|
||||||
|
|
||||||
|
## 消息类型
|
||||||
|
- **文本消息**: 普通文字对话
|
||||||
|
- **Markdown**: 支持格式化的文档内容
|
||||||
|
- **文件**: 支持各种文件格式预览
|
||||||
|
- **音频**: 支持语音消息播放
|
||||||
|
- **视频**: 支持视频播放
|
||||||
|
- **链接**: 支持网页链接跳转
|
||||||
|
- **商品**: 支持商品卡片展示
|
||||||
|
|
||||||
|
## 操作功能
|
||||||
|
- **点赞/踩**: 对AI回复进行评价
|
||||||
|
- **复制**: 长按消息可复制内容
|
||||||
|
- **转发**: 支持消息转发功能`,
|
||||||
|
timestamp: Date.now()
|
||||||
|
}
|
||||||
|
this.$refs.chat.addMessage(helpMessage)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 用户发送消息
|
||||||
|
onMessageSent(message) {
|
||||||
|
console.log('用户发送消息:', message)
|
||||||
|
|
||||||
|
// 使用AI服务获取回复
|
||||||
|
// AI聊天组件内部已经集成了AI服务,这里只需要监听事件
|
||||||
|
},
|
||||||
|
|
||||||
|
// AI回复消息
|
||||||
|
onAIResponse(message) {
|
||||||
|
console.log('AI回复消息:', message)
|
||||||
|
|
||||||
|
// 可以在这里处理AI回复后的逻辑
|
||||||
|
// 比如记录对话、更新状态等
|
||||||
|
},
|
||||||
|
|
||||||
|
// 生成AI回复
|
||||||
|
generateAIResponse(userMessage) {
|
||||||
|
const responses = [
|
||||||
|
'我理解您的需求,让我为您详细解答。',
|
||||||
|
'感谢您的提问,这是一个很好的问题。',
|
||||||
|
'根据您的问题,我建议您可以考虑以下几个方面:',
|
||||||
|
'这个问题很常见,让我为您提供一些解决方案。',
|
||||||
|
'我明白您的困惑,让我帮您分析一下。'
|
||||||
|
]
|
||||||
|
|
||||||
|
const randomResponse = responses[Math.floor(Math.random() * responses.length)]
|
||||||
|
|
||||||
|
const aiMessage = {
|
||||||
|
id: Date.now(),
|
||||||
|
role: 'ai',
|
||||||
|
type: 'text',
|
||||||
|
content: `${randomResponse}\n\n您的问题"${userMessage.content}"我已经收到,正在为您处理中...`,
|
||||||
|
timestamp: Date.now(),
|
||||||
|
actions: [
|
||||||
|
{ type: 'like', count: 0 },
|
||||||
|
{ type: 'dislike', count: 0 }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
this.$refs.chat.addMessage(aiMessage)
|
||||||
|
this.$emit('ai-response', aiMessage)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 操作按钮点击
|
||||||
|
onActionClick({ action, message }) {
|
||||||
|
console.log('操作点击:', action, message)
|
||||||
|
|
||||||
|
switch (action.type) {
|
||||||
|
case 'like':
|
||||||
|
uni.showToast({
|
||||||
|
title: '感谢您的反馈!',
|
||||||
|
icon: 'success'
|
||||||
|
})
|
||||||
|
break
|
||||||
|
case 'dislike':
|
||||||
|
uni.showToast({
|
||||||
|
title: '我们会改进服务',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
break
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 历史消息加载完成
|
||||||
|
onHistoryLoaded(messages) {
|
||||||
|
console.log('历史消息加载完成:', messages.length)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 文件预览
|
||||||
|
onFilePreview(message) {
|
||||||
|
console.log('文件预览:', message)
|
||||||
|
uni.showToast({
|
||||||
|
title: '打开文件: ' + message.fileName,
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 音频播放
|
||||||
|
onAudioPlay(message) {
|
||||||
|
console.log('音频播放:', message)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 音频暂停
|
||||||
|
onAudioPause(message) {
|
||||||
|
console.log('音频暂停:', message)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 视频播放
|
||||||
|
onVideoPlay(message) {
|
||||||
|
console.log('视频播放:', message)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 视频暂停
|
||||||
|
onVideoPause(message) {
|
||||||
|
console.log('视频暂停:', message)
|
||||||
|
},
|
||||||
|
|
||||||
|
// 链接打开
|
||||||
|
onLinkOpen(message) {
|
||||||
|
console.log('链接打开:', message)
|
||||||
|
uni.showModal({
|
||||||
|
title: '打开链接',
|
||||||
|
content: `确定要打开链接:${message.url} 吗?`,
|
||||||
|
success: (res) => {
|
||||||
|
if (res.confirm) {
|
||||||
|
// #ifdef H5
|
||||||
|
window.open(message.url, '_blank')
|
||||||
|
// #endif
|
||||||
|
// #ifdef APP-PLUS
|
||||||
|
plus.runtime.openURL(message.url)
|
||||||
|
// #endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 商品查看
|
||||||
|
onProductView(message) {
|
||||||
|
console.log('商品查看:', message)
|
||||||
|
uni.showToast({
|
||||||
|
title: '查看商品: ' + message.title,
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 输入内容变化
|
||||||
|
onInputChange(value) {
|
||||||
|
console.log('输入内容:', value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
|
||||||
|
/* 引入图标字体 */
|
||||||
|
@import url('/common/css/iconfont.css');
|
||||||
|
|
||||||
|
/* 页面样式 */
|
||||||
|
.ai-chat-page {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
background-color: #f8f8f8;
|
||||||
|
overflow: hidden;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 自定义导航头部 */
|
||||||
|
.custom-navbar {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 20rpx 30rpx;
|
||||||
|
background-color: white;
|
||||||
|
border-bottom: 2rpx solid #eeeeee;
|
||||||
|
|
||||||
|
.header-left {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.back-btn {
|
||||||
|
width: 60rpx;
|
||||||
|
height: 60rpx;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: #f8f8f8;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
.iconfont {
|
||||||
|
font-size: 32rpx;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.placeholder {
|
||||||
|
width: 120rpx;
|
||||||
|
height: 60rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-center {
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 20rpx;
|
||||||
|
|
||||||
|
.header-title {
|
||||||
|
font-size: 36rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-subtitle {
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-right {
|
||||||
|
flex: 0 0 auto;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.menu-btn {
|
||||||
|
width: 60rpx;
|
||||||
|
height: 60rpx;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: #f8f8f8;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
.iconfont {
|
||||||
|
font-size: 32rpx;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.placeholder {
|
||||||
|
width: 120rpx;
|
||||||
|
height: 60rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 聊天内容区域 */
|
||||||
|
.chat-content {
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
overflow: hidden;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* 底部tabBar占位样式 */
|
||||||
|
.page-bottom {
|
||||||
|
width: 100%;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
@@ -1,75 +1,78 @@
|
|||||||
{
|
{
|
||||||
"description": "项目配置文件",
|
"description": "项目配置文件",
|
||||||
"packOptions": {
|
"packOptions": {
|
||||||
"ignore": []
|
"ignore": [],
|
||||||
},
|
"include": []
|
||||||
"setting": {
|
},
|
||||||
"urlCheck": true,
|
"setting": {
|
||||||
"es6": true,
|
"urlCheck": true,
|
||||||
"enhance": false,
|
"es6": true,
|
||||||
"postcss": true,
|
"enhance": false,
|
||||||
"preloadBackgroundData": false,
|
"postcss": true,
|
||||||
"minified": true,
|
"preloadBackgroundData": false,
|
||||||
"newFeature": false,
|
"minified": true,
|
||||||
"coverView": true,
|
"newFeature": false,
|
||||||
"nodeModules": false,
|
"coverView": true,
|
||||||
"autoAudits": false,
|
"nodeModules": false,
|
||||||
"showShadowRootInWxmlPanel": true,
|
"autoAudits": false,
|
||||||
"scopeDataCheck": false,
|
"showShadowRootInWxmlPanel": true,
|
||||||
"uglifyFileName": false,
|
"scopeDataCheck": false,
|
||||||
"checkInvalidKey": true,
|
"uglifyFileName": false,
|
||||||
"checkSiteMap": true,
|
"checkInvalidKey": true,
|
||||||
"uploadWithSourceMap": true,
|
"checkSiteMap": true,
|
||||||
"compileHotReLoad": false,
|
"uploadWithSourceMap": true,
|
||||||
"useMultiFrameRuntime": true,
|
"compileHotReLoad": false,
|
||||||
"useApiHook": true,
|
"useMultiFrameRuntime": true,
|
||||||
"useApiHostProcess": true,
|
"useApiHook": true,
|
||||||
"babelSetting": {
|
"useApiHostProcess": true,
|
||||||
"ignore": [],
|
"babelSetting": {
|
||||||
"disablePlugins": [],
|
"ignore": [],
|
||||||
"outputPath": ""
|
"disablePlugins": [],
|
||||||
},
|
"outputPath": ""
|
||||||
"enableEngineNative": false,
|
},
|
||||||
"bundle": false,
|
"enableEngineNative": false,
|
||||||
"useIsolateContext": true,
|
"bundle": false,
|
||||||
"useCompilerModule": true,
|
"useIsolateContext": true,
|
||||||
"userConfirmedUseCompilerModuleSwitch": false,
|
"useCompilerModule": true,
|
||||||
"userConfirmedBundleSwitch": false,
|
"userConfirmedUseCompilerModuleSwitch": false,
|
||||||
"packNpmManually": false,
|
"userConfirmedBundleSwitch": false,
|
||||||
"packNpmRelationList": [],
|
"packNpmManually": false,
|
||||||
"minifyWXSS": true
|
"packNpmRelationList": [],
|
||||||
},
|
"minifyWXSS": true,
|
||||||
"compileType": "miniprogram",
|
"compileWorklet": false,
|
||||||
"libVersion": "2.16.1",
|
"minifyWXML": true,
|
||||||
"appid": "wx29215aa1bd97bbd6",
|
"localPlugins": false,
|
||||||
"projectname": "niushop_b2c_v4_uniapp",
|
"disableUseStrict": false,
|
||||||
"debugOptions": {
|
"useCompilerPlugins": false,
|
||||||
"hidedInDevtools": []
|
"condition": false,
|
||||||
},
|
"swc": false,
|
||||||
"scripts": {},
|
"disableSWC": true
|
||||||
"staticServerOptions": {
|
},
|
||||||
"baseURL": "",
|
"compileType": "miniprogram",
|
||||||
"servePath": ""
|
"libVersion": "2.16.1",
|
||||||
},
|
"appid": "wx29215aa1bd97bbd6",
|
||||||
"isGameTourist": false,
|
"projectname": "niushop_b2c_v4_uniapp",
|
||||||
"condition": {
|
"isGameTourist": false,
|
||||||
"search": {
|
"condition": {
|
||||||
"list": []
|
"search": {
|
||||||
},
|
"list": []
|
||||||
"conversation": {
|
},
|
||||||
"list": []
|
"conversation": {
|
||||||
},
|
"list": []
|
||||||
"game": {
|
},
|
||||||
"list": []
|
"game": {
|
||||||
},
|
"list": []
|
||||||
"plugin": {
|
},
|
||||||
"list": []
|
"plugin": {
|
||||||
},
|
"list": []
|
||||||
"gamePlugin": {
|
},
|
||||||
"list": []
|
"gamePlugin": {
|
||||||
},
|
"list": []
|
||||||
"miniprogram": {
|
},
|
||||||
"list": []
|
"miniprogram": {
|
||||||
}
|
"list": []
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"simulatorPluginLibVersion": {},
|
||||||
|
"editorSetting": {}
|
||||||
}
|
}
|
||||||
57
scripts/iconfontcss-generate-preview.js
Normal file
57
scripts/iconfontcss-generate-preview.js
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
// generate-preview.js
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
function generateIconfontPreview(cssPath, outputPath) {
|
||||||
|
const cssContent = fs.readFileSync(cssPath, 'utf8');
|
||||||
|
|
||||||
|
// 解析图标
|
||||||
|
const iconRegex = /\.(icon-[^:]+):before\s*{\s*content:\s*["']\\([^"']+)["']/g;
|
||||||
|
const icons = [];
|
||||||
|
let match;
|
||||||
|
|
||||||
|
while ((match = iconRegex.exec(cssContent)) !== null) {
|
||||||
|
icons.push({
|
||||||
|
className: match[1],
|
||||||
|
unicode: '\\' + match[2]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 计算引入css文件相对于 outputPath的路径
|
||||||
|
const relativeCssPath = path.relative(path.dirname(outputPath), cssPath);
|
||||||
|
|
||||||
|
// 生成 HTML
|
||||||
|
const html = `<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Iconfont Preview</title>
|
||||||
|
<link rel="stylesheet" href="${relativeCssPath}">
|
||||||
|
<style>
|
||||||
|
body { font-family: Arial; padding: 20px; }
|
||||||
|
.grid { font-family: iconfont; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
|
||||||
|
.icon { text-align: center; padding: 10px; border: 1px solid #ddd; }
|
||||||
|
.char { font-size: 24px; }
|
||||||
|
.name { font-size: 12px; margin-top: 5px; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Iconfont Preview (${icons.length} icons)</h1>
|
||||||
|
<div class="grid">
|
||||||
|
${icons.map(icon => `
|
||||||
|
<div class="icon">
|
||||||
|
<div class="char ${icon.className}"></div>
|
||||||
|
<div class="name">${icon.className}</div>
|
||||||
|
</div>
|
||||||
|
`).join('')}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>`;
|
||||||
|
|
||||||
|
fs.writeFileSync(outputPath, html);
|
||||||
|
console.log(`预览已生成: ${outputPath}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 使用
|
||||||
|
const cssPath = path.join(__dirname, '../common/css/iconfont.css');
|
||||||
|
const outputPath = path.join(__dirname, '../iconfont-preview.html');
|
||||||
|
generateIconfontPreview(cssPath, outputPath);
|
||||||
745
store/index.js
745
store/index.js
@@ -1,351 +1,396 @@
|
|||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
import Vuex from 'vuex'
|
import Vuex from 'vuex'
|
||||||
Vue.use(Vuex)
|
Vue.use(Vuex)
|
||||||
|
|
||||||
import Http from '../common/js/http.js'
|
import Http from '../common/js/http.js'
|
||||||
import colorList from '../common/js/style_color.js'
|
import colorList from '../common/js/style_color.js'
|
||||||
|
|
||||||
const store = new Vuex.Store({
|
const store = new Vuex.Store({
|
||||||
state: {
|
state: {
|
||||||
token: null,
|
token: null,
|
||||||
siteInfo: null,
|
siteInfo: null,
|
||||||
memberInfo: null,
|
memberInfo: null,
|
||||||
tabBarList: '',
|
tabBarList: '',
|
||||||
siteState: 1,
|
siteState: 1,
|
||||||
themeStyle: '',
|
themeStyle: '',
|
||||||
addonIsExist: {
|
addonIsExist: {
|
||||||
bundling: 0,
|
bundling: 0,
|
||||||
coupon: 0,
|
coupon: 0,
|
||||||
discount: 0,
|
discount: 0,
|
||||||
fenxiao: 0,
|
fenxiao: 0,
|
||||||
gift: 0,
|
gift: 0,
|
||||||
groupbuy: 0,
|
groupbuy: 0,
|
||||||
manjian: 0,
|
manjian: 0,
|
||||||
memberconsume: 0,
|
memberconsume: 0,
|
||||||
memberrecharge: 0,
|
memberrecharge: 0,
|
||||||
memberregister: 0,
|
memberregister: 0,
|
||||||
membersignin: 0,
|
membersignin: 0,
|
||||||
memberwithdraw: 0,
|
memberwithdraw: 0,
|
||||||
memberrecommend: 0,
|
memberrecommend: 0,
|
||||||
pintuan: 0,
|
pintuan: 0,
|
||||||
pointexchange: 0,
|
pointexchange: 0,
|
||||||
seckill: 0,
|
seckill: 0,
|
||||||
store: 0,
|
store: 0,
|
||||||
topic: 0,
|
topic: 0,
|
||||||
bargain: 0,
|
bargain: 0,
|
||||||
membercancel: 0,
|
membercancel: 0,
|
||||||
servicer: 0,
|
servicer: 0,
|
||||||
supermember: 0,
|
supermember: 0,
|
||||||
giftcard: 0,
|
giftcard: 0,
|
||||||
divideticket: 0,
|
divideticket: 0,
|
||||||
scenefestival: 0,
|
scenefestival: 0,
|
||||||
birthdaygift: 0,
|
birthdaygift: 0,
|
||||||
pinfan: 0,
|
pinfan: 0,
|
||||||
form: 0
|
form: 0
|
||||||
},
|
},
|
||||||
authInfo: {}, // 授权信息
|
authInfo: {}, // 授权信息
|
||||||
flRefresh: 0,
|
flRefresh: 0,
|
||||||
location: null, // 定位信息
|
location: null, // 定位信息
|
||||||
defaultImg: {
|
defaultImg: {
|
||||||
goods: '',
|
goods: '',
|
||||||
head: '',
|
head: '',
|
||||||
store: '',
|
store: '',
|
||||||
article: ''
|
article: '',
|
||||||
},
|
aiAgent: ''
|
||||||
cartList: {},
|
},
|
||||||
cartIds: [],
|
cartList: {},
|
||||||
cartNumber: 0,
|
cartIds: [],
|
||||||
cartMoney: 0,
|
cartNumber: 0,
|
||||||
cartChange: 0,
|
cartMoney: 0,
|
||||||
bottomNavHidden: false, // 底部导航是否隐藏,true:隐藏,false:显示
|
cartChange: 0,
|
||||||
globalStoreConfig: null, // 门店配置
|
wechatConfigStatus:0,
|
||||||
globalStoreInfo: null, // 门店信息
|
bottomNavHidden: false, // 底部导航是否隐藏,true:隐藏,false:显示
|
||||||
defaultStoreInfo: null, // 默认门店
|
aiUnreadCount: 10, // AI未读消息数量
|
||||||
cartPosition: null, // 购物车所在位置
|
globalAIAgentConfig: null, // AI客服配置
|
||||||
componentRefresh: 0, // 组件刷新
|
globalStoreConfig: null, // 门店配置
|
||||||
servicerConfig: null, // 客服配置
|
globalStoreInfo: null, // 门店信息
|
||||||
diySeckillInterval: 0,
|
defaultStoreInfo: null, // 默认门店
|
||||||
diyGroupPositionObj: {},
|
cartPosition: null, // 购物车所在位置
|
||||||
diyGroupShowModule: '',
|
componentRefresh: 0, // 组件刷新
|
||||||
tabBarHeight: '56px',
|
servicerConfig: null, // 客服配置
|
||||||
mapConfig: {
|
diySeckillInterval: 0,
|
||||||
tencent_map_key: '',
|
diyGroupPositionObj: {},
|
||||||
wap_is_open: 1,
|
diyGroupShowModule: '',
|
||||||
wap_valid_time: 0
|
tabBarHeight: '56px',
|
||||||
},
|
mapConfig: {
|
||||||
copyright: null
|
tencent_map_key: '',
|
||||||
},
|
wap_is_open: 1,
|
||||||
mutations: {
|
wap_valid_time: 0,
|
||||||
// 设置那些组件展示
|
},
|
||||||
setDiyGroupShowModule(state, data) {
|
copyright: null,
|
||||||
state.diyGroupShowModule = data;
|
initStatus:false,
|
||||||
},
|
offlineWhiteList:['pages/order/payment','pages/order/list','pages/order/detail'],//线下支付白名单
|
||||||
// 设置diyGroup中组件原有高度,通过他们来实现在首页的定位
|
canReceiveRegistergiftInfo: {
|
||||||
setDiyGroupPositionObj(state, data) {
|
status: false,
|
||||||
state.diyGroupPositionObj = Object.assign({}, state.diyGroupPositionObj, data);
|
path: ''
|
||||||
},
|
},
|
||||||
setSiteState(state, siteStateVal) {
|
},
|
||||||
state.siteState = siteStateVal;
|
mutations: {
|
||||||
},
|
// 设置是否可以领取新人礼
|
||||||
setThemeStyle(state, value) {
|
setCanReceiveRegistergiftInfo(state, data) {
|
||||||
state.themeStyle = value
|
state.canReceiveRegistergiftInfo = data;
|
||||||
uni.setStorageSync('themeStyle', value); // 初始化数据调用
|
},
|
||||||
},
|
// 设置那些组件展示
|
||||||
setTabBarList(state, value) {
|
setDiyGroupShowModule(state, data) {
|
||||||
state.tabBarList = value;
|
state.diyGroupShowModule = data;
|
||||||
},
|
},
|
||||||
setAddonIsExist(state, value) {
|
// 设置diyGroup中组件原有高度,通过他们来实现在首页的定位
|
||||||
state.addonIsExist = value;
|
setDiyGroupPositionObj(state, data) {
|
||||||
uni.setStorageSync('addonIsExist', value); // 初始化数据调用
|
state.diyGroupPositionObj = Object.assign({}, state.diyGroupPositionObj, data);
|
||||||
},
|
},
|
||||||
setToken(state, value) {
|
setSiteState(state, siteStateVal) {
|
||||||
state.token = value;
|
state.siteState = siteStateVal;
|
||||||
if (value) {
|
},
|
||||||
uni.setStorageSync('token', value); // 初始化数据调用
|
setThemeStyle(state, value) {
|
||||||
} else {
|
state.themeStyle = value
|
||||||
uni.removeStorageSync('token');
|
uni.setStorageSync('themeStyle', value); // 初始化数据调用
|
||||||
}
|
},
|
||||||
},
|
setTabBarList(state, value) {
|
||||||
setAuthinfo(state, value) {
|
state.tabBarList = value;
|
||||||
state.authInfo = value;
|
},
|
||||||
},
|
setAddonIsExist(state, value) {
|
||||||
setflRefresh(state, flRefreshVal) {
|
state.addonIsExist = value;
|
||||||
state.flRefresh = flRefreshVal;
|
uni.setStorageSync('addonIsExist', value); // 初始化数据调用
|
||||||
},
|
},
|
||||||
setLocation(state, value) {
|
setToken(state, value) {
|
||||||
var date = new Date();
|
state.token = value;
|
||||||
date.setSeconds(60 * state.mapConfig.wap_valid_time);
|
if (value) {
|
||||||
value.valid_time = date.getTime() / 1000; // 定位信息 5分钟内有效,过期后将重新获取定位信息
|
uni.setStorageSync('token', value); // 初始化数据调用
|
||||||
state.location = value;
|
} else {
|
||||||
uni.setStorageSync('location', value); // 初始化数据调用
|
uni.removeStorageSync('token');
|
||||||
},
|
}
|
||||||
setDefaultImg(state, value) {
|
},
|
||||||
state.defaultImg = value;
|
setAuthinfo(state, value) {
|
||||||
uni.setStorageSync('defaultImg', value); // 初始化数据调用
|
state.authInfo = value;
|
||||||
},
|
},
|
||||||
setSiteInfo(state, value) {
|
setflRefresh(state, flRefreshVal) {
|
||||||
state.siteInfo = value;
|
state.flRefresh = flRefreshVal;
|
||||||
uni.setStorageSync('siteInfo', value); // 初始化数据调用
|
},
|
||||||
},
|
setLocation(state, value) {
|
||||||
setShopInfo(state, value) {
|
var date = new Date();
|
||||||
state.shopInfo = value;
|
date.setSeconds(60 * state.mapConfig.wap_valid_time);
|
||||||
uni.setStorageSync('shopInfo', value); // 初始化数据调用
|
value.valid_time = date.getTime() / 1000; // 定位信息 5分钟内有效,过期后将重新获取定位信息
|
||||||
},
|
state.location = value;
|
||||||
setCartChange(state) {
|
uni.setStorageSync('location', value); // 初始化数据调用
|
||||||
state.cartChange += 1;
|
},
|
||||||
},
|
setDefaultImg(state, value) {
|
||||||
setBottomNavHidden(state, value) {
|
state.defaultImg = value;
|
||||||
state.bottomNavHidden = value;
|
uni.setStorageSync('defaultImg', value); // 初始化数据调用
|
||||||
},
|
},
|
||||||
setGlobalStoreConfig(state, value) {
|
setSiteInfo(state, value) {
|
||||||
state.globalStoreConfig = value;
|
state.siteInfo = value;
|
||||||
uni.setStorageSync('globalStoreConfig', value); // 初始化数据调用
|
uni.setStorageSync('siteInfo', value); // 初始化数据调用
|
||||||
},
|
},
|
||||||
setGlobalStoreInfo(state, value) {
|
setShopInfo(state, value) {
|
||||||
state.globalStoreInfo = value;
|
state.shopInfo = value;
|
||||||
uni.setStorageSync('globalStoreInfo', value); // 初始化数据调用
|
uni.setStorageSync('shopInfo', value); // 初始化数据调用
|
||||||
},
|
},
|
||||||
setDefaultStoreInfo(state, value) {
|
setCartChange(state) {
|
||||||
state.defaultStoreInfo = value;
|
state.cartChange += 1;
|
||||||
uni.setStorageSync('defaultStoreInfo', value); // 初始化数据调用
|
},
|
||||||
},
|
setBottomNavHidden(state, value) {
|
||||||
setCartPosition(state, value) {
|
state.bottomNavHidden = value;
|
||||||
state.cartPosition = value;
|
},
|
||||||
},
|
setGlobalAIAgentConfig(state, value) {
|
||||||
setComponentRefresh(state) {
|
state.globalAIAgentConfig = value;
|
||||||
state.componentRefresh += 1;
|
uni.setStorageSync('globalAIAgentConfig', value); // 初始化数据调用
|
||||||
},
|
},
|
||||||
// 客服配置
|
setGlobalStoreConfig(state, value) {
|
||||||
setServicerConfig(state, value) {
|
state.globalStoreConfig = value;
|
||||||
state.servicerConfig = value;
|
uni.setStorageSync('globalStoreConfig', value); // 初始化数据调用
|
||||||
uni.setStorageSync('servicerConfig', value);
|
},
|
||||||
},
|
setGlobalStoreInfo(state, value) {
|
||||||
setDiySeckillInterval(state, value) {
|
state.globalStoreInfo = value;
|
||||||
state.diySeckillInterval = value;
|
uni.setStorageSync('globalStoreInfo', value); // 初始化数据调用
|
||||||
},
|
},
|
||||||
setTabBarHeight(state, value) {
|
setDefaultStoreInfo(state, value) {
|
||||||
state.tabBarHeight = value;
|
state.defaultStoreInfo = value;
|
||||||
},
|
uni.setStorageSync('defaultStoreInfo', value); // 初始化数据调用
|
||||||
setMapConfig(state, value) {
|
},
|
||||||
state.mapConfig = value;
|
setCartPosition(state, value) {
|
||||||
uni.setStorageSync('mapConfig', value);
|
state.cartPosition = value;
|
||||||
},
|
},
|
||||||
setCopyright(state, value) {
|
setComponentRefresh(state) {
|
||||||
state.copyright = value;
|
state.componentRefresh += 1;
|
||||||
uni.setStorageSync('copyright', value);
|
},
|
||||||
},
|
// 客服配置
|
||||||
setMemberInfo(state, value) {
|
setServicerConfig(state, value) {
|
||||||
state.memberInfo = value;
|
state.servicerConfig = value;
|
||||||
if (value) {
|
uni.setStorageSync('servicerConfig', value);
|
||||||
uni.setStorageSync('memberInfo', value);
|
},
|
||||||
} else {
|
setDiySeckillInterval(state, value) {
|
||||||
uni.removeStorageSync('memberInfo');
|
state.diySeckillInterval = value;
|
||||||
}
|
},
|
||||||
},
|
setTabBarHeight(state, value) {
|
||||||
setCartNumber(state, cartNumber) {
|
state.tabBarHeight = value;
|
||||||
state.cartNumber = cartNumber
|
},
|
||||||
},
|
setMapConfig(state, value) {
|
||||||
setCartList(state, value) {
|
state.mapConfig = value;
|
||||||
state.cartList = value;
|
uni.setStorageSync('mapConfig', value);
|
||||||
},
|
},
|
||||||
setCartIds(state, value) {
|
setCopyright(state, value) {
|
||||||
state.cartIds = value;
|
state.copyright = value;
|
||||||
},
|
uni.setStorageSync('copyright', value);
|
||||||
setCartMoney(state, value) {
|
},
|
||||||
state.cartMoney = value;
|
setMemberInfo(state, value) {
|
||||||
}
|
// 会员被锁定后,清除会员登录信息
|
||||||
},
|
if (value && value.status == 0) {
|
||||||
actions: {
|
value = null;
|
||||||
init() {
|
}
|
||||||
return new Promise((resolve, reject) => {
|
state.memberInfo = value;
|
||||||
Http.sendRequest({
|
if (value) {
|
||||||
url: '/api/config/init',
|
uni.setStorageSync('memberInfo', value);
|
||||||
success: res => {
|
} else {
|
||||||
var data = res.data;
|
// 会员为空时,清除会员登录信息
|
||||||
if (data) {
|
uni.removeStorageSync('memberInfo');
|
||||||
this.commit('setThemeStyle', colorList[data.style_theme.name]);
|
this.commit('setToken', '');
|
||||||
|
this.dispatch('emptyCart');
|
||||||
// 底部导航
|
//uni.removeStorageSync('authInfo');
|
||||||
this.commit('setTabBarList', data.diy_bottom_nav);
|
}
|
||||||
|
},
|
||||||
this.commit('setAddonIsExist', data.addon_is_exist);
|
setCartNumber(state, cartNumber) {
|
||||||
|
state.cartNumber = cartNumber
|
||||||
this.commit('setDefaultImg', data.default_img);
|
},
|
||||||
|
setCartList(state, value) {
|
||||||
this.commit('setSiteInfo', data.site_info);
|
state.cartList = value;
|
||||||
|
},
|
||||||
this.commit('setServicerConfig', data.servicer);
|
setCartIds(state, value) {
|
||||||
|
state.cartIds = value;
|
||||||
this.commit('setCopyright', data.copyright);
|
},
|
||||||
|
setCartMoney(state, value) {
|
||||||
this.commit('setMapConfig', data.map_config);
|
state.cartMoney = value;
|
||||||
|
},
|
||||||
this.commit('setGlobalStoreConfig', data.store_config);
|
setInitStatus(state,value){
|
||||||
|
state.initStatus = value
|
||||||
//联系我们
|
},
|
||||||
|
setWechatConfigStatus(state,value){
|
||||||
this.commit('setShopInfo', data.shop_info);
|
state.wechatConfigStatus = value
|
||||||
// 默认总店
|
},
|
||||||
if (data.store_info) {
|
// 设置AI未读消息数量
|
||||||
this.commit('setDefaultStoreInfo', data.store_info);
|
setAiUnreadCount(state, value) {
|
||||||
} else {
|
state.aiUnreadCount = value;
|
||||||
// 清空不存在的门店信息
|
}
|
||||||
this.commit('setDefaultStoreInfo', null);
|
},
|
||||||
this.commit('setGlobalStoreInfo', null);
|
getters: {
|
||||||
}
|
// AI智能助手配置
|
||||||
|
globalAIAgentConfig: state => state.globalAIAgentConfig,
|
||||||
resolve(data);
|
// AI未读消息数量
|
||||||
}
|
aiUnreadCount: state => state.aiUnreadCount,
|
||||||
}
|
},
|
||||||
});
|
actions: {
|
||||||
})
|
init() {
|
||||||
},
|
return new Promise((resolve, reject) => {
|
||||||
// 查询购物车列表、总数量、总价格
|
Http.sendRequest({
|
||||||
getCartNumber() {
|
url: '/api/config/init',
|
||||||
Http.sendRequest({
|
success: res => {
|
||||||
url: '/api/cart/lists',
|
var data = res.data;
|
||||||
data: {},
|
if (data) {
|
||||||
success: res => {
|
|
||||||
if (res.code == 0) {
|
this.commit('setThemeStyle', colorList[data.style_theme.name]);
|
||||||
let list = [];
|
|
||||||
let ids = [];
|
// 底部导航
|
||||||
let totalMoney = 0;
|
this.commit('setTabBarList', data.diy_bottom_nav);
|
||||||
let totalNum = 0;
|
|
||||||
|
this.commit('setAddonIsExist', data.addon_is_exist);
|
||||||
if (res.data.length) {
|
|
||||||
|
this.commit('setDefaultImg', data.default_img);
|
||||||
res.data.forEach((item) => {
|
|
||||||
let cart = {
|
this.commit('setSiteInfo', data.site_info);
|
||||||
cart_id: item.cart_id,
|
|
||||||
goods_id: item.goods_id,
|
this.commit('setServicerConfig', data.servicer);
|
||||||
sku_id: item.sku_id,
|
|
||||||
num: item.num,
|
this.commit('setCopyright', data.copyright);
|
||||||
discount_price: item.discount_price
|
|
||||||
};
|
this.commit('setMapConfig', data.map_config);
|
||||||
|
|
||||||
if (!list['goods_' + cart.goods_id]) {
|
this.commit('setGlobalAIAgentConfig', data.ai_agent_config);
|
||||||
list['goods_' + cart.goods_id] = {};
|
|
||||||
}
|
this.commit('setGlobalStoreConfig', data.store_config);
|
||||||
list['goods_' + cart.goods_id]['sku_' + cart
|
this.commit('setWechatConfigStatus',data.wechat_config_status)
|
||||||
.sku_id
|
|
||||||
] =
|
//联系我们
|
||||||
cart;
|
|
||||||
ids.push(cart.cart_id);
|
this.commit('setShopInfo', data.shop_info);
|
||||||
});
|
// 默认总店
|
||||||
|
if (data.store_info) {
|
||||||
for (let goods in list) {
|
this.commit('setDefaultStoreInfo', data.store_info);
|
||||||
let num = 0;
|
} else {
|
||||||
let money = 0;
|
// 清空不存在的门店信息
|
||||||
for (let sku in list[goods]) {
|
this.commit('setDefaultStoreInfo', null);
|
||||||
let item = list[goods][sku];
|
this.commit('setGlobalStoreInfo', null);
|
||||||
if (typeof item == 'object') {
|
}
|
||||||
num += item.num;
|
this.commit('setInitStatus',true)
|
||||||
money += parseFloat(item.discount_price) * parseInt(item
|
resolve(data);
|
||||||
.num);
|
}
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
list[goods].num = num;
|
})
|
||||||
list[goods].total_money = money;
|
},
|
||||||
|
// 查询购物车列表、总数量、总价格
|
||||||
totalNum += num;
|
getCartNumber() {
|
||||||
totalMoney += money;
|
Http.sendRequest({
|
||||||
|
url: '/api/cart/lists',
|
||||||
}
|
data: {},
|
||||||
}
|
success: res => {
|
||||||
|
if (res.code == 0) {
|
||||||
this.commit('setCartList', list);
|
let list = {};
|
||||||
|
let ids = [];
|
||||||
this.commit('setCartIds', ids);
|
let totalMoney = 0;
|
||||||
|
let totalNum = 0;
|
||||||
this.commit('setCartNumber', totalNum);
|
|
||||||
|
if (res.data.length) {
|
||||||
this.commit('setCartMoney', totalMoney);
|
|
||||||
|
res.data.forEach((item) => {
|
||||||
}
|
let cart = {
|
||||||
}
|
cart_id: item.cart_id,
|
||||||
});
|
goods_id: item.goods_id,
|
||||||
},
|
sku_id: item.sku_id,
|
||||||
// 清空购物车 ns-goods-sku-index组件中引用
|
num: item.num,
|
||||||
emptyCart() {
|
discount_price: item.discount_price,
|
||||||
this.commit('setCartList', {});
|
min_buy: item.min_buy,
|
||||||
this.commit('setCartIds', []);
|
stock: item.stock,
|
||||||
this.commit('setCartNumber', 0);
|
};
|
||||||
this.commit('setCartMoney', 0);
|
|
||||||
},
|
if (!list['goods_' + cart.goods_id]) {
|
||||||
// 计算购物车数量、价格
|
list['goods_' + cart.goods_id] = {};
|
||||||
cartCalculate() {
|
}
|
||||||
|
list['goods_' + cart.goods_id]['max_buy'] = item.max_buy;
|
||||||
let ids = [];
|
list['goods_' + cart.goods_id]['goods_name'] = item.goods_name;
|
||||||
let totalMoney = 0;
|
list['goods_' + cart.goods_id]['sku_' + cart.sku_id] = cart;
|
||||||
let totalNum = 0;
|
ids.push(cart.cart_id);
|
||||||
|
});
|
||||||
for (let k in this.state.cartList) {
|
|
||||||
let item = this.state.cartList[k];
|
for (let goods in list) {
|
||||||
|
let num = 0;
|
||||||
let num = 0;
|
let money = 0;
|
||||||
let money = 0;
|
for (let sku in list[goods]) {
|
||||||
for (let sku in item) {
|
let item = list[goods][sku];
|
||||||
if (typeof item[sku] == 'object') {
|
if (typeof item == 'object') {
|
||||||
num += item[sku].num;
|
num += item.num;
|
||||||
money += parseFloat(item[sku].discount_price) * parseInt(item[sku].num);
|
money += parseFloat(item.discount_price) * parseInt(item.num);
|
||||||
ids.push(item[sku].cart_id);
|
}
|
||||||
}
|
}
|
||||||
}
|
list[goods].num = num;
|
||||||
item.num = num;
|
list[goods].total_money = money;
|
||||||
item.total_money = money;
|
|
||||||
|
totalNum += num;
|
||||||
totalNum += num;
|
totalMoney += money;
|
||||||
totalMoney += money;
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
this.commit('setCartList', list);
|
||||||
this.commit('setCartNumber', totalNum);
|
|
||||||
|
this.commit('setCartIds', ids);
|
||||||
this.commit('setCartMoney', totalMoney);
|
|
||||||
|
this.commit('setCartNumber', totalNum);
|
||||||
this.commit('setCartIds', ids);
|
|
||||||
|
this.commit('setCartMoney', totalMoney);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 清空购物车 ns-goods-sku-index组件中引用
|
||||||
|
emptyCart() {
|
||||||
|
this.commit('setCartList', {});
|
||||||
|
this.commit('setCartIds', []);
|
||||||
|
this.commit('setCartNumber', 0);
|
||||||
|
this.commit('setCartMoney', 0);
|
||||||
|
},
|
||||||
|
// 计算购物车数量、价格
|
||||||
|
cartCalculate() {
|
||||||
|
|
||||||
|
let ids = [];
|
||||||
|
let totalMoney = 0;
|
||||||
|
let totalNum = 0;
|
||||||
|
|
||||||
|
for (let k in this.state.cartList) {
|
||||||
|
let item = this.state.cartList[k];
|
||||||
|
|
||||||
|
let num = 0;
|
||||||
|
let money = 0;
|
||||||
|
for (let sku in item) {
|
||||||
|
if (typeof item[sku] == 'object') {
|
||||||
|
num += item[sku].num;
|
||||||
|
money += parseFloat(item[sku].discount_price) * parseInt(item[sku].num);
|
||||||
|
ids.push(item[sku].cart_id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
item.num = num;
|
||||||
|
item.total_money = money;
|
||||||
|
|
||||||
|
totalNum += num;
|
||||||
|
totalMoney += money;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
this.commit('setCartNumber', totalNum);
|
||||||
|
|
||||||
|
this.commit('setCartMoney', totalMoney);
|
||||||
|
|
||||||
|
this.commit('setCartIds', ids);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
export default store
|
export default store
|
||||||
Reference in New Issue
Block a user