12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <template>
- <view :style="{ minHeight: sys.windowHeight + 'px' }"
- :class="[$tm.vx.state().tmVuetify.black ? 'black' : ' ']">
- <tm-menubars title="我的关注" :shadow="0" :showback="true"></tm-menubars>
- <div class="zhuti">
- <tm-sheet class="kuang" style="padding-bottom: 70px !important;">
- <view style="width: 94%;margin:0 auto;">
- <view class="mb-30 pt-20 text-white">全部关注</view>
- <tm-listitem
- class="liebiao"
- :left-icon-size="120"
- value="取消关注"
- title="默认用户1"
- label="用户暂无简介"
- left-icon="/static/img/53.png"
- show-left-icon
- :show-right-icon="false"
- ></tm-listitem>
- <tm-listitem
- class="liebiao"
- :left-icon-size="120"
- value="取消关注"
- title="默认用户1"
- label="用户暂无简介"
- left-icon="/static/img/53.png"
- show-left-icon
- :show-right-icon="false"
- ></tm-listitem>
- </view>
- </tm-sheet>
- </div>
- <!-- 弹出层消息 -->
- <tm-message ref="toast"></tm-message>
- </view>
- </template>
- <script>
- import{myRequest} from '@/api/request.js'
- export default {
- data() {
- return {
- checked1:false,
- checked2:false,
- checked3:false,
- beizu:''
- };
- },
- onLoad() {
-
- },
- created() {
- this.sys = uni.getSystemInfoSync();
- },
- methods: {
- aa(num){
- if(num==1){
- this.checked1=true;
- this.checked2=false;
- this.checked3=false;
- }else if(num==2){
- this.checked1=false;
- this.checked2=true;
- this.checked3=false;
- }else if(num==3){
- this.checked1=false;
- this.checked2=false;
- this.checked3=true;
- }
- },
- },
- }
- </script>
- <style lang="scss">
- /deep/ .tm-menubars .body{
- background-color: #1b1b1b !important;
- }
- /deep/ .zhuti{padding: 10px 10px;}
- /deep/ .kuang{margin:0 !important;padding: 0px !important;}
- /deep/ .liebiao .tm-content{margin-left:15px !important;}
- /deep/ .liebiao .mx-32{margin:0px !important;border-bottom: 1px solid #303030;}
- /deep/ .liebiao .pt-4{padding-top: 12px;}
- /deep/ .liebiao .d-inline-block{background: #303440;
- padding: 4px 14px 4px 14px;
- border-radius: 30px;}
- </style>
|