| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494 | <template>    <view class="uni-container">        <template v-if="showSetTabBarPage">            <set-tab-bar @unmount="leaveSetTabBarPage"></set-tab-bar>        </template>        <template v-else>            <view v-if="!hasLeftWin" class="uni-header-logo">                <image class="uni-header-image" src="/static/apiIndex.png"></image>            </view>            <view v-if="!hasLeftWin" class="uni-hello-text">                <text class="hello-text">以下将演示uni-app接口能力,详细文档见:</text>                <u-link class="hello-link" :href="'https://uniapp.dcloud.io/api/'" :text="'https://uniapp.dcloud.io/api/'"                    :inWhiteList="true"></u-link>            </view>            <view class="uni-panel" v-for="(item, index) in list" :key="item.id">                <view class="uni-panel-h" :class="item.open ? 'uni-panel-h-on' : ''" @click="triggerCollapse(index, item.id)">                    <text class="uni-panel-text">{{item.name}}</text>                    <text class="uni-panel-icon uni-icon" :class="item.open ? 'uni-panel-icon-on' : ''">{{item.pages ? '' : ''}}</text>                </view>                <view class="uni-panel-c" v-if="item.open">                    <view :class="{'left-win-active': leftWinActive === item2.url && hasLeftWin, 'pc-hide': item2.name === '设置TabBar' && hasLeftWin}" class="uni-navigate-item" v-for="(item2,key) in item.pages" :key="key" :url="item.url" @click="goDetailPage(item.id, item2.url)">                        <text class="uni-navigate-text">{{item2.name ? item2.name : item2}}</text>                        <text class="uni-navigate-icon uni-icon"></text>                    </view>                </view>            </view>        </template>    </view></template><script>    import setTabBar from '@/components/api-set-tabbar.nvue';    export default {        components: {            setTabBar        },		props: {			hasLeftWin: {				type: Boolean			},			leftWinActive: {				type: String			}		},        data() {            // 暂时这么写,后面看怎么优化。            let mediaPages = [{                    name: '图片',                    url: 'image'                },				// #ifndef MP-LARK				{				    name: '音频',				    url: 'inner-audio'				},                // #endif                // #ifdef APP-PLUS || MP-WEIXIN || MP-BAIDU || MP-QQ|| MP-JD                 {                    name: '录音',                    url: 'voice'                },                {                    name: '背景音频',                    url: 'background-audio'                },                // #endif                // #ifndef MP-ALIPAY                {                    name: '视频',                    url: 'video'                },                // #endif                // #ifndef H5                {                    name: '文件',                    url: 'file'                },                // #endif                // #ifndef H5 || MP-ALIPAY                {                    name: '保存媒体到本地',                    url: 'save-media'                }                // #endif            ];            const list = [{                    id: 'page',                    name: '界面',                    open: false,                    pages: [{                            name: '设置导航条',                            url: 'set-navigation-bar-title'                        },                        //#ifdef APP-PLUS                        {                            name: '原生子窗体',                            url: 'subnvue'                        },                        //#endif                        {                            name: '页面跳转',                            url: 'navigator'                        },                        //#ifndef MP-TOUTIAO                        {                            name: '设置TabBar',                            url: 'set-tabbar'                        },                        //#endif                        {                            name: '下拉刷新',                            url: 'pull-down-refresh'                        },                        {                            name: '创建动画',                            url: 'animation'                        },						// #ifndef QUICKAPP-WEBVIEW-UNION                        {                            name: '创建绘画',                            url: 'canvas'                        },						// #endif						// #ifndef MP-LARK                        {                            name: '节点信息',                            url: 'get-node-info'                        },						// #endif                        {                            name: '节点布局交互状态',                            url: 'intersection-observer'                        },                        {                            name: '显示操作菜单',                            url: 'action-sheet'                        },                        {                            name: '显示模态弹窗',                            url: 'modal'                        },                        {                            name: '显示加载提示框',                            url: 'show-loading'                        },                        {                            name: '显示消息提示框',                            url: 'toast'                        }                    ]                },                {                    id: 'device',                    name: '设备',                    open: false,                    pages: [{                            name: '获取设备网络状态',                            url: 'get-network-type'                        },                        {                            name: '获取设备系统信息',                            url: 'get-system-info'                        },                        {                            name: '打电话',                            url: 'make-phone-call'                        },                        //#ifndef H5                        {                            name: '震动',                            url: 'vibrate'                        },                        {                            name: '添加手机联系人',                            url: 'add-phone-contact'                        },                        {                            name: '扫码',                            url: 'scan-code'                        },								//#endif								//#ifndef H5 || MP-JD                         {                            name: '剪贴板',                            url: 'clipboard'                        },                        //#endif                        // #ifndef H5 || MP-ALIPAY                        {                            name: '屏幕亮度',                            url: 'brightness'                        },                        // #endif                        // #ifdef APP-PLUS || MP-WEIXIN || MP-QQ || MP-JD                         {                            name: '蓝牙',                            url: 'bluetooth'                        },								// #endif								// #ifdef APP-PLUS || MP-WEIXIN || MP-QQ                        {                            name: '生物认证',                            url: 'soter'                        },                        // #endif                        // #ifdef APP-PLUS || MP-WEIXIN                        {                            name: 'iBeacon',                            url: 'ibeacon'                        },                        // #endif								// #ifndef H5								{								    name: '监听加速度传感器',								    url: 'on-accelerometer-change'								},								// #endif								// #ifndef H5 || MP-JD 								{								    name: '监听罗盘数据',								    url: 'on-compass-change'								},								// #endif                        //#ifdef APP-PLUS                        {                            name: '监听距离传感器',                            url: '/platforms/app-plus/proximity/proximity'                        },                        {                            name: '监听方向传感器',                            url: '/platforms/app-plus/orientation/orientation'                        }                        //#endif                    ]                },                {                    id: 'network',                    name: '网络',                    open: false,                    pages: [{                            name: '发起一个请求',                            url: 'request'                        },                        {                            name: '上传文件',                            url: 'upload-file'                        },                        {                            name: '下载文件',                            url: 'download-file'                        }                    ]                },                {                    id: 'websocket',                    name: 'websocket',                    open: false,                    pages: [                        // #ifndef MP-ALIPAY                        {                            name: 'socketTask',                            url: 'websocket-socketTask'                        },                        // #endif                        {                            name: '全局websocket',                            url: 'websocket-global'                        }                    ]                },                {                    id: 'media',                    name: '媒体',                    open: false,                    pages: mediaPages                },				// #ifndef MP-KUAISHOU                {                    id: 'location',                    name: '位置',                    open: false,                    pages: [{                            name: '获取当前位置',                            url: 'get-location'                        },                        {                            name: '使用地图查看位置',                            url: 'open-location'                        },                        // #ifndef MP-TOUTIAO                        {                            name: '使用地图选择位置',                            url: 'choose-location'                        }                        // #endif                        // #ifndef MP-QQ || MP-TOUTIAO || MP-LARK                        ,                        {                            name: '地图控制',                            url: 'map'                        }                        // #endif                        // #ifdef APP-PLUS                        ,                        {                            name: '地图搜索',                            url: 'map-search'                        }                        // #endif                    ]                },				// #endif                {                    id: 'storage',                    name: '数据',                    open: false,                    pages: [{                            name: '数据存储(key-value)',                            url: 'storage'                        },                        // #ifdef APP-PLUS                        {                            name: 'SQLite',                            url: 'sqlite'                        }                        // #endif                    ]                },                // #ifdef APP-PLUS || MP-WEIXIN                {                    url: 'rewarded-video-ad',                    name: '激励视频广告',                    open: false                },				// #endif				// #ifdef APP-PLUS                {                    url: 'full-screen-video-ad',                    name: '全屏视频广告',                    open: false                },                // #endif                // #ifndef H5 || QUICKAPP-WEBVIEW || MP-KUAISHOU || MP-LARK                {                    id: 'login',                    name: '登录',                    open: false,                    pages: [{                            name: '登录',                            url: 'login'                        },                        {                            name: '获取用户信息',                            url: 'get-user-info'                        }                    ]                },				// #endif				// #ifndef H5 || QUICKAPP-WEBVIEW-UNION                {                    id: 'share',                    name: '分享',                    open: false,                    pages: [{                        name: '分享',                        url: 'share'                    }]                },                // #endif                // #ifdef APP-PLUS || MP-WEIXIN                {                    id: 'payment',                    name: '支付',                    open: false,                    pages: [{                        name: '发起支付',                        url: 'request-payment'                    }]                },                // #endif                // #ifdef APP-PLUS                {                    id: 'speech',                    name: '语音',                    open: false,                    pages: [{                        name: '语音识别',                        url: '/platforms/app-plus/speech/speech'                    }]                },                {                    id: 'push',                    name: '推送',                    open: false,                    pages: [{                        name: '推送',                        url: '/platforms/app-plus/push/push'                    }]                }                //#endif            ];            return {                showSetTabBarPage: false,                list: list,				notForPc: [{						name: '设置TabBar',						url: 'set-tabbar'				}]            };        },        onShareAppMessage() {            return {                title: '欢迎体验uni-app',                path: '/pages/tabBar/API/API'            };        },        onNavigationBarButtonTap(e) {            uni.navigateTo({                url: '/pages/about/about'            });        },        onLoad() {        },        onReady() {        },        onShow() {            this.navigateFlag = false;            this.leaveSetTabBarPage();        },        onHide() {            this.leaveSetTabBarPage();        },		// #ifdef H5		watch:{			$route: {				immediate: true,				handler(newRoute) {					if (newRoute.matched.length) {						let path = newRoute.path.split('/')[3]						for (const item of this.list) {							if (Array.isArray(item.pages)) {								for (const page of item.pages) {									if (page === path || page.url && page.url === path) {										item.open = true									}								}							}						}					}				}			}		},		// #endif        methods: {            triggerCollapse(e, id) {                if (!this.list[e].pages) {                    this.goDetailPage('', this.list[e].url);                    return;                }				for (var i = 0; i < this.list.length; ++i) {					if (e === i) {						this.list[i].open = !this.list[i].open;					} else {						this.list[i].open = false;					}				}            },            goDetailPage(panel, e) {				if (e === 'set-tabbar') {					this.showSetTabBarPage = true;					return;				}				let url = ~e.indexOf('platform') ? e : '/pages/API/' + e + '/' + e;				if (this.hasLeftWin) {					uni.reLaunch({						url: url					})				} else {					uni.navigateTo({						url: url					})				}            },            leaveSetTabBarPage() {                this.showSetTabBarPage = false;            }        }    };</script><style>    @import '../../../common/uni-nvue.css';</style>
 |