123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <view class="box">
- <u-navbar :autoBack="true" bgColor="rgba(255,255,255,0)" :placeholder="true"></u-navbar>
- <!-- <view class="title">中华人民共和国文物保护法(2017年修正本)</view>
- <view class="jies">
- 中华人民共和国文物保护法是为了加强对文物的保护,继承中华民族优秀的历史文化遗产,促进科学研究工作,进行爱国主义和革命传统教育,建设社会主义精神文明和物质文明,根据宪法,制定的法规。由中华人民共和国第十届全国人民代表大会常务委员会第三十一次会议于2007年12月29日通过,自公布之日起施行。2013年6月29日第十二届全国人民代表大会常务委员会第三次会议修订通过。
- </view>
- <view class="" style="text-align: center; font-size: 32rpx; color: #444444">目 录</view>
- <view class="" style="margin-left: 40rpx">
- <view class="">第一章 总则</view>
- <view class="">第二章 不可移动文物</view>
- </view>
- <view class="jies">
- 中华人民共和国文物保护法是为了加强对文物的保护,继承中华民族优秀的历史文化遗产,促进科学研究工作,进行爱国主义和革命传统教育,建设社会主义精神文明和物质文明,根据宪法,制定的法规。由中华人民共和国第十届全国人民代表大会常务委员会第三十一次会议于2007年12月29日通过,自公布之日起施行。2013年6月29日第十二届全国人民代表大会常务委员会第三次会议修订通过。
- </view> -->
- <view class="" style="padding: 30rpx">
- <view class="title">{{ archivesInfo.title }}</view>
- <view class="u-p-30 u-bg-white u-line-height">
- <u-parse :content="archivesInfo.content" :domain="vuex_config.upload ? vuex_config.upload.cdnurl : ''"></u-parse>
- </view>
- </view>
- </view>
- </template>
- <script>
- let that;
- export default {
- data() {
- return { archivesInfo: {} };
- },
- onLoad(o) {
- that = this;
- this.legalDetails(o.id);
- },
- methods: {
- legalDetails(id) {
- uni.request({
- url: 'https://huli-app.wenlvti.net//addons/cms/api.archives/detail',
- data: {
- id: id
- },
- success: function (res) {
- that.archivesInfo = res.data.data.archivesInfo;
- // console.log(res, 99999);
- }
- });
- }
- }
- };
- </script>
- <style>
- .box {
- width: 100%;
- padding-bottom: 50rpx;
- /* background-image: url('https://huli-app.wenlvti.net/app_static/WenWuGuanJia/image/xy_bgt.png');
- background-size: 100% 100%;
- background-attachment: fixed;
- background-repeat: repeat-y; */
- min-height: 100%;
- height: auto;
- background-color: #fff9e9;
- }
- .title {
- width: 670rpx;
- font-size: 48rpx;
- margin-left: 40rpx;
- font-weight: 900;
- color: #444444;
- line-height: 64rpx;
- }
- .jies {
- width: 670rpx;
- height: 704rpx;
- font-size: 28rpx;
- margin-left: 40rpx;
- margin-top: 20rpx;
- color: #444444;
- line-height: 46rpx;
- overflow: scroll;
- }
- </style>
|