|
@@ -0,0 +1,35 @@
|
|
|
+<template>
|
|
|
+ <ion-page class="edit-page">
|
|
|
+ <ion-header class="header-theme2">
|
|
|
+ <ion-toolbar>
|
|
|
+ <ion-buttons slot="start">
|
|
|
+ <ion-icon :icon="arrowBackOutline" @click="()=>router.go(-1)"></ion-icon>
|
|
|
+ </ion-buttons>
|
|
|
+ <ion-title>关于我们</ion-title>
|
|
|
+ </ion-toolbar>
|
|
|
+ </ion-header>
|
|
|
+ <ion-content>
|
|
|
+ <div class="bw-vue-form">
|
|
|
+ <div class="form-title">关于我们</div>
|
|
|
+ <div class="form-detail">
|
|
|
+ <ion-label>当前版本</ion-label>
|
|
|
+ <ion-text>V1.1</ion-text>
|
|
|
+ </div>
|
|
|
+ <div class="form-detail">
|
|
|
+ <ion-label>技术支持</ion-label>
|
|
|
+ <ion-text>同略科技</ion-text>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </ion-content>
|
|
|
+ </ion-page>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup lang="ts">
|
|
|
+
|
|
|
+import {arrowBackOutline} from "ionicons/icons";
|
|
|
+import router from "@/router";
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+
|
|
|
+</style>
|