瀏覽代碼

演示用

asd26269546 2 年之前
父節點
當前提交
f5a5cd06f5
共有 4 個文件被更改,包括 31 次插入0 次删除
  1. 二進制
      src.zip
  2. 7 0
      src/views/home/index.vue
  3. 7 0
      src/views/message/index.vue
  4. 17 0
      src/views/process/index.vue

二進制
src.zip


+ 7 - 0
src/views/home/index.vue

@@ -0,0 +1,7 @@
+<template>
+    <div class="home">
+        <van-nav-bar title="ByteSailing">
+            <template #right> <van-icon name="more-o" /> </template>
+        </van-nav-bar>
+    </div>
+</template>

+ 7 - 0
src/views/message/index.vue

@@ -0,0 +1,7 @@
+<template>
+    <div class="home">
+        <van-nav-bar title="ByteSailing">
+            <template #right> <van-icon name="more-o" /> </template>
+        </van-nav-bar>
+    </div>
+</template>

+ 17 - 0
src/views/process/index.vue

@@ -0,0 +1,17 @@
+<template>
+    <div class="process">
+        <van-nav-bar
+            title="采购单"
+            left-text=""
+            left-arrow
+            @click-left="onClickLeft"
+        >
+
+        </van-nav-bar>
+    </div>
+</template>
+<script setup>
+import { ref, getCurrentInstance, onMounted } from 'vue'
+const proxy = getCurrentInstance().proxy
+const onClickLeft = () => proxy.$router.push('/main/working')
+</script>