getResourcePath.uvue 764 字节
Newer Older
杜庆泉's avatar
杜庆泉 已提交
1 2 3 4 5 6 7
<template>
	<view>
		<page-head title="资源路径获取示例" accordion></page-head>
		<button @tap="getResourcePath">获取本地资源路径</button>
	</view>
</template>
<script>
Y
yurj26 已提交
8 9
// import { getResourcePath } from '@/uni_modules/uts-advance'
// import { removeExampleImageView } from '@/uni_modules/uts-advance'
杜庆泉's avatar
杜庆泉 已提交
10 11 12
	
	export default {
		onUnload() {
Y
yurj26 已提交
13
			// removeExampleImageView()
杜庆泉's avatar
杜庆泉 已提交
14 15 16
		},
		methods:{
			getResourcePath(){
Y
yurj26 已提交
17
				// getResourcePath("/static/logo.png")
杜庆泉's avatar
杜庆泉 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
			}
		}
	}
</script>

<style>
	.text-box {
		margin-bottom: 40rpx;
		padding: 40rpx 0;
		display: flex;
		min-height: 300rpx;
		background-color: #FFFFFF;
		justify-content: center;
		align-items: center;
		text-align: center;
		font-size: 30rpx;
		color: #353535;
		line-height: 1.8;
	}
</style>