You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

33 lines
1.4 KiB

<template>
<view>
<!-- 图文卡片模式 -->
<uni-card
title="上海市生活垃圾分类制度"
mode="style"
:is-shadow="true"
thumbnail="/static/800px-Small_sorted_waste_containers_in_Shanghai.jpg"
@click="isOpen=true"
>
上海市生活垃圾分类制度规范中华人民共和国上海市内投放生活垃圾的行为要求上海市市民和各单位团体按照一套具体的分类标准对垃圾进行分类投放并进行分类转运处置以达到废弃物末端减量的目的该制度发端于1990年于2000年正式提出以2011年百万家庭低碳行垃圾分类要先行政府实事工程的实施为标志通过借助社会力量创办的绿色账户激励机制上海市的政府部门开始大规模推广生活垃圾分类投放
</uni-card>
<web-view :webview-styles="webviewStyles" src="https://baike.baidu.com/item/%E7%94%9F%E6%B4%BB%E5%9E%83%E5%9C%BE%E5%88%86%E7%B1%BB%E5%88%B6%E5%BA%A6%E5%AE%9E%E6%96%BD%E6%96%B9%E6%A1%88/20592065" v-if="isOpen"/>
</view>
</template>
<script>
import {uniCard} from '@dcloudio/uni-ui'
export default {
name: "policy",
components: {uniCard},
data(){
return {
isOpen:false
}
}
}
</script>
<style scoped>
</style>