Files
medical-mall/pages/mall/consumer/category.uvue
2026-05-14 15:28:09 +08:00

17 lines
327 B
Plaintext

<template>
<view />
</template>
<script>
export default {
onLoad(options) {
const qs = options ? Object.keys(options).map(k => `${k}=${encodeURIComponent(options[k])}`).join('&') : '';
const url = '/pages/main/category' + (qs ? `?${qs}` : '');
uni.navigateTo({ url });
}
}
</script>
<style scoped>
</style>