【JAVA版】likeshop单商户商城系统+搭建环境教程
此系统是一款基于likeadmin-JAVA开发的商城系统,支持终端微信小程序 + 微信公众号 + H5网页 + PC管理后台;提供全部前后台无加密源代码,适用于B2C、单商户、自营商城场景。完美契合私域流量变现闭环交易使用。系统拥有优惠券、限时秒杀等丰富的营销玩法,完整的在线购买流程,可视化装修、多规格商品、运费模板等众多功能,前后端分离。无论运营还是二开都是性价比极高的100%开源商城系统。
·
一.系统介绍
此系统是一款基于likeadmin-JAVA开发的商城系统,支持终端微信小程序 + 微信公众号 + H5网页 + PC管理后台;全部前后台无加密
二.搭建环境教程
系统环境:CentOS、
运行环境:宝塔 Linux
网站环境:Nginx 1.26 + MySQL 5.7.46 + PHP8.0
常见插件:fileinfo ; redis
这套系统的VUE的代码:
<script setup lang="ts">
import { onLaunch } from '@dcloudio/uni-app'
import { useAppStore } from './stores/app'
import { useUserStore } from './stores/user'
import { apiIndexVisit } from '@/api/app'
import { getClient } from '@/utils/client'
import { useThemeStore } from './stores/theme'
import { useLocation } from '@/hooks/useLocation'
const { getConfig, getSystemInfo, getKefuInfo } = useAppStore()
const { getUser } = useUserStore()
const { getTheme } = useThemeStore()
const { getLocationData } = useLocation()
onLaunch(async () => {
await getConfig()
await getTheme()
getSystemInfo()
getLocationData()
// #ifdef H5
// const { status, page_status, page_url } = appStore.getH5Config
// if (status == 0) {
// if (page_status == 1) return (location.href = page_url)
// uni.reLaunch({ url: '/pages/empty/empty' })
// }
// #endif
await getUser()
await apiIndexVisit({
terminal: getClient()
})
getKefuInfo()
})
</script>
<style lang="scss">
//
</style>
更多推荐

所有评论(0)