1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <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: 98%;margin:0 auto;">
- <tm-tabs align="left" class="qiehuan1" v-model="activeIndex" :list="list" range-key="title"></tm-tabs>
- <image class="touxiang" src="/static/img/60.png" mode="widthFix"></image>
- </view>
- </tm-sheet>
- <tm-button :round="24" class="sao mb-40 mt-40" block>提交</tm-button>
- </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:'',
- list:[ '商品介绍','搭配方案'],
- activeIndex:0,
- };
- },
- 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/ .qiehuan1 .text-primary{color: white !important;}
- .touxiang{width: 100%;margin:0 auto;display: block;margin-top: 20px;}
- </style>
|