feat: 首次提交

This commit is contained in:
peerless_hero
2023-08-17 21:28:49 +08:00
parent 36f80fb971
commit ec1e5e16cd
571 changed files with 95322 additions and 0 deletions

View File

@ -0,0 +1,45 @@
<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号18 61 407 2 5 49身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-wrap">
<view class="fui-page__hd">
<view class="fui-page__title fui-align__center" @tap="vip">IndexList <image
src="/static/images/index/light/icon_member_3x.png"></image>
</view>
<view class="fui-page__desc">IndexList 索引列表用于通讯录城市选择的索引选择器</view>
</view>
<view class="fui-page__bd">
<fui-button type="gray" btn-size="medium" text="基础使用" bold :margin="['24rpx']" @click="href(1)">
</fui-button>
<fui-button type="gray" btn-size="medium" text="带选择操作" bold @click="href(2)">
</fui-button>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
vip() {
this.fui.href("/pages/my/qa/qa?index=2&title=VIP专属内容")
},
href(type) {
let url = type == 1 ? '../indexList-A/indexList-A' : '../indexList-B/indexList-B'
this.fui.href(url)
}
}
}
</script>
<style>
.fui-page__bd {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
</style>