• 自定义cell控件


    自定义cell控件

    <template>
    	
    	<view class="content">
    		<view class="cell-item" :style="border ? 'border-bottom:2rpx solid #DBE2EC' : ''">
    			<view class="cell-item-main">
    				<slot name="icon">slot>
    				<view class="cell-item-icon" v-if="icon != ''">
    					<image :src="icon" class="cell-item-icon-content" mode="scaleToFill">image>
    				view>
    				<view class="cell-item-content">
    					<p class="cell-item-title">{{title}}p>
    					<view class="cell-item-desc" v-if="label != '' || status != ''">
    						<view class="cell-item-label">
    							{{label}}
    						view>
    						<template v-if="status != ''">
    							<view class="cell-item-line mr15 ml15">view>
    							<view class="cell-item-status">
    								{{status}}
    							view>
    						template>
    					view>
    				view>
    			view>
    			<view class="cell-item-arrow">
    				<image src="@/static/common/ic-common-arrow-right.png" class="cell-item-arrow-content" mode="scaleToFill">image>
    			view>
    		view>
    	view>
    template>
    
    <script>
    	export default {
    		props:{
    			icon:{
    				type:String,
    				default:''
    			},
    			title:{
    				type:String,
    				default:'title'
    			},
    			label:{
    				type:String,
    				default:'label'
    			},
    			status:{
    				type:String,
    				default:'status'
    			},
    			border:{
    				type:Boolean,
    				default:false
    			}
    		},
    		data() {
    			return {
    				
    			}
    		},
    		methods:{
    			gotoLoadMore(){
    				console.log('跳转加载更多',this.loadMore)
    			}
    		}
    	}
    script>
    
    <style scoped lang="scss">
    	.content{
    		padding: 0 20rpx;
    		.cell-item{
    			display: flex;
    			align-items: center;
    			padding: 20rpx 0;
    			.cell-item-main{
    				flex: 1;
    				min-height: 100rpx;
    				display: flex;
    				align-items: center;
    				.cell-item-icon{
    					width: 180rpx;
    					height: 180rpx;
    					.cell-item-icon-content{
    						width: 100%;
    						height: 100%;
    					}
    				}
    				.cell-item-content{
    					flex: 1;
    					.cell-item-title{
    						padding: 15rpx 0;
    						font-size: 33rpx;
    						font-weight: 600;
    						height: 50rpx;
    					}
    					.cell-item-desc{
    						display: flex;
    						align-items: center;
    						color: #777777;
    						height: 40rpx;
    						.cell-item-label{
    						}
    						.cell-item-line{
    							width: 5rpx;
    							height: 30rpx;
    							background: #DBE2EC;
    						}
    						.cell-item-status{
    						}
    					}
    				}
    			}
    			.cell-item-arrow{
    				width: 40rpx;
    				height: 40rpx;
    				.cell-item-arrow-content{
    					width: 100%;
    					height: 100%;
    				}
    			}
    		}
    		.cell-item-bottom-border{
    			border-top: 2rpx solid #DBE2EC;
    		}
    	}
    	
    style>
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
  • 相关阅读:
    手机和模拟器的 Frida 环境配置
    PEO-PPO-SS-DTX聚合物胶束|PEG-PEI-PCL-SS-PLL|聚己内酯-紫杉醇高分子前药PTX-PCL(科研试剂)
    超简单免费转换ape到flac
    【JAVA】值传递与引用传递
    数据库的基本操作(2)
    【浅谈设计模式】装饰器模式篇
    电力输送、材料和互连领域即将发生巨大变化
    Python-Django-Apache2.4-mod_wsgi-mysql-服务器生产环境配置
    PowerMax——业界首个引入NVIDIA BlueField DPU的高端存储
    为中小企业的网络推广策略解析:扩大品牌知名度和曝光度
  • 原文地址:https://blog.csdn.net/lzl980111/article/details/127843319