Newer
Older
KaiFengH5 / src / views / home / helpInfo.vue
@zhangdeliang zhangdeliang on 24 May 532 bytes 项目初始化
<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>