尝试通过api请求具体文章信息
This commit is contained in:
parent
90a3f05e0f
commit
28bbee7091
|
|
@ -6,10 +6,10 @@ const {footer} = useAppConfig()
|
|||
|
||||
<!-- -->
|
||||
<div style="background: #000; color: #fff;">
|
||||
<MARQUEE>
|
||||
|
||||
<!-- Keywords: -->
|
||||
<a href="index-2.html" style="color: #fff;" target="_blank" title="深圳APP开发"><strong>共享APP开发-创特科技专注于共享陪护床,共享电动车,共享汽车,共享充电桩,共享家居电器,共享按摩椅,共享充电宝,共享滑板车等共享软件开发及物联网解决方案</strong></a>
|
||||
</MARQUEE>
|
||||
|
||||
</div>
|
||||
<!-- -->
|
||||
<div class="containe min-footer text-center">
|
||||
|
|
|
|||
|
|
@ -1,47 +1,106 @@
|
|||
<script lang="ts" setup>
|
||||
import {onMounted, ref} from "vue";
|
||||
|
||||
// API基础地址
|
||||
const API_BASE_URL = 'http://192.168.2.26:4101'
|
||||
|
||||
// 文章数据
|
||||
const articleData = ref({
|
||||
title: '玉犀景区SaaS平台 打造专业景区共享出行综合解决方案',
|
||||
publishDate: '2025年07月08日 12:40',
|
||||
category: '景区共享电动车',
|
||||
content: `
|
||||
<p class="MsoNormal">
|
||||
<span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;mso-font-kerning:1.0000pt;">
|
||||
<font face="宋体">想必有很多游客深有感触,在偌大景区实在走不动</font><font face="Calibri">?</font><font face="宋体">有老又有小,想坐观光车又要排队等待</font><font face="Calibri">?</font><font face="宋体">现在,一辆共享扫码代步观光车就能解决游客烦恼。用户只需用手机扫码,即可解锁一辆共享观光车。游客通过玉犀景区</font><font face="Calibri">SaaS</font><font face="宋体">智慧出行平台的微信、支付宝小程序扫码进入充值使用,按时计费付费并实时退费,快速完成扫、用、停、还等操作,让游客安心享受便捷、无感的共享出行服务。</font>
|
||||
</span>
|
||||
</p>
|
||||
<p class="MsoNormal">
|
||||
<img src="/news/car_model-6.png" alt="设备" style="float: none;">
|
||||
</p>
|
||||
<p class="MsoNormal">
|
||||
<span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;mso-font-kerning:1.0000pt;">
|
||||
<font face="宋体">玉犀景区</font><font face="Calibri">SaaS</font><font face="宋体">智慧出行平台通过"场、车、人"三大核心要素,以"为游客提供出行便利""为景区实现增值创收"为两大核心目标,实现了基于物联网硬件、云端软件系统为主体的出行解决方案,通过运营服务、运维服务、数据统计等核心模块为业务赋能。</font>
|
||||
</span>
|
||||
</p>
|
||||
<p class="MsoNormal">
|
||||
<span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;mso-font-kerning:1.0000pt;">
|
||||
近几年来,玉犀科技研发的共享扫码代步车持续向景区渗透应用,游客扫码用车订单量增多,景区管理方不但可通过管理后台实时查看订单详情、统计分析营运情况的需求还能够为客户提供涵盖应用中心、会员管理、协议管理、订单管理、账户管理等丰富功能的一站式服务,方便客户随时随地搜索并查看车辆订单详情,统计订单数据。除此之外,还可查询使用车辆的支付流水和退款状态,付款信息、营收情况等一键清晰,辅助客户进行针对性的运营管理,进而为游客提供更智慧、便捷的服务。
|
||||
</span>
|
||||
</p>
|
||||
<p class="MsoNormal">
|
||||
<span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;mso-font-kerning:1.0000pt;">
|
||||
接下来,玉犀科技也将高效、智能的共享出行解决方案推广至更广阔的场景,助力景区旅游服务快速发展。
|
||||
</span>
|
||||
</p>
|
||||
`,
|
||||
title: '',
|
||||
publishDate: '',
|
||||
category: '',
|
||||
content: '',
|
||||
prevArticle: {
|
||||
title: '景区共享自行车运营方案都有哪些?',
|
||||
url: 'http://www.yuxiit.com/news/news_407.html'
|
||||
title: '',
|
||||
url: '#'
|
||||
},
|
||||
nextArticle: {
|
||||
title: '暂时没有了',
|
||||
title: '',
|
||||
url: '#'
|
||||
}
|
||||
})
|
||||
|
||||
// 加载状态
|
||||
const loading = ref(true)
|
||||
const error = ref('')
|
||||
|
||||
// 获取文章详情
|
||||
const fetchArticle = async (id: number) => {
|
||||
try {
|
||||
loading.value = true
|
||||
error.value = ''
|
||||
|
||||
const response = await fetch(`${API_BASE_URL}/app/owArticle/get/${id}`)
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error(`HTTP error! status: ${response.status}`)
|
||||
}
|
||||
|
||||
const data = await response.json()
|
||||
|
||||
// 更新文章数据
|
||||
articleData.value = {
|
||||
title: data.title || '暂无标题',
|
||||
publishDate: data.publishDate || '暂无日期',
|
||||
category: data.category || '暂无分类',
|
||||
content: data.content || '暂无内容',
|
||||
prevArticle: data.prevArticle || {
|
||||
title: '暂无上一篇',
|
||||
url: '#'
|
||||
},
|
||||
nextArticle: data.nextArticle || {
|
||||
title: '暂无下一篇',
|
||||
url: '#'
|
||||
}
|
||||
}
|
||||
} catch (err) {
|
||||
console.error('获取文章失败:', err)
|
||||
error.value = '获取文章失败,请稍后重试'
|
||||
|
||||
// 如果API请求失败,使用默认数据
|
||||
articleData.value = {
|
||||
title: '创特景区SaaS平台 打造专业景区共享出行综合解决方案',
|
||||
publishDate: '2025年07月08日 12:40',
|
||||
category: '景区共享电动车',
|
||||
content: `
|
||||
<p class="MsoNormal">
|
||||
<span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;mso-font-kerning:1.0000pt;">
|
||||
<font face="宋体">想必有很多游客深有感触,在偌大景区实在走不动</font><font face="Calibri">?</font><font face="宋体">有老又有小,想坐观光车又要排队等待</font><font face="Calibri">?</font><font face="宋体">现在,一辆共享扫码代步观光车就能解决游客烦恼。用户只需用手机扫码,即可解锁一辆共享观光车。游客通过创特景区</font><font face="Calibri">SaaS</font><font face="宋体">智慧出行平台的微信、支付宝小程序扫码进入充值使用,按时计费付费并实时退费,快速完成扫、用、停、还等操作,让游客安心享受便捷、无感的共享出行服务。</font>
|
||||
</span>
|
||||
</p>
|
||||
<p class="MsoNormal">
|
||||
<img src="/news/car_model-6.png" alt="设备" style="float: none;">
|
||||
</p>
|
||||
<p class="MsoNormal">
|
||||
<span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;mso-font-kerning:1.0000pt;">
|
||||
<font face="宋体">创特景区</font><font face="Calibri">SaaS</font><font face="宋体">智慧出行平台通过"场、车、人"三大核心要素,以"为游客提供出行便利""为景区实现增值创收"为两大核心目标,实现了基于物联网硬件、云端软件系统为主体的出行解决方案,通过运营服务、运维服务、数据统计等核心模块为业务赋能。</font>
|
||||
</span>
|
||||
</p>
|
||||
<p class="MsoNormal">
|
||||
<span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;mso-font-kerning:1.0000pt;">
|
||||
近几年来,创特科技研发的共享扫码代步车持续向景区渗透应用,游客扫码用车订单量增多,景区管理方不但可通过管理后台实时查看订单详情、统计分析营运情况的需求还能够为客户提供涵盖应用中心、会员管理、协议管理、订单管理、账户管理等丰富功能的一站式服务,方便客户随时随地搜索并查看车辆订单详情,统计订单数据。除此之外,还可查询使用车辆的支付流水和退款状态,付款信息、营收情况等一键清晰,辅助客户进行针对性的运营管理,进而为游客提供更智慧、便捷的服务。
|
||||
</span>
|
||||
</p>
|
||||
<p class="MsoNormal">
|
||||
<span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;mso-font-kerning:1.0000pt;">
|
||||
接下来,创特科技也将高效、智能的共享出行解决方案推广至更广阔的场景,助力景区旅游服务快速发展。
|
||||
</span>
|
||||
</p>
|
||||
`,
|
||||
prevArticle: {
|
||||
title: '景区共享自行车运营方案都有哪些?',
|
||||
url: 'http://www.yuxiit.com/news/news_407.html'
|
||||
},
|
||||
nextArticle: {
|
||||
title: '暂时没有了',
|
||||
url: '#'
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
loading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
// 热门标签
|
||||
const hotTags = ref([
|
||||
'景区单车', '政务平台', '共享经济', '共享汽车APP开发', '共享类',
|
||||
|
|
@ -52,7 +111,7 @@ const hotTags = ref([
|
|||
const recommendedArticles = ref({
|
||||
solutions: [
|
||||
{
|
||||
title: '玉犀景区SaaS平台 打造专业景区共享出行综合解决方案',
|
||||
title: '创特景区SaaS平台 打造专业景区共享出行综合解决方案',
|
||||
date: '2025-07-08',
|
||||
url: 'http://www.yuxiit.com/news/news_437.html'
|
||||
},
|
||||
|
|
@ -78,7 +137,7 @@ const recommendedArticles = ref({
|
|||
{title: '共享经济项目为何能受到大众的青睐?', date: '2023-05-16', url: 'http://www.yuxiit.com/news/news_409.html'},
|
||||
{title: '景区共享智能代步车运营方案有哪些?', date: '2023-05-10', url: 'http://www.yuxiit.com/news/news_402.html'},
|
||||
{
|
||||
title: '玉犀景区共享代步车系统具备什么样的优势?',
|
||||
title: '创特景区共享代步车系统具备什么样的优势?',
|
||||
date: '2023-04-07',
|
||||
url: 'http://www.yuxiit.com/news/news_391.html'
|
||||
},
|
||||
|
|
@ -107,6 +166,9 @@ onMounted(() => {
|
|||
|
||||
// 加载JavaScript文件
|
||||
loadJSFiles()
|
||||
|
||||
// 获取文章详情,使用id=1进行测试
|
||||
fetchArticle(1)
|
||||
})
|
||||
|
||||
const loadJSFiles = () => {
|
||||
|
|
@ -160,7 +222,7 @@ const loadCSSFiles = () => {
|
|||
|
||||
<div class="navbar-header">
|
||||
<button class="navbar-toggle" data-target="#mynav" data-toggle="collapse">
|
||||
<span>玉犀科技</span>
|
||||
<span>创特科技</span>
|
||||
</button>
|
||||
<a href="/"><img
|
||||
class="img-responsive"
|
||||
|
|
@ -198,7 +260,7 @@ const loadCSSFiles = () => {
|
|||
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="/about">关于玉犀 </a></li>
|
||||
<li><a href="/about">关于创特 </a></li>
|
||||
</ul>
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li><a href="/">电话:0755-85225123
|
||||
|
|
@ -213,8 +275,22 @@ const loadCSSFiles = () => {
|
|||
<div class="row">
|
||||
<!-- 左边部分 -->
|
||||
<div class="col-md-8 wow fadeInLeft animated" style="visibility: visible; animation-name: fadeInLeft;">
|
||||
<!-- 文字主体 -->
|
||||
<div class="row">
|
||||
<!-- 加载状态 -->
|
||||
<div v-if="loading" class="loading-container" style="text-align: center; padding: 50px;">
|
||||
<div class="loading-spinner" style="border: 4px solid #f3f3f3; border-top: 4px solid #ff8200; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 0 auto;"></div>
|
||||
<p style="margin-top: 20px; color: #666;">正在加载文章...</p>
|
||||
</div>
|
||||
|
||||
<!-- 错误提示 -->
|
||||
<div v-else-if="error" class="error-container" style="text-align: center; padding: 50px; color: #ff6b6b;">
|
||||
<p>{{ error }}</p>
|
||||
<button @click="fetchArticle(1)" style="margin-top: 20px; padding: 10px 20px; background: #ff8200; color: white; border: none; border-radius: 4px; cursor: pointer;">
|
||||
重新加载
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- 文章内容 -->
|
||||
<div v-else class="row">
|
||||
<div class="col-xs-12">
|
||||
<h2>{{ articleData.title }}</h2>
|
||||
<p id="label" style="border-bottom: 1px solid #ddd; margin-top: 20px;">
|
||||
|
|
@ -426,4 +502,28 @@ const loadCSSFiles = () => {
|
|||
.nextorpre a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* 加载动画 */
|
||||
@keyframes spin {
|
||||
0% { transform: rotate(0deg); }
|
||||
100% { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
/* 加载状态样式 */
|
||||
.loading-container {
|
||||
min-height: 200px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* 错误状态样式 */
|
||||
.error-container {
|
||||
min-height: 200px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
||||
|
|
@ -18,7 +18,6 @@ const loadJSFiles = () => {
|
|||
'/js/jquery-1.11.3.min.js',
|
||||
'/js/bootstrap.min.js',
|
||||
'/js/index.js',
|
||||
|
||||
'/js/gopcOm.js'
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -2,341 +2,422 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no'/>
|
||||
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
|
||||
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' name='viewport'/>
|
||||
|
||||
<title>玉犀景区SaaS平台 打造专业景区共享出行综合解决方案|玉犀科技</title>
|
||||
<meta name="keywords" content="景区共享出行,景区共享观光车,景区共享电动代步车" />
|
||||
<meta name="description" content="景区SaaS出行平台,景区共享观光车,景区共享电动代步车" />
|
||||
<link rel="shortcut icon" href="https://article.yuxiit.com/logoIco.ico">
|
||||
<link rel="stylesheet" href="../newspublic/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../newspublic/css/main22.css">
|
||||
<link rel="stylesheet" href="../newspublic/css/animate.min.css" media="screen and (min-width:768px)">
|
||||
<link rel="stylesheet" href="../newspublic/css/new_index.css">
|
||||
<link rel="stylesheet" href="../newspublic/css/CooperativePartner.css">
|
||||
<link rel="stylesheet" href="../newspublic/css/float.css">
|
||||
<title>创特景区SaaS平台 打造专业景区共享出行综合解决方案|创特科技</title>
|
||||
<meta content="景区共享出行,景区共享观光车,景区共享电动代步车" name="keywords"/>
|
||||
<meta content="景区SaaS出行平台,景区共享观光车,景区共享电动代步车" name="description"/>
|
||||
<link href="https://article.yuxiit.com/logoIco.ico" rel="shortcut icon">
|
||||
<link href="../newspublic/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="../newspublic/css/main22.css" rel="stylesheet">
|
||||
<link href="../newspublic/css/animate.min.css" media="screen and (min-width:768px)" rel="stylesheet">
|
||||
<link href="../newspublic/css/new_index.css" rel="stylesheet">
|
||||
<link href="../newspublic/css/CooperativePartner.css" rel="stylesheet">
|
||||
<link href="../newspublic/css/float.css" rel="stylesheet">
|
||||
<script src="../newspublic/js/jquery.1.11.3.min.js"></script>
|
||||
<script src="../newspublic/js/bootstrap.min.js"></script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<!-- 顶部 -->
|
||||
<nav class="navbar navbar-default navbar-fixed-top" style="background: rgba(255,255,255,1);">
|
||||
<div class="container">
|
||||
<!-- 顶部 -->
|
||||
<nav class="navbar navbar-default navbar-fixed-top" style="background: rgba(255,255,255,1);">
|
||||
<div class="container">
|
||||
|
||||
<div class="navbar-header">
|
||||
<button class="navbar-toggle" data-toggle="collapse" data-target="#mynav">
|
||||
<span>玉犀科技</span>
|
||||
</button>
|
||||
<a href="../index.html"><img class="img-responsive" src="../newspublic/img/top_logo.png"></a>
|
||||
</div>
|
||||
<div class="navbar-header">
|
||||
<button class="navbar-toggle" data-target="#mynav" data-toggle="collapse">
|
||||
<span>创特科技</span>
|
||||
</button>
|
||||
<a href="../index.html"><img class="img-responsive" src="../newspublic/img/top_logo.png"></a>
|
||||
</div>
|
||||
|
||||
<div class="collapse navbar-collapse" id="mynav">
|
||||
<ul class="nav navbar-nav">
|
||||
<li class="hidden-xs hidden-sm"><a href="http://www.yuxiit.com">首页 <span class="sr-only">(current)</span></a></li>
|
||||
<div id="mynav" class="collapse navbar-collapse">
|
||||
<ul class="nav navbar-nav">
|
||||
<li class="hidden-xs hidden-sm"><a href="http://www.yuxiit.com">首页 <span
|
||||
class="sr-only">(current)</span></a></li>
|
||||
<li class="dropdown">
|
||||
<a data-toggle="dropdown" role="button">解决方案 <span class="caret"></span></a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="javascript:void(0);" class="menu-group">共享</a></li>
|
||||
<li><a href="http://bike.yuxiit.com" target="_blank">共享单车</a></li>
|
||||
<li><a href="http://www.yuxiit.com/carShare.html" target="_blank">共享汽车</a></li>
|
||||
<li><a href="http://www.yuxiit.com/sharedbed.html">共享陪护床</a></li>
|
||||
<li><a href="http://www.yuxiit.com/scooter.html">共享滑板车</a></li>
|
||||
<li><a href="http://www.yuxiit.com/Ebike.html">共享助力车</a></li>
|
||||
<li role="separator" class="divider"></li>
|
||||
<li><a href="javascript:void(0);" class="menu-group">餐饮</a></li>
|
||||
<li><a href="http://tianmei.yuxiit.com/" target="_blank">天美点餐</a></li>
|
||||
<li role="separator" class="divider"></li>
|
||||
<li><a class="menu-group" href="javascript:void(0);">房产</a></li>
|
||||
<li><a href="http://hx.yuxiit.com/" target="_blank">汇享公寓</a></li>
|
||||
<li role="separator" class="divider"></li>
|
||||
</ul>
|
||||
<a data-toggle="dropdown" role="button">解决方案 <span class="caret"></span></a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="menu-group" href="javascript:void(0);">共享</a></li>
|
||||
<li><a href="http://bike.yuxiit.com" target="_blank">共享单车</a></li>
|
||||
<li><a href="http://www.yuxiit.com/carShare.html" target="_blank">共享汽车</a></li>
|
||||
<li><a href="http://www.yuxiit.com/sharedbed.html">共享陪护床</a></li>
|
||||
<li><a href="http://www.yuxiit.com/scooter.html">共享滑板车</a></li>
|
||||
<li><a href="http://www.yuxiit.com/Ebike.html">共享助力车</a></li>
|
||||
<li class="divider" role="separator"></li>
|
||||
<li><a class="menu-group" href="javascript:void(0);">餐饮</a></li>
|
||||
<li><a href="http://tianmei.yuxiit.com/" target="_blank">天美点餐</a></li>
|
||||
<li class="divider" role="separator"></li>
|
||||
<li><a class="menu-group" href="javascript:void(0);">房产</a></li>
|
||||
<li><a href="http://hx.yuxiit.com/" target="_blank">汇享公寓</a></li>
|
||||
<li class="divider" role="separator"></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">定制开发 <span class="caret"></span></a>
|
||||
<a aria-expanded="false" aria-haspopup="true" class="dropdown-toggle" data-toggle="dropdown" href="#"
|
||||
role="button">定制开发 <span class="caret"></span></a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="http://wechat.yuxiit.com/" target="_blank">微信开发</a></li>
|
||||
<li role="separator" class="divider"></li>
|
||||
<li class="divider" role="separator"></li>
|
||||
<li><a href="http://www.yuxiit.com/UI-s.html">APP开发</a></li>
|
||||
<li role="separator" class="divider"></li>
|
||||
<li class="divider" role="separator"></li>
|
||||
<li><a href="http://www.yuxiit.com/proDevelop.html">小程序开发</a></li>
|
||||
<li role="separator" class="divider"></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="http://www.yuxiit.com/aboutUs2019.html">关于玉犀 </a></li>
|
||||
</ul>
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li><a href="">电话:0755-85225123<!-- <span class="hidden-xs hidden-sm"> 0755-85225123 / </span> 18123752516 --></a></li>
|
||||
</ul>
|
||||
</div><!-- /.navbar-collapse -->
|
||||
<li class="divider" role="separator"></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="http://www.yuxiit.com/aboutUs2019.html">关于创特 </a></li>
|
||||
</ul>
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li><a href="">电话:0755-85225123
|
||||
<!-- <span class="hidden-xs hidden-sm"> 0755-85225123 / </span> 18123752516 --></a></li>
|
||||
</ul>
|
||||
</div><!-- /.navbar-collapse -->
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<!-- 文章正文 -->
|
||||
<section class="container" style="margin-top: 88px;">
|
||||
<div class="row">
|
||||
<!-- 文章正文 -->
|
||||
<section class="container" style="margin-top: 88px;">
|
||||
<div class="row">
|
||||
|
||||
|
||||
<!-- 左边部分 -->
|
||||
<div class="col-md-8 wow fadeInLeft animated" style="visibility: visible; animation-name: fadeInLeft;">
|
||||
<!-- 文字主体 -->
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<h2>玉犀景区SaaS平台 打造专业景区共享出行综合解决方案</h2>
|
||||
<p id="label" style="border-bottom: 1px solid #ddd; margin-top: 20px;">
|
||||
<span>2025年07月08日 12:40 </span>
|
||||
<span class="pull-right">分类:景区共享电动车# </span>
|
||||
</p>
|
||||
<h4 id="minhead" style="font-size: 20px; margin-top: 20px;"></h4>
|
||||
<div id="conter"></div>
|
||||
<p class="MsoNormal"><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
<!-- 左边部分 -->
|
||||
<div class="col-md-8 wow fadeInLeft animated" style="visibility: visible; animation-name: fadeInLeft;">
|
||||
<!-- 文字主体 -->
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<h2>创特景区SaaS平台 打造专业景区共享出行综合解决方案</h2>
|
||||
<p id="label" style="border-bottom: 1px solid #ddd; margin-top: 20px;">
|
||||
<span>2025年07月08日 12:40 </span>
|
||||
<span class="pull-right">分类:景区共享电动车# </span>
|
||||
</p>
|
||||
<h4 id="minhead" style="font-size: 20px; margin-top: 20px;"></h4>
|
||||
<div id="conter"></div>
|
||||
<p class="MsoNormal"><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;
|
||||
mso-font-kerning:1.0000pt;"><font face="宋体">想必有很多游客深有感触,在偌大景区实在走不动</font><font face="Calibri">?</font><font face="宋体">有老又有小,想坐观光车又要排队等待</font><font face="Calibri">?</font><font face="宋体">现在,一辆共享扫码代步观光车就能解决游客烦恼。用户只需用手机扫码,即可解锁一辆共享观光车。游客通过玉犀景区</font><font face="Calibri">SaaS</font><font face="宋体">智慧出行平台的微信、支付宝小程序扫码进入充值使用,按时计费付费并实时退费,快速完成扫、用、停、还等操作,让游客安心享受便捷、无感的共享出行服务。</font></span></p><p class="MsoNormal"><img src=""><img src="https://www.yuxiit.com/img/internet_thinks/car_model-6.png" alt="设备" style="float: none;"></p><p class="MsoNormal"><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
mso-font-kerning:1.0000pt;"><font face="宋体">想必有很多游客深有感触,在偌大景区实在走不动</font><font
|
||||
face="Calibri">?</font><font face="宋体">有老又有小,想坐观光车又要排队等待</font><font
|
||||
face="Calibri">?</font><font face="宋体">现在,一辆共享扫码代步观光车就能解决游客烦恼。用户只需用手机扫码,即可解锁一辆共享观光车。游客通过创特景区</font><font
|
||||
face="Calibri">SaaS</font><font face="宋体">智慧出行平台的微信、支付宝小程序扫码进入充值使用,按时计费付费并实时退费,快速完成扫、用、停、还等操作,让游客安心享受便捷、无感的共享出行服务。</font></span>
|
||||
</p>
|
||||
<p class="MsoNormal"><img src=""><img
|
||||
alt="设备" src="https://www.yuxiit.com/img/internet_thinks/car_model-6.png"
|
||||
style="float: none;"></p>
|
||||
<p class="MsoNormal"><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;
|
||||
mso-font-kerning:1.0000pt;"><font face="宋体">玉犀景区</font><font face="Calibri">SaaS</font><font face="宋体">智慧出行平台通过“场、车、人”三大核心要素,以“为游客提供出行便利”“为景区实现增值创收”为两大核心目标,实现了基于物联网硬件、云端软件系统为主体的出行解决方案,通过运营服务、运维服务、数据统计等核心模块为业务赋能。</font></span></p><p class="MsoNormal"><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
mso-font-kerning:1.0000pt;"><font face="宋体">创特景区</font><font face="Calibri">SaaS</font><font face="宋体">智慧出行平台通过“场、车、人”三大核心要素,以“为游客提供出行便利”“为景区实现增值创收”为两大核心目标,实现了基于物联网硬件、云端软件系统为主体的出行解决方案,通过运营服务、运维服务、数据统计等核心模块为业务赋能。</font></span>
|
||||
</p>
|
||||
<p class="MsoNormal"><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;
|
||||
mso-font-kerning:1.0000pt;"><font face="宋体"><br></font></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;
|
||||
mso-font-kerning:1.0000pt;"><o:p></o:p></span></p><p class="MsoNormal"><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
mso-font-kerning:1.0000pt;"><o:p></o:p></span></p>
|
||||
<p class="MsoNormal"><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;
|
||||
mso-font-kerning:1.0000pt;">近几年来,玉犀科技研发的共享扫码代步车持续向景区渗透应用,游客扫码用车订单量增多,景区管理方不但可通过管理后台实时查看订单详情、统计分析营运情况的需求还能够为客户提供涵盖应用中心、会员管理、协议管理、订单管理、账户管理等丰富功能的一站式服务,方便客户随时随地搜索并查看车辆订单详情,统计订单数据。除此之外,还可查询使用车辆的支付流水和退款状态,付款信息、营收情况等一键清晰,辅助客户进行针对性的运营管理,进而为游客提供更智慧、便捷的服务。</span></p><p class="MsoNormal"><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
mso-font-kerning:1.0000pt;">近几年来,创特科技研发的共享扫码代步车持续向景区渗透应用,游客扫码用车订单量增多,景区管理方不但可通过管理后台实时查看订单详情、统计分析营运情况的需求还能够为客户提供涵盖应用中心、会员管理、协议管理、订单管理、账户管理等丰富功能的一站式服务,方便客户随时随地搜索并查看车辆订单详情,统计订单数据。除此之外,还可查询使用车辆的支付流水和退款状态,付款信息、营收情况等一键清晰,辅助客户进行针对性的运营管理,进而为游客提供更智慧、便捷的服务。</span>
|
||||
</p>
|
||||
<p class="MsoNormal"><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;
|
||||
mso-font-kerning:1.0000pt;"><br></span><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;
|
||||
mso-font-kerning:1.0000pt;"><o:p></o:p></span></p><p class="MsoNormal"><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
mso-font-kerning:1.0000pt;"><o:p></o:p></span></p>
|
||||
<p class="MsoNormal"><span style="mso-spacerun:'yes';font-family:宋体;mso-ascii-font-family:Calibri;
|
||||
mso-hansi-font-family:Calibri;mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;
|
||||
mso-font-kerning:1.0000pt;">接下来,玉犀科技也将高效、智能的共享出行解决方案推广至更广阔的场景,助力景区旅游服务快速发展。</span><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
|
||||
mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;mso-font-kerning:1.0000pt;"><o:p></o:p></span></p> </div>
|
||||
</div>
|
||||
mso-font-kerning:1.0000pt;">接下来,创特科技也将高效、智能的共享出行解决方案推广至更广阔的场景,助力景区旅游服务快速发展。</span><span
|
||||
style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
|
||||
mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;mso-font-kerning:1.0000pt;"><o:p></o:p></span></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="nextorpre" style="margin-top: 38px; border-top: 1px solid #ddd; padding-top: 8px;">
|
||||
<li class="pull-left">上一篇:
|
||||
<a href="http://www.yuxiit.com/news/news_407.html">景区共享自行车运营方案都有哪些?</a>
|
||||
</li>
|
||||
<li class="pull-right">下一篇:
|
||||
暂时没有了 </li>
|
||||
</div>
|
||||
<br><br><br><br>
|
||||
</div><!--左边部分-->
|
||||
<div class="nextorpre" style="margin-top: 38px; border-top: 1px solid #ddd; padding-top: 8px;">
|
||||
<li class="pull-left">上一篇:
|
||||
<a href="http://www.yuxiit.com/news/news_407.html">景区共享自行车运营方案都有哪些?</a>
|
||||
</li>
|
||||
<li class="pull-right">下一篇:
|
||||
暂时没有了
|
||||
</li>
|
||||
</div>
|
||||
<br><br><br><br>
|
||||
</div><!--左边部分-->
|
||||
|
||||
|
||||
<!-- 右边部分 -->
|
||||
<aside class="col-md-4" style="border-left: 1px solid #eee; background: #fefefe;">
|
||||
<!-- 热门标签 -->
|
||||
<div class="widget tags wow fadeInRight animated"
|
||||
style="margin-bottom: 30px !important; visibility: visible; animation-name: fadeInRight;">
|
||||
<h4>热门标签</h4>
|
||||
<ul class="tag-cloud">
|
||||
<li><a class="btn btn-xs" href="">景区单车</a></li>
|
||||
<li><a class="btn btn-xs" href="">政务平台</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享经济</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享汽车APP开发</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享类</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享汽车软件开发</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享雨伞APP开发</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享雨伞软件开发</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享货车开发</a></li>
|
||||
</ul>
|
||||
</div><!-- 热门标签 -->
|
||||
|
||||
<!-- 最新资讯推荐 -->
|
||||
<div class="sy_news animated" data-wow-delay="200ms"
|
||||
style="visibility: visible; animation-delay: 200ms; animation-name: fadeInDown;">
|
||||
<h4>解决方案</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_437.html"
|
||||
target="_blank" title="创特景区SaaS平台 打造专业景区共享出行综合解决方案">
|
||||
<span class="pull-right">2025-07-08</span>创特景区SaaS平台 打造专业景区共享出行综合解决方案
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_407.html" target="_blank"
|
||||
title="景区共享自行车运营方案都有哪些?">
|
||||
<span class="pull-right">2023-05-12</span>景区共享自行车运营方案都有哪些? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_401.html"
|
||||
target="_blank" title="为什么说景区共享代步车的未来发展空间巨大?">
|
||||
<span class="pull-right">2023-05-08</span>为什么说景区共享代步车的未来发展空间巨大? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_394.html"
|
||||
target="_blank" title="景区共享单车具备什么功能特点和收费标准?">
|
||||
<span class="pull-right">2023-04-14</span>景区共享单车具备什么功能特点和收费标准? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_300.html" target="_blank"
|
||||
title="新冠疫情成为共享电单车行业新契机!">
|
||||
<span class="pull-right">2020-09-08</span>新冠疫情成为共享电单车行业新契机! </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_297.html"
|
||||
target="_blank" title="新冠状病毒出现,对共享电动车行业有影响吗?">
|
||||
<span class="pull-right">2020-07-31</span>新冠状病毒出现,对共享电动车行业有影响吗? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_276.html"
|
||||
target="_blank" title="投资共享电动车项目快速回本的几大关键点">
|
||||
<span class="pull-right">2020-07-31</span>投资共享电动车项目快速回本的几大关键点 </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_274.html" target="_blank"
|
||||
title="共享摇摇车引领共享经济新发展方向">
|
||||
<span class="pull-right">2020-01-02</span>共享摇摇车引领共享经济新发展方向 </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_265.html"
|
||||
target="_blank" title="电动自行车物联化方案开发 智能电动车升级改造">
|
||||
<span class="pull-right">2019-12-31</span>电动自行车物联化方案开发 智能电动车升级改造 </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_264.html" target="_blank"
|
||||
title="宠物APP软件系统 宠物智能计步器">
|
||||
<span class="pull-right">2019-12-31</span>宠物APP软件系统 宠物智能计步器 </a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sy_news animated" data-wow-delay="200ms"
|
||||
style="visibility: visible; animation-delay: 200ms; animation-name: fadeInDown;">
|
||||
<h4>开发知识</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_426.html" target="_blank"
|
||||
title="共享电动车为何能在共享经济中独树一帜?">
|
||||
<span class="pull-right">2023-06-29</span>共享电动车为何能在共享经济中独树一帜? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_409.html" target="_blank"
|
||||
title="共享经济项目为何能受到大众的青睐?">
|
||||
<span class="pull-right">2023-05-16</span>共享经济项目为何能受到大众的青睐? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_402.html" target="_blank"
|
||||
title="景区共享智能代步车运营方案有哪些?">
|
||||
<span class="pull-right">2023-05-10</span>景区共享智能代步车运营方案有哪些? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_391.html"
|
||||
target="_blank" title="创特景区共享代步车系统具备什么样的优势?">
|
||||
<span class="pull-right">2023-04-07</span>创特景区共享代步车系统具备什么样的优势? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_308.html" target="_blank"
|
||||
title="做共享电动车能赚到钱吗">
|
||||
<span class="pull-right">2020-03-07</span>做共享电动车能赚到钱吗 </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_298.html" target="_blank"
|
||||
title="共享电单车投资前景如何?要投入多少钱?">
|
||||
<span class="pull-right">2020-02-23</span>共享电单车投资前景如何?要投入多少钱? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_284.html"
|
||||
target="_blank" title="共享电单车app系统方案开发是怎么合作的?">
|
||||
<span class="pull-right">2020-01-10</span>共享电单车app系统方案开发是怎么合作的? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_283.html" target="_blank"
|
||||
title="共享医疗器械,助力开启共享经济新时代">
|
||||
<span class="pull-right">2020-01-08</span>共享医疗器械,助力开启共享经济新时代 </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_279.html"
|
||||
target="_blank" title="共享陪护椅系统方案成为最具投资价值的共享项目">
|
||||
<span class="pull-right">2020-01-06</span>共享陪护椅系统方案成为最具投资价值的共享项目 </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_275.html" target="_blank"
|
||||
title="共享电动车项目要向哪个政府部门申请?">
|
||||
<span class="pull-right">2020-01-03</span>共享电动车项目要向哪个政府部门申请? </a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="sy_news animated" data-wow-delay="200ms"
|
||||
style="visibility: visible; animation-delay: 200ms; animation-name: fadeInDown;">
|
||||
<h4>行业动态</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_432.html"
|
||||
target="_blank" title="景区共享电动代步车如何引领景区发展趋势?">
|
||||
<span class="pull-right">2024-12-11</span>景区共享电动代步车如何引领景区发展趋势? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_431.html" target="_blank"
|
||||
title="景区共享电动代步车有几种合作模式?">
|
||||
<span class="pull-right">2023-07-19</span>景区共享电动代步车有几种合作模式? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_430.html" target="_blank"
|
||||
title="景区共享观光代步车为何如此火爆?">
|
||||
<span class="pull-right">2023-07-13</span>景区共享观光代步车为何如此火爆? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_428.html"
|
||||
target="_blank" title="2023年了,共享电动车项目还具备投资价值吗?">
|
||||
<span class="pull-right">2023-07-04</span>2023年了,共享电动车项目还具备投资价值吗? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_427.html" target="_blank"
|
||||
title="共享电动车项目投资大吗?">
|
||||
<span class="pull-right">2023-07-03</span>共享电动车项目投资大吗? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_424.html" target="_blank"
|
||||
title="景区投放共享电动车可靠吗?">
|
||||
<span class="pull-right">2023-06-06</span>景区投放共享电动车可靠吗? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_423.html" target="_blank"
|
||||
title="景区共享电动车 助力景区智慧化快速发展">
|
||||
<span class="pull-right">2023-06-06</span>景区共享电动车 助力景区智慧化快速发展 </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_421.html" target="_blank"
|
||||
title="景区共享电动代步车怎么合作?">
|
||||
<span class="pull-right">2023-05-26</span>景区共享电动代步车怎么合作? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_420.html" target="_blank"
|
||||
title="景区智能扫码代步车的合作模式都有哪些?">
|
||||
<span class="pull-right">2023-05-26</span>景区智能扫码代步车的合作模式都有哪些? </a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_419.html"
|
||||
target="_blank" title="为何说景区共享代步车是掌握景区发展命脉?">
|
||||
<span class="pull-right">2023-05-24</span>为何说景区共享代步车是掌握景区发展命脉? </a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</aside><!-- 右边部分 -->
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- 右边部分 -->
|
||||
<aside class="col-md-4" style="border-left: 1px solid #eee; background: #fefefe;">
|
||||
<!-- 热门标签 -->
|
||||
<div class="widget tags wow fadeInRight animated" style="margin-bottom: 30px !important; visibility: visible; animation-name: fadeInRight;">
|
||||
<h4>热门标签</h4>
|
||||
<ul class="tag-cloud">
|
||||
<li><a class="btn btn-xs" href="">景区单车</a></li>
|
||||
<li><a class="btn btn-xs" href="">政务平台</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享经济</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享汽车APP开发</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享类</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享汽车软件开发</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享雨伞APP开发</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享雨伞软件开发</a></li>
|
||||
<li><a class="btn btn-xs" href="">共享货车开发</a></li>
|
||||
</ul>
|
||||
</div><!-- 热门标签 -->
|
||||
|
||||
<!-- 最新资讯推荐 -->
|
||||
<div class="sy_news animated" data-wow-delay="200ms" style="visibility: visible; animation-delay: 200ms; animation-name: fadeInDown;">
|
||||
<h4>解决方案</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_437.html" title="玉犀景区SaaS平台 打造专业景区共享出行综合解决方案" target="_blank">
|
||||
<span class="pull-right">2025-07-08</span>玉犀景区SaaS平台 打造专业景区共享出行综合解决方案 </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_407.html" title="景区共享自行车运营方案都有哪些?" target="_blank">
|
||||
<span class="pull-right">2023-05-12</span>景区共享自行车运营方案都有哪些? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_401.html" title="为什么说景区共享代步车的未来发展空间巨大?" target="_blank">
|
||||
<span class="pull-right">2023-05-08</span>为什么说景区共享代步车的未来发展空间巨大? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_394.html" title="景区共享单车具备什么功能特点和收费标准?" target="_blank">
|
||||
<span class="pull-right">2023-04-14</span>景区共享单车具备什么功能特点和收费标准? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_300.html" title="新冠疫情成为共享电单车行业新契机!" target="_blank">
|
||||
<span class="pull-right">2020-09-08</span>新冠疫情成为共享电单车行业新契机! </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_297.html" title="新冠状病毒出现,对共享电动车行业有影响吗?" target="_blank">
|
||||
<span class="pull-right">2020-07-31</span>新冠状病毒出现,对共享电动车行业有影响吗? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_276.html" title="投资共享电动车项目快速回本的几大关键点" target="_blank">
|
||||
<span class="pull-right">2020-07-31</span>投资共享电动车项目快速回本的几大关键点 </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_274.html" title="共享摇摇车引领共享经济新发展方向" target="_blank">
|
||||
<span class="pull-right">2020-01-02</span>共享摇摇车引领共享经济新发展方向 </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_265.html" title="电动自行车物联化方案开发 智能电动车升级改造" target="_blank">
|
||||
<span class="pull-right">2019-12-31</span>电动自行车物联化方案开发 智能电动车升级改造 </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_264.html" title="宠物APP软件系统 宠物智能计步器" target="_blank">
|
||||
<span class="pull-right">2019-12-31</span>宠物APP软件系统 宠物智能计步器 </a>
|
||||
</li> </ul>
|
||||
</div><div class="sy_news animated" data-wow-delay="200ms" style="visibility: visible; animation-delay: 200ms; animation-name: fadeInDown;">
|
||||
<h4>开发知识</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_426.html" title="共享电动车为何能在共享经济中独树一帜?" target="_blank">
|
||||
<span class="pull-right">2023-06-29</span>共享电动车为何能在共享经济中独树一帜? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_409.html" title="共享经济项目为何能受到大众的青睐?" target="_blank">
|
||||
<span class="pull-right">2023-05-16</span>共享经济项目为何能受到大众的青睐? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_402.html" title="景区共享智能代步车运营方案有哪些?" target="_blank">
|
||||
<span class="pull-right">2023-05-10</span>景区共享智能代步车运营方案有哪些? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_391.html" title="玉犀景区共享代步车系统具备什么样的优势?" target="_blank">
|
||||
<span class="pull-right">2023-04-07</span>玉犀景区共享代步车系统具备什么样的优势? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_308.html" title="做共享电动车能赚到钱吗" target="_blank">
|
||||
<span class="pull-right">2020-03-07</span>做共享电动车能赚到钱吗 </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_298.html" title="共享电单车投资前景如何?要投入多少钱?" target="_blank">
|
||||
<span class="pull-right">2020-02-23</span>共享电单车投资前景如何?要投入多少钱? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_284.html" title="共享电单车app系统方案开发是怎么合作的?" target="_blank">
|
||||
<span class="pull-right">2020-01-10</span>共享电单车app系统方案开发是怎么合作的? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_283.html" title="共享医疗器械,助力开启共享经济新时代" target="_blank">
|
||||
<span class="pull-right">2020-01-08</span>共享医疗器械,助力开启共享经济新时代 </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_279.html" title="共享陪护椅系统方案成为最具投资价值的共享项目" target="_blank">
|
||||
<span class="pull-right">2020-01-06</span>共享陪护椅系统方案成为最具投资价值的共享项目 </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_275.html" title="共享电动车项目要向哪个政府部门申请?" target="_blank">
|
||||
<span class="pull-right">2020-01-03</span>共享电动车项目要向哪个政府部门申请? </a>
|
||||
</li> </ul>
|
||||
</div><div class="sy_news animated" data-wow-delay="200ms" style="visibility: visible; animation-delay: 200ms; animation-name: fadeInDown;">
|
||||
<h4>行业动态</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="http://www.yuxiit.com/news/news_432.html" title="景区共享电动代步车如何引领景区发展趋势?" target="_blank">
|
||||
<span class="pull-right">2024-12-11</span>景区共享电动代步车如何引领景区发展趋势? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_431.html" title="景区共享电动代步车有几种合作模式?" target="_blank">
|
||||
<span class="pull-right">2023-07-19</span>景区共享电动代步车有几种合作模式? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_430.html" title="景区共享观光代步车为何如此火爆?" target="_blank">
|
||||
<span class="pull-right">2023-07-13</span>景区共享观光代步车为何如此火爆? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_428.html" title="2023年了,共享电动车项目还具备投资价值吗?" target="_blank">
|
||||
<span class="pull-right">2023-07-04</span>2023年了,共享电动车项目还具备投资价值吗? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_427.html" title="共享电动车项目投资大吗?" target="_blank">
|
||||
<span class="pull-right">2023-07-03</span>共享电动车项目投资大吗? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_424.html" title="景区投放共享电动车可靠吗?" target="_blank">
|
||||
<span class="pull-right">2023-06-06</span>景区投放共享电动车可靠吗? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_423.html" title="景区共享电动车 助力景区智慧化快速发展" target="_blank">
|
||||
<span class="pull-right">2023-06-06</span>景区共享电动车 助力景区智慧化快速发展 </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_421.html" title="景区共享电动代步车怎么合作?" target="_blank">
|
||||
<span class="pull-right">2023-05-26</span>景区共享电动代步车怎么合作? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_420.html" title="景区智能扫码代步车的合作模式都有哪些?" target="_blank">
|
||||
<span class="pull-right">2023-05-26</span>景区智能扫码代步车的合作模式都有哪些? </a>
|
||||
</li><li>
|
||||
<a href="http://www.yuxiit.com/news/news_419.html" title="为何说景区共享代步车是掌握景区发展命脉?" target="_blank">
|
||||
<span class="pull-right">2023-05-24</span>为何说景区共享代步车是掌握景区发展命脉? </a>
|
||||
</li> </ul>
|
||||
</div> </aside><!-- 右边部分 -->
|
||||
|
||||
|
||||
|
||||
</div><!--/.row-->
|
||||
</div><!--/.row-->
|
||||
</section><!--/#blog-->
|
||||
|
||||
|
||||
<!-- 底部 -->
|
||||
<div class="container-fluid footer" style="margin-top: 40px;">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<div class="row footer-info">
|
||||
<img src="../newspublic/img/footer_logo.png"> <span>成为您更专业的技术合伙人</span>
|
||||
</div>
|
||||
|
||||
<div class="row footer-group">
|
||||
<div class="col-sm-4">
|
||||
<h4>关于创特|在线咨询</h4>
|
||||
<p>反馈建议:yuxi@yuxiit.com</p>
|
||||
<p>客服电话:0755-85225123</p>
|
||||
<p>工作时间:周一到周五 09:00-18:00</p>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-4">
|
||||
<h4>共享经济整体解决方案</h4>
|
||||
<p><a href="http://bike.yuxiit.com" target="_blank">共享单车</a> | <a
|
||||
href="http://www.yuxiit.com/carShare.html" target="_blank">共享汽车</a></p>
|
||||
<p><a href="http://www.yuxiit.com/sharedbed.html" target="_blank">共享陪护床</a> | <a
|
||||
href="http://www.yuxiit.com/sharabank.html" target="_blank">共享充电宝</a></p>
|
||||
<p><a href="http://umbrella.yuxiit.com/" target="_blank">共享雨伞</a> | <a
|
||||
href="http://www.yuxiit.com/Ebike.html">共享助力车</a></p>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- 底部 -->
|
||||
<div class="container-fluid footer" style="margin-top: 40px;">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<div class="row footer-info">
|
||||
<img src="../newspublic/img/footer_logo.png"> <span>成为您更专业的技术合伙人</span>
|
||||
</div>
|
||||
|
||||
<div class="row footer-group">
|
||||
<div class="col-sm-4">
|
||||
<h4>关于玉犀|在线咨询</h4>
|
||||
<p>反馈建议:yuxi@yuxiit.com</p>
|
||||
<p>客服电话:0755-85225123</p>
|
||||
<p>工作时间:周一到周五 09:00-18:00</p>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-4">
|
||||
<h4>共享经济整体解决方案</h4>
|
||||
<p><a href="http://bike.yuxiit.com" target="_blank">共享单车</a> | <a href="http://www.yuxiit.com/carShare.html" target="_blank">共享汽车</a></p>
|
||||
<p><a href="http://www.yuxiit.com/sharedbed.html" target="_blank">共享陪护床</a> | <a href="http://www.yuxiit.com/sharabank.html" target="_blank">共享充电宝</a></p>
|
||||
<p><a href="http://umbrella.yuxiit.com/" target="_blank">共享雨伞</a> | <a href="http://www.yuxiit.com/Ebike.html">共享助力车</a></p>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-4">
|
||||
<h4>玉犀旗下品牌</h4>
|
||||
<p>
|
||||
<a href="http://tianmei.yuxiit.com/" target="_blank"><img src="../newspublic/img/img/icon_50.png"></a>
|
||||
<a href="http://hx.yuxiit.com/" target="_blank"><img width="50" src="../newspublic/img/solut-r8.png"></a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<h4>创特旗下品牌</h4>
|
||||
<p>
|
||||
<a href="http://tianmei.yuxiit.com/" target="_blank"><img
|
||||
src="../newspublic/img/img/icon_50.png"></a>
|
||||
<a href="http://hx.yuxiit.com/" target="_blank"><img src="../newspublic/img/solut-r8.png"
|
||||
width="50"></a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="container-fluid min-footer">
|
||||
<div class="row">
|
||||
<div class="col-sm-6 col-md-offset-2">Copyright © 2013-2025深圳市创特科技有限公司 <a
|
||||
href="http://www.miitbeian.gov.cn/" target="_blank">粤ICP备14055703号-1</a></div>
|
||||
<div class="col-sm-4">公司地址:深圳市龙华新区1970文化创意产业园A栋206</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="server">
|
||||
<ul>
|
||||
<!-- <li id="erweima"><img src="../newspublic/img/right01.png" /></li>-->
|
||||
|
||||
<!-- <a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=1829668236&site=qq&menu=yes">-->
|
||||
<!-- <li id="toqq"><img src="../newspublic/img/right02.png" /></li>-->
|
||||
<!-- </a>-->
|
||||
|
||||
<li id="totel"><img src="../newspublic/img/right03.png"/></li>
|
||||
|
||||
<a href="http://p.qiao.baidu.com//im/index?siteid=8233756&ucid=7539873" target="_blank">
|
||||
<li id="toqq"><img src="../newspublic/img/right04.png"/></li>
|
||||
</a>
|
||||
|
||||
<li onclick="goTop();return false;"><img src="../newspublic/img/right05.png"/></li>
|
||||
</ul>
|
||||
|
||||
|
||||
<div class="container-fluid min-footer">
|
||||
<div class="row">
|
||||
<div class="col-sm-6 col-md-offset-2">Copyright © 2013-2025深圳市玉犀科技有限公司 <a href="http://www.miitbeian.gov.cn/" target="_blank">粤ICP备14055703号-1</a></div>
|
||||
<div class="col-sm-4">公司地址:深圳市龙华新区1970文化创意产业园A栋206</div>
|
||||
</div>
|
||||
<div class="list erlist none" style="display: none;">
|
||||
<div class="sanjiao"></div>
|
||||
<img src="../newspublic/img/cide.png"/>
|
||||
</div>
|
||||
|
||||
<div class="server">
|
||||
<ul>
|
||||
<!-- <li id="erweima"><img src="../newspublic/img/right01.png" /></li>-->
|
||||
|
||||
<!-- <a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=1829668236&site=qq&menu=yes">-->
|
||||
<!-- <li id="toqq"><img src="../newspublic/img/right02.png" /></li>-->
|
||||
<!-- </a>-->
|
||||
|
||||
<li id="totel"><img src="../newspublic/img/right03.png" /></li>
|
||||
|
||||
<a target="_blank" href="http://p.qiao.baidu.com//im/index?siteid=8233756&ucid=7539873">
|
||||
<li id="toqq"><img src="../newspublic/img/right04.png" /></li>
|
||||
</a>
|
||||
|
||||
<li onclick="goTop();return false;"><img src="../newspublic/img/right05.png" /></li>
|
||||
</ul>
|
||||
|
||||
|
||||
<div class="list erlist none" style="display: none;">
|
||||
<div class="sanjiao"></div>
|
||||
<img src="../newspublic/img/cide.png" />
|
||||
</div>
|
||||
|
||||
<div class="list tellist none" style="display: none;">
|
||||
<div class="sanjiao"></div>
|
||||
<span>18123752516</span>
|
||||
</div>
|
||||
<div class="list tellist none" style="display: none;">
|
||||
<div class="sanjiao"></div>
|
||||
<span>18123752516</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
<script src="../newspublic/js/float.js"></script>
|
||||
</html>
|
||||
Loading…
Reference in New Issue
Block a user