123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524 |
- <!-- @notes: 页面于2024-11-17 由判断是否为app [isShowApp] 进行背景颜色判断的需求取消,统一换成白色背景. html上直接写 布尔值的均由 [isShowApp] 替换-->
- <template>
- <layoutBack :isGoBack='true'>
- <layout title='推荐云手机'>
- <!-- <div :class="isShowApp?'introduction':'introduction introduction-white'"> -->
- <div class="introduction" :class="{'introduction-white': !false}">
- <div class="introduction-title" v-if="isShowApp">
- 推荐云手机
- </div>
- <div class="introduction-tips" :style="{color: false ? '#EDEEF0' : '#0A132B' }">
- 请搜索您在云手机内希望使用的应用!
- </div>
- <div class="introduction-search">
- <img src="@/assets/image/introductionCloudPhone/search.png" alt="" />
- <input ref="inputField" v-model="searchText" type="search" placeholder="请输入应用名" />
- <div style="width: 1px;height: 20px;background: #7E8495;border-radius: 1px;"></div>
- <div @click="search">搜索</div>
- </div>
- <div v-if="applicationList.length && isShow">
- <div class="introduction-tips" style="margin-top: 24px;">
- 以下推荐应用选您需要使用的应用
- </div>
- <div>
- <div class="application">
- <div v-for="(item,index) in applicationList" :key="index" @click="selectApplication(item)">
- {{ item }}
- </div>
- </div>
- </div>
- </div>
- <div style="margin-top: 24px;" v-if="appSeatchList.length && !isShow">
- <div class="application-list" v-for="(item,index) in appSeatchList" :key="index">
- <div class="application-list-top">
- <img class="application-list-img" width="42" height="42" :src="item.img" alt="" />
- <div class="application-list-rigth">
- <div class="application-list-title">
- <div class="application-list-appname"> {{item.appName}}</div>
- <span v-if="item.articleId>0" @click="goArticleDetails(item)">点击阅读</span>
- </div>
- <div class="application-list-tips">{{item.appName}}云手机使用教程</div>
- </div>
- <div class="application-list-btn" @click="pay(item)">购买云手机
- <!-- <img width="12" src="@/assets/image/introductionCloudPhone/btn.png" /> -->
- </div>
- </div>
- <div class="application-list-bottom">推荐机型:{{item.list?item.list.map(o=>o.phoneTypeStr).join('/'):''}}</div>
- </div>
- </div>
- <div class="application-default" v-if="!appSeatchList.length && !isShow">
- <div class="empty">
- <div class="empty-title">当前搜索结果为空,您可以通过下面两种方式在云手机安装APP(限安卓手机应用上传安装)</div>
- <div class="empty-img">
- <img :src="require(`@/assets/image/introductionCloudPhone/${false ? 'empty-tips-default' : 'empty-tips-defaultWhite'}.png`)" alt="">
- </div>
- <div class="empty-tips">
- <div :style="{color: false ? '#EDEEF0' : '#0A132B' }">
- 温馨提示:
- </div>
- <div>
- 根据相关部门要求,违规APP将无法安装。请远离以上风险软件,谨防上当受骗。如果需要应用上报,请联系客服;也可以购买短期云手机,试用您未搜索到的应用。
- </div>
- </div>
- <div class="empty-btn" style="bottom: 24px; left: 16px;width: calc(100% - 32PX)">
- <div v-for="item in emptyBtn" :key="item.key" @click="emptyBtnFun(item.type)" :class="{dark: false && !item.type}">
- {{ item.name }}
- </div>
- </div>
- </div>
- </div>
- </div>
- </layout>
- </layoutBack>
- </template>
- <script>
- import layoutBack from '@/components/layout';
- import layout from './components/layout';
- import { fileKeyToUrl } from '@/plugins/file-center.js';
- import uni from '@/static/static/js/uni.webview.1.5.2';
- export default {
- auth: false,
- name: 'introductionCloudPhone',
- head: {
- title: '推荐云手机',
- },
- data() {
- return {
- searchText: '',
- isShow: true,
- applicationList: [], // 推荐应用数组
- appSeatchList: [], // 应用数组
- emptyBtn: [{
- name: '联系客服咨询',
- key: 'customerService',
- type: 0
- },
- {
- name: '购买云手机试用',
- key: 'purchaseCloudPhone',
- type: 1
- }]
- };
- },
- components: { layout, layoutBack },
- created() {
- this.getSuggestApp()
- let _this = this
- document.addEventListener('keydown', function (e) {
- // 检查是否是搜索键(通常是“Enter”键)
- if (e.keyCode === 13) { // Enter key
- // 执行搜索操作
- _this.search();
- // 调用原生方法隐藏软键盘
- _this.$refs.inputField.blur();
- }
- });
- },
- watch: {
- searchText(value) {
- if (!value)
- this.isShow = true
- }
- },
- computed: {
- isShowApp() {
- // 是否是APP
- const isApp = this.$userAgent.isSzx || this.$userAgent.isSzxBrowser;
- const isAndroid = this.$userAgent.isAndroid;
- const isIos = this.$userAgent.isIos;
- const isWx = this.$userAgent.isWx;
- // 如果是App并且是安卓,就不显示头部, ios显示
- // 如果微信小程序环境的,也不显示头部
- // 如果是h5 就显示头部
- let bool = false;
- bool = isApp && (isAndroid || isIos) ? true : false;
- return bool;
- },
- },
- methods: {
- pay() {
- this.isApp = this.$userAgent.isSzx || this.$userAgent.isSzxBrowser
- if (this.isApp && this.$userAgent.isAndroid) {
- window.native.startPurchase();
- } else if (this.isApp && this.$userAgent.isIos) {
- window.webkit.messageHandlers.startPurchase.postMessage({});
- } else if (this.$userAgent.isMiniProgram) {
- this.$wx.miniProgram.navigateTo({
- url: '/package/purchase/purchase',
- });
- } else {
- uni.navigateTo({
- url: '/package/purchase/purchase',
- });
- }
- },
- goArticleDetails(item) {
- this.$router.push({ path: '/introductionCloudPhone/articleDetails?token=needToken', query: { id: item.articleId } })
- },
- getSuggestApp() {
- this.$axios.$post('/public/v1/market/getSuggestApp', {
- pageNum: 1, pageSize: -1
- }).then((res) => {
- this.applicationList = res.data
- });
- },
- selectApplication(name) {
- this.searchText = name
- this.search()
- },
- search() {
- if (!this.searchText) return
- this.appSeatchList.slice(0, this.appSeatchList.length)
- this.$axios.$post('/public/v1/market/clientSearchSuggestApp', { pageSize: 100, pageNum: 1, appName: this.searchText }).then((res) => {
- this.appSeatchList = res.data.list
- this.isShow = false
- this.appSeatchList.forEach(element => {
- element.img = fileKeyToUrl(element.imageId)
- });
- });
- },
- emptyBtnFun(type) {
- if(type) {
- this.pay()
- return
- }
- let url = `/introductionCloudPhone/onlineService?token=${this.$route.query.token}`
- if(this.$route.query.isWeixin) {
- url+= '&isWeixin=1'
- }
- this.$router.push(url)
- }
- },
- };
- </script>
- <style lang="less" scoped>
- .introduction {
- height: 100%;
- box-sizing: border-box;
- .introduction-title {
- margin-left: 10px;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 18px;
- color: #cfd1d4;
- font-style: normal;
- margin-bottom: 24px;
- }
- .introduction-tips {
- font-family: PingFangSC, PingFang SC;
- font-weight: bold;
- font-size: 14px;
- color: #fefefe;
- font-style: normal;
- }
- .introduction-search {
- margin-top: 16px;
- height: 42px;
- width: 100%;
- background: #2c2c2d;
- border-radius: 8px;
- border: 1px solid #545660;
- display: flex;
- align-items: center;
- // padding: 12px 4px 4px 12px;
- img {
- margin: 12px 4px 12px 12px;
- vertical-align: top;
- width: 16px;
- }
- input {
- // margin-top: 8px;
- // vertical-align: top;
- height: 42px;
- line-height: 42px;
- font-size: 14px;
- color: #ffffff;
- flex: 1;
- width: calc(100% - 16px - 60px);
- }
- div {
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 14px;
- color: #3b7fff;
- line-height: 18px;
- text-align: left;
- font-style: normal;
- line-height: 37px;
- width: 60px;
- height: 34px;
- // background: linear-gradient(90deg, #38aefc 0%, #3b7fff 100%);
- float: right;
- text-align: center;
- border-radius: 1px;
- // border-left: 1px solid #7e8495;
- // margin: 4px 4px 0 0;
- margin: 0 4px 2px;
- }
- }
- .application {
- padding: 0 16px;
- margin-top: 24px;
- display: grid;
- grid-gap: 16px;
- grid-template-columns: repeat(3, 1fr);
- & > div {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #ffffff;
- line-height: 20px;
- text-align: center;
- font-style: normal;
- background: #2c2c2d;
- border-radius: 14px;
- padding: 11px 0;
- box-sizing: border-box;
- }
- }
- .application-list {
- width: 100%;
- background: #2c2c2d;
- border-radius: 12px;
- color: #ffffff;
- margin-bottom: 15px;
- .application-list-top {
- padding: 16px;
- }
- .application-list-img {
- width: 42px;
- margin-right: 8px;
- border-radius: 12px;
- }
- .application-list-rigth {
- display: inline-block;
- overflow: hidden;
- width: calc(100% - 150px);
- }
- .application-list-title {
- vertical-align: top;
- font-weight: 500;
- font-size: 14px;
- color: #ffffff;
- font-style: normal;
- margin-right: 4px;
- .application-list-appname {
- max-width: calc(100% - 50px);
- display: inline-block;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- span {
- vertical-align: super;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 10px;
- color: #3b7fff;
- line-height: 14px;
- text-align: left;
- font-style: normal;
- }
- }
- .application-list-tips {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 12px;
- color: #999999;
- line-height: 16px;
- text-align: left;
- font-style: normal;
- margin-right: 4px;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .application-list-btn {
- width: 82px;
- height: 32px;
- background: linear-gradient(90deg, #38aefc 0%, #3b7fff 100%);
- border-radius: 8px;
- color: #ffffff;
- line-height: 32px;
- padding: 0 0 0 8px;
- float: right;
- font-size: 12px;
- img {
- vertical-align: middle;
- margin-top: -1px;
- }
- }
- .application-list-bottom {
- padding: 12px;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #ffffff;
- line-height: 20px;
- text-align: left;
- font-style: normal;
- background: #333333;
- border-radius: 0px 0px 12px 12px;
- }
- }
- .application-default {
- width: 100%;
- text-align: center;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 12px;
- color: #999999;
- line-height: 18px;
- font-style: normal;
- }
- }
- .introduction-white {
- .introduction-title {
- color: #0a132b;
- }
- .introduction-tips {
- color: #0a132b;
- }
- .introduction-search {
- background: #ffffff;
- // border: 1px solid #ffffff;
- input {
- color: #0a132b;
- }
- div {
- // color: #ffffff;
- }
- }
- .application {
- & > div {
- color: #0a132b;
- background: #ffffff;
- }
- }
- .application-list {
- background: #ffffff;
- .application-list-title {
- color: #0a132b;
- span {
- color: #3b7fff;
- }
- }
- .application-list-tips {
- color: #666666;
- }
- .application-list-btn {
- background: linear-gradient(90deg, #38aefc 0%, #3b7fff 100%);
- color: #ffffff;
- overflow: hidden;
- }
- .application-list-bottom {
- color: #0a132b;
- background: #edeef0;
- }
- }
- }
- .empty{
- margin-top: 16px;
- .empty-title{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 12px;
- color: #959799;
- line-height: 16px;
- text-align: left;
- font-style: normal;
- }
- .empty-img{
- height: 348px;
- margin-top: 24px;
- padding-left: 20px;
- &>img{
- width: 100%;
- height: 100%;
- }
- }
- .empty-tips{
- margin-top: 24px;
- padding-bottom: 68px;
- &>div:first-child{
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 14px;
- line-height: 20px;
- text-align: left;
- font-style: normal;
- }
- &>div:last-child{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 12px;
- color: #959799;
- line-height: 16px;
- text-align: left;
- font-style: normal;
- }
- }
- .empty-btn{
- position: fixed;
- display: grid;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 16px;
- color: #3B7FFF;
- height: 40px;
- line-height: 40px;
- text-align: center;
- font-style: normal;
- display: grid;
- grid-gap: 14px;
- grid-template-columns: repeat(2, 1fr);
- &>div:first-child{
- border-radius: 8px;
- border: 1px solid #3B7FFF;
- color: #3B7FFF;
- background: #f2f4f7;
- &.dark{
- background: #1C1C1E;
- }
- }
- &>div:last-child{
- color: #FFFFFF;
- background: #3B7FFF;
- border-radius: 8px;
- }
- }
- }
- </style>
|