|
|
@@ -59,6 +59,13 @@
|
|
|
<u-icon name="arrow-right"></u-icon>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="nego">
|
|
|
+ <view class="tipTextBtn" @click="openExternalLink('http://8.136.98.49:8002/service_negotiate/')">《服务协议》</view>
|
|
|
+ <view class="tipTextBtn" @click="openExternalLink('http://8.136.98.49:8002/safe_negotiate/')">《隐私政策》</view>
|
|
|
+ <view class="" @click="openExternalLink('https://beian.miit.gov.cn/')">
|
|
|
+ ICP备案号:豫ICP备13013965号-42A >
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
<view class="bottom" v-if="$isneutral">
|
|
|
©河南云飞科技发展有限公司
|
|
|
</view>
|
|
|
@@ -85,6 +92,9 @@
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ openExternalLink(url) {
|
|
|
+ window.open(url, '_blank'); // _blank 表示在新窗口中打开
|
|
|
+ },
|
|
|
async getEquipList() {
|
|
|
const res = await this.$myRequest({
|
|
|
url: '/api/api_gateway?method=home.homes.app_version_record',
|
|
|
@@ -202,7 +212,15 @@
|
|
|
page {
|
|
|
background: $uni-bg-color-grey;
|
|
|
}
|
|
|
-
|
|
|
+ .nego{
|
|
|
+ text-align: center;
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
+ .tipTextBtn{
|
|
|
+ display: inline-block;
|
|
|
+ color: #2979ff;
|
|
|
+ text-decoration: underline; /* 添加下划线 */
|
|
|
+ }
|
|
|
.line {
|
|
|
height: 16rpx;
|
|
|
width: 100%;
|