Newer
Older
KaiFengH5 / src / views / home / helpInfo.vue
@zhangdeliang zhangdeliang on 24 May 532 bytes 项目初始化
  1. <template>
  2. <!-- 帮助 -->
  3. <div class="helpPage">帮助</div>
  4. </template>
  5. <script setup name="helpPage">
  6. import { useStore } from '@/pinia/store.js';
  7.  
  8. const pinias = useStore();
  9. const helpList = ref([]);
  10.  
  11. // 预览文件
  12. const previewFile = (row) => {
  13. if (!!!row.code) {
  14. showToast('请检查是否配置预览文件链接地址');
  15. return;
  16. }
  17. window.android.previewFile(row.code);
  18. };
  19.  
  20. onMounted(() => {
  21. getDicData();
  22. });
  23. </script>
  24. <style lang="less" scoped>
  25. .helpPage {
  26. width: 100%;
  27. margin-top: 5%;
  28. }
  29. </style>