去除unicloud空间绑定,修复已知错误

This commit is contained in:
fm453
2025-07-16 03:43:59 +08:00
parent b5b8cc5cbb
commit 9244bd38c2
3 changed files with 125 additions and 0 deletions

19
apis/ctms/datas.js Normal file
View File

@ -0,0 +1,19 @@
import request from './_utils/request.js'
import apis from './apis.json'
export default {
// 首页数据
h5: function() {
const data = {}
let url = apis.IndexData;
return request({
'url': url,
// 'force_url': '', //强制指定URL忽略上面的url设定
'method': 'GET',
'data': data,
'params': {}
}).then((res) => {
if (res.code == 200) return res.data;
})
},
}