hookehuyr

选择幼儿园页面新增快捷方式组件

......@@ -2,7 +2,7 @@
* @Author: hookehuyr hookehuyr@gmail.com
* @Date: 2022-04-21 11:21:39
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-06-14 17:43:46
* @LastEditTime: 2024-11-13 16:05:44
* @FilePath: /tswj/src/views/client/chooseSchool.vue
* @Description: 选择学校列表
-->
......@@ -14,6 +14,7 @@
<ranking-item :item="item" :index-key="key" />
</template>
</div>
<shortcut-fixed :type="USER_ROLE.CLIENT" :item="[]" :custom-style="customStyle" />
</div>
</template>
......@@ -24,6 +25,7 @@ import { killPages } from '@/hooks/useKeepAlive'
import { onMounted } from 'vue';
import { sharePage } from '@/composables/useShare.js'
import { useRoute } from 'vue-router'
import { USER_ROLE } from '@/constant'
// const go = useGo()
// 删除所有的 keep-alive 缓存
......@@ -34,6 +36,10 @@ onMounted(() => {
// TAG:微信分享
sharePage({});
})
const customStyle = {
bottom: '5rem'
}
</script>
<script>
......