<template> <!-- 帮助 --> <div class="helpPage">帮助</div> </template> <script setup name="helpPage"> import { useStore } from '@/pinia/store.js'; const pinias = useStore(); const helpList = ref([]); // 预览文件 const previewFile = (row) => { if (!!!row.code) { showToast('请检查是否配置预览文件链接地址'); return; } window.android.previewFile(row.code); }; onMounted(() => { getDicData(); }); </script> <style lang="less" scoped> .helpPage { width: 100%; margin-top: 5%; } </style>