47 lines
		
	
	
		
			974 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			974 B
		
	
	
	
		
			Python
		
	
	
	
| <template>
 | |
| 	<view class="u-demo">
 | |
| 		<view class="u-demo-wrap">
 | |
| 			<view class="u-demo-title">演示效果</view>
 | |
| 			<view class="u-demo-area">
 | |
| 				<view class="u-demo-result-line">
 | |
| 					{{result}}
 | |
| 				</view>
 | |
| 			</view>
 | |
| 		</view>
 | |
| 		<view class="u-config-wrap">
 | |
| 			<view class="u-config-title u-border-bottom">
 | |
| 				参数配置
 | |
| 			</view>
 | |
| 			<view class="u-config-item">
 | |
| 				<view class="u-item-title">源字符串</view>
 | |
| 				<u-subsection :list="['Take me', 'to', 'your heart']" @change="getResult"></u-subsection>
 | |
| 			</view>
 | |
| 		</view>
 | |
| 	</view>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| 	import md5Libs from "uview-ui/libs/function/md5";
 | |
| 	export default {
 | |
| 		data() {
 | |
| 			return {
 | |
| 				result: null,
 | |
| 				string: 'Take me'
 | |
| 			}
 | |
| 		},
 | |
| 		onLoad() {
 | |
| 			this.getResult();
 | |
| 		},
 | |
| 		methods: {
 | |
| 			getResult(index) {
 | |
| 				this.string = index == 0 ? 'Take me' : index == 1 ? 'to' : 'you heart';
 | |
| 				this.result = md5Libs.md5(this.string);
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| </script>
 | |
| 
 | |
| <style lang="scss" scoped>
 | |
| 	.u-demo {}
 | |
| </style>
 |