1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <template>
- <view class="agreement-rules">
- <view class="list">
- <view class='item acea-row row-between-wrapper' v-for="(item,index) in listDta" @click="goMultiple(item.key)">
- <view>{{item.label}}</view>
- <text class='iconfont icon-you'></text>
- </view>
- </view>
- </view>
- </template>
- <script>
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- import {cacheLst} from '@/api/user.js';
- export default{
- name:'agreement-rules',
- data(){
- return{
- listDta:''
- }
- },
- onLoad: function() {
- this.getInfo()
- },
- methods:{
- getInfo(){
- cacheLst().then(res=>{
- this.listDta = res.data
- })
- },
- goMultiple(e){
- uni.navigateTo({
- url: '/pages/users/user_about/index?from='+e
- })
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .agreement-rules {
- .list {
- background-color: #fff;
- .item {
- padding: 30rpx 30rpx 30rpx 0;
- border-bottom: 1px solid #f2f2f2;
- margin-left: 30rpx;
- font-size: 32rpx;
- color: #242424;
- .iconfont {
- font-size: 30rpx;
- color: #8A8A8A;
- }
- }
- }
- }
- </style>
|