曹睿
2025-04-25 ec1bef3a37e8dcdf22f1bf52e7c272a18306f4b9
src/pages/production/list/index.vue
@@ -18,6 +18,7 @@
        @click="toDetail(item.id, item.type)"
      />
    </z-paging>
    <wd-toast />
  </view>
</template>
@@ -26,6 +27,9 @@
import ProductCard from "@/components/product_card/index.vue";
import { useUserStore } from "@/store/modules/user";
import zPaging from "@/components/z-paging/z-paging.vue";
import { useToast } from "wot-design-uni";
const toast = useToast();
const userStore = useUserStore();
const userInfo: any = computed(() => userStore.userInfo);
const pagingRef = ref();
@@ -51,6 +55,7 @@
const list = ref<any[]>([]);
const toDetail = (id: number, type: string) => {
  toast.show("点击卡片");
  if (type == "拉丝") {
    uni.navigateTo({
      url: `/pages/production/detail/wireDetail?id=${id}`,
@@ -95,6 +100,6 @@
<style lang="scss" scoped>
.card_box {
  height: calc(100vh - 140px);
  height: calc(100vh - 120px);
}
</style>