wangxy před 3 měsíci
rodič
revize
be49395ab8
2 změnil soubory, kde provedl 41 přidání a 0 odebrání
  1. 18 0
      pages/admin/ShouYe/shouye.vue
  2. 23 0
      pages/client/ShouYe/shouye.vue

+ 18 - 0
pages/admin/ShouYe/shouye.vue

@@ -0,0 +1,18 @@
+<template>
+	<view>
+		总部管理员/跑单员首页 {{counter.count}}
+		<view v-if="data">{{data}}</view>
+		<view v-else>未设置缓存</view>
+	</view>
+</template>
+
+<script setup>
+	import { useCounterStore } from "@/store/counter.js"
+	
+	// 总部管理员/跑单员首页
+	import { getAuth } from '@/utils/auth';
+	const data = getAuth();
+	
+	const counter = useCounterStore();
+</script>
+

+ 23 - 0
pages/client/ShouYe/shouye.vue

@@ -0,0 +1,23 @@
+<template>
+	<view>
+		家政/考试人员首页
+	</view>
+</template>
+
+<script>
+	// 	家政/考试人员首页
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		methods: {
+			
+		}
+	}
+</script>
+
+<style>
+
+</style>