<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                ??一站式輕松地調用各大LLM模型接口,支持GPT4、智譜、豆包、星火、月之暗面及文生圖、文生視頻 廣告
                ### 用戶中心4 ``` <template> <view> <view class="header" v-bind:class="{'status':isH5Plus}"> <view class="userinfo"> <view class="face"> <image :src="userinfo.face"></image> </view> <view class="info"> <view class="username">{{userinfo.username}}</view> <view class="integral">積分:{{userinfo.integral}}</view> </view> </view> <view class="setting"> <image src="../../static/image/user3/setting.png"></image> </view> </view> <view class="orders"> <view class="box"> <view class="label" v-for="(row,index) in orderTypeLise" :key="row.name" hover-class="hover" @tap="toOrderType(index)"> <view class="icon"> <view class="badge" v-if="row.badge>0">{{row.badge}}</view> <image :src="'../../static/image/user3/'+row.icon"></image> </view> {{row.name}} </view> </view> </view> <view class="list" v-for="(list,list_i) in severList" :key="list_i"> <view class="li" v-for="(li,li_i) in list" @tap="toPage(list_i,li_i)" v-bind:class="{'noborder':li_i==list.length-1}" hover-class="hover" :key="li.name"> <view class="icon"> <image :src="'../../static/image/user3/'+li.icon"></image> </view> <view class="text">{{li.name}}</view> <image class="to" src="../../static/image/user3/to.png"></image> </view> </view> </view> </template> <script> export default { data() { return { //#ifdef APP-PLUS isH5Plus: true, //#endif //#ifndef APP-PLUS isH5Plus: false, //#endif userinfo: {}, orderTypeLise: [ //name-標題 icon-圖標 badge-角標 { name: '待付款', icon: 'l1.png', badge: 1 }, { name: '待發貨', icon: 'l2.png', badge: 2 }, { name: '待收貨', icon: 'l3.png', badge: 6 }, { name: '待評價', icon: 'l4.png', badge: 9 }, { name: '退換貨', icon: 'l5.png', badge: 0 } ], severList: [ [{ name: '我的收藏', icon: 'point.png' }, { name: '優惠券', icon: 'quan.png' }, { name: '紅包', icon: 'momey.png' }, { name: '任務', icon: 'renw.png' }, ], [{ name: '積分明細', icon: 'mingxi.png' }, { name: '抽獎', icon: 'choujiang.png' }, { name: '收貨地址', icon: 'addr.png' }, { name: '銀行卡', icon: 'bank.png' }, { name: '安全中心', icon: 'security.png' }, { name: '在線客服', icon: 'kefu.png' } ] ], }; }, onLoad() { //加載 this.init(); }, methods: { init() { //用戶信息 this.userinfo = { face: '../../static/image/user3/face.jpeg', username: "VIP會員10240", integral: "1435" } }, //用戶點擊訂單類型 toOrderType(index) { uni.showToast({ title: this.orderTypeLise[index].name }); }, //用戶點擊列表項 toPage(list_i, li_i) { uni.showToast({ title: this.severList[list_i][li_i].name }); } } } </script> <style lang="scss"> page { background-color: #fff } .header { &.status { padding-top: var(--status-bar-height); } background-color:#ff6364; width:92%; height:30vw; padding:0 4%; display:flex; align-items:center; .userinfo { width: 90%; display: flex; .face { flex-shrink: 0; width: 15vw; height: 15vw; image { width: 100%; height: 100%; border-radius: 100% } } .info { display: flex; flex-flow: wrap; padding-left: 30upx; .username { width: 100%; color: #fff; font-size: 40upx } .integral { display: flex; align-items: center; padding: 0 20upx; height: 40upx; color: #fff; background-color: rgba(0, 0, 0, 0.1); border-radius: 20upx; font-size: 24upx } } } .setting { flex-shrink: 0; width: 6vw; height: 6vw; image { width: 100%; height: 100% } } } .hover { background-color: #eee } .orders { background-color: #ff6364; width: 92%; height: 11vw; padding: 0 4%; margin-bottom: calc(11vw + 40upx); display: flex; align-items: flex-start; border-radius: 0 0 100% 100%; margin-top: -1upx; .box { width: 98%; padding: 0 1%; height: 22vw; background-color: #fefefe; border-radius: 24upx; box-shadow: 0 0 20upx rgba(0, 0, 0, 0.15); margin-bottom: 40upx; display: flex; align-items: center; justify-content: center; .label { display: flex; align-items: center; justify-content: center; flex-flow: wrap; width: 100%; height: 16vw; color: #666666; font-size: 26upx; .icon { position: relative; width: 7vw; height: 7vw; margin: 0 1vw; .badge { position: absolute; width: 4vw; height: 4vw; background-color: #ec6d2c; top: -1vw; right: -1vw; border-radius: 100%; font-size: 20upx; color: #fff; display: flex; align-items: center; justify-content: center; z-index: 10; } image { width: 7vw; height: 7vw; z-index: 9; } } } } } .list { width: 100%; border-bottom: solid 26upx #f1f1f1; .li { width: 92%; height: 100upx; padding: 0 4%; border-bottom: solid 1upx #e7e7e7; display: flex; align-items: center; &.noborder { border-bottom: 0 } .icon { flex-shrink: 0; width: 50upx; height: 50upx; image { width: 50upx; height: 50upx } } .text { padding-left: 20upx; width: 100%; color: #666 } .to { flex-shrink: 0; width: 40upx; height: 40upx } } } </style> ```
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看