1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <template>
- <view class="more-set-box">
- <en-nav title="相关许可证" :title-color="'#333'" ></en-nav>
- <view class="set-list">
- <view class="set-item" @click="goToUrl('1')">
- <view class="item-text sys-height-44 sys-color-black">营业执照</view>
- <view class="item-icon">
- <text class="iconfont sys-height-44 sys-color-gray-9"> </text>
- </view>
- </view>
- <view class="set-item" @click="goToUrl('2')">
- <view class="item-text sys-height-44 sys-color-black">增值电信业务许可证</view>
- <view class="item-icon">
- <text class="iconfont sys-height-44 sys-color-gray-9"> </text>
- </view>
- </view>
- <view class="set-item" @click="goToUrl('3')">
- <view class="item-text sys-height-44 sys-color-black">网络文化经验许可证</view>
- <view class="item-icon">
- <text class="iconfont sys-height-44 sys-color-gray-9"> </text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import EnNav from "@/components/en-utils/en-nav/en-nav";
- export default {
- components: {EnNav},
- data() {
- return {
- }
- },
- methods: {
- goToUrl(type){
- uni.navigateTo({
- 'url':'./permission?type='+type
- })
- },
- }
- }
- </script>
- <style scoped lang="scss">
- .more-set-box{
- background-color: #F9F9F9;
- min-height: 100vh;
- padding-bottom: 50rpx;
- .set-list{
- margin: 20rpx 32rpx 0 32rpx;
- background-color: #fff;
- border-radius: 20rpx;
- padding: 0 32rpx;
- .set-item{
- padding: 32rpx 0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1rpx solid #F2F2F2;
- .item-data{
- .describe-title{
- font-size: 30rpx;
- }
- .describe-text{
- margin-top: 4rpx;
- font-size: 24rpx;
- }
- }
- .item-text{
- font-size: 28rpx;
- }
- .item-icon{
- .iconfont{
- font-size: 28rpx;
- }
- }
- }
- .set-item:last-child{
- border-bottom: none;
- }
- }
- }
- </style>
|