aida_frontV1.1

update aida_front until 25 May 2023
This commit is contained in:
LiaoFJ
2023-05-25 15:11:40 +08:00
parent e54be8d510
commit 414c1ce8bf
3 changed files with 5 additions and 4 deletions

View File

@@ -1,3 +1,2 @@
NODE_ENV = 'production' NODE_ENV = 'production'
VUE_APP_BASE_URL = 'https://www.aida.com.hk' VUE_APP_BASE_URL = 'http://www.aida.com.hk'

View File

@@ -27,4 +27,4 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
zyy8421823@163.com zyy8421823@163.com
https://aifda.aidlab.hk/login.php# aida_front https://aifda.aidlab.hk/login.php

View File

@@ -642,9 +642,11 @@ export default defineComponent({
for(let key in allBoardData){ for(let key in allBoardData){
if(key !== 'colorBoards' && key !== 'moodTemplateId'){ if(key !== 'colorBoards' && key !== 'moodTemplateId'){
for(let item of allBoardData[key]){ for(let item of allBoardData[key]){
let nameTail = item.imgUrl.split('.').pop()
console.log(nameTail, 666)
let data = { let data = {
imgUrl:item.imgUrl, imgUrl:item.imgUrl,
name:item.resData.name + index + '.png' name:item.resData.name + index + '.' + nameTail
} }
img.push(data) img.push(data)
index ++ index ++