YZM 2 years ago
parent
commit
4aa21294f0

+ 2 - 1
App.vue

@@ -40,6 +40,7 @@
 	}
 	.fl{float: left;}
 	.fr{float:right;}
-	.zhuti{padding: 10px 10px;}
+	/deep/ .zhuti{padding: 10px 10px;}
+	/deep/ .kuang{margin:0 !important;padding: 0px !important;}
 	.C929297{color: #929297 !important;}
 </style>

+ 36 - 0
pages.json

@@ -127,6 +127,42 @@
 					"titleNView": false
 				}
 			}
+		},
+		{
+			"path": "pages/sousuo/index",
+			"style": {
+				"navigationBarTitleText": "我的",
+				"app-plus":{
+					"titleNView": false
+				}
+			}
+		},
+		{
+			"path": "pages/fankui/index",
+			"style": {
+				"navigationBarTitleText": "我的",
+				"app-plus":{
+					"titleNView": false
+				}
+			}
+		},
+		{
+			"path": "pages/xiaoxi/index",
+			"style": {
+				"navigationBarTitleText": "我的",
+				"app-plus":{
+					"titleNView": false
+				}
+			}
+		},
+		{
+			"path": "pages/yifu/index",
+			"style": {
+				"navigationBarTitleText": "我的",
+				"app-plus":{
+					"titleNView": false
+				}
+			}
 		}
 	],
 	"tabBar": { 

+ 1 - 1
pages/chuanghome/index.vue

@@ -109,7 +109,7 @@ export default {
 				{title:"模特",id:61},
 			],
 			shenxing:'',
-			active:3,
+			active:2,
 			name:'',
 			val_1:'',
 			chelianglis:[

+ 31 - 3
pages/dapei/index.vue

@@ -1,9 +1,17 @@
 <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>
+			</tm-sheet>
+			<tm-button :round="24" class="sao mb-40 mt-40" block>提交</tm-button>
+		</div>
+		<!-- 弹出层消息 -->
 		<tm-message ref="toast"></tm-message>
-		<tm-menubars title="搭配" :shadow="0" :showback="false"></tm-menubars>
-		
 	</view>
 </template>	
 <script>
@@ -11,7 +19,10 @@ import{myRequest} from '@/api/request.js'
 export default {
 	data() {
 		return {
-			
+			checked1:false,
+			checked2:false,
+			checked3:false,
+			beizu:''
 		};
 	},
 	onLoad() {
@@ -21,6 +32,21 @@ export default {
 		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>
@@ -29,4 +55,6 @@ export default {
 	/deep/ .tm-menubars .body{
 		background-color: #1b1b1b !important;
 	}
+	/deep/ .zhuti{padding: 10px 10px;}
+	/deep/ .kuang{margin:0 !important;padding: 0px !important;}
 </style>

+ 91 - 0
pages/fankui/index.vue

@@ -0,0 +1,91 @@
+<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="pt-20 pr-30 text-size-g dianz text-align-right">
+						<image src="/static/img/59.png" mode="widthFix"></image>
+						<text class="text-white text-size-m">意见建议记录</text>
+					</view>
+					<view class="mt-20 ml-15">
+						<text class="text-white text-size-lg">*请选择反馈问题的类型</text>
+					</view>
+					<view class="mt-40" @click="aa(1)">
+						<tm-checkbox v-model="checked1" label="使用投诉"></tm-checkbox>
+						<text class="text-size-s fr mr-50 mt-20">联系客服</text>
+					</view>
+					<view @click="aa(2)">
+						<tm-checkbox v-model="checked2" label="交易问题"></tm-checkbox>
+						<text class="text-size-s fr mr-50 mt-20">联系客服</text>
+					</view>
+					<view @click="aa(3)">
+						<tm-checkbox  v-model="checked3" label="软件使用问题"></tm-checkbox>
+						<text class="text-size-s fr mr-50 mt-20">功能异常、产品建议等</text>
+					</view>
+					<view class="mt-20 ml-15 ">
+						<text class="text-white text-size-lg">*请发表您的意见</text>
+						<tm-input class="shuru mt-30" :vertical="true" :height="200" input-type="textarea" placeholder="请发表您的意见"  v-model="beizu" ></tm-input>
+					</view>
+				</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:''
+		};
+	},
+	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;}
+	.dianz image{width: 30px;vertical-align: middle;margin-right: 10px;}
+	/deep/ .tm-checkbox-boey-label{color: white !important;}
+	/deep/ .border-primary-a-1{border-color: #303440;background: #303440;}
+	/deep/ .shuru .grey-darken-5{
+		background-color: #0d0d0d!important;
+		padding: 0px !important;
+	}
+	.shuru{border:1px solid #303030;border-radius: 10px !important;padding:0px;background: #0D0D0D !important;}
+	/deep/ .sao uni-button{background-color: #303440 !important;width: 88% !important;}
+</style>

+ 49 - 1
pages/qiehuan/index.vue

@@ -2,6 +2,40 @@
 	<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">
+				<view class="mt-2 flex-between flex-center dingwei pt-20 pb-20">
+					<view class="touxiang">
+						<image class="ml-20" style="vertical-align: middle;" src="/static/img/53.png" mode="widthFix"></image>
+						<text style="vertical-align: middle;" class="text-size-g text-white">Hahhhnxsm_</text>
+					</view>
+					<view >
+						<text class="text-size-g you" style="vertical-align: middle;">(当前用户)</text>
+						<tm-checkbox class="you" v-model="checked1" label=""></tm-checkbox>
+					</view>
+				</view>
+			</tm-sheet>
+			<tm-sheet class="kuang" v-for="item in userList">
+				<view class="mt-2 flex-between flex-center dingwei pt-20 pb-20">
+					<view class="touxiang">
+						<image class="ml-20" style="vertical-align: middle;" src="/static/img/61.png" mode="widthFix"></image>
+						<text style="vertical-align: middle;" class="text-size-g text-white">{{item.name}}</text>
+					</view>
+					<view >
+						<text class="text-size-g you" style="vertical-align: middle;">(家庭成员)</text>
+						<tm-checkbox class="you" label=""></tm-checkbox>
+					</view>
+				</view>
+			</tm-sheet>
+			<tm-sheet class="kuang">
+				<view class="mt-2 flex-between flex-center dingwei pt-20 pb-20">
+					<view class="touxiang">
+						<image class="ml-20" style="vertical-align: middle;" src="/static/img/54.png" mode="widthFix"></image>
+						<text style="vertical-align: middle;" class="text-size-g text-white">新增家庭成员</text>
+					</view>
+				</view>
+			</tm-sheet>
+		</div>
 		
 	</view>
 </template>	
@@ -10,7 +44,13 @@ import{myRequest} from '@/api/request.js'
 export default {
 	data() {
 		return {
-			
+			checked1:true,
+			checked2:false,
+			userList:[
+				{name:'爸爸'},
+				{name:'妈妈'},
+				{name:'儿子'}
+			]
 		};
 	},
 	onLoad() {
@@ -28,4 +68,12 @@ export default {
 	/deep/ .tm-menubars .body{
 		background-color: #1b1b1b !important;
 	}
+	.dingwei{width: 100%;margin: 0 auto;margin-top: 10px;}
+	.dingwei image{width: 55px;margin-right: 10px;	}
+	/deep/ .border-primary-a-1{border-color: #303440;background: #303440;}
+	/deep/ .shuru .grey-darken-5{
+		background-color: #0d0d0d!important;
+		padding: 0px !important;
+	}
+	.you{text-align: right;}
 </style>

+ 7 - 3
pages/shouye/index.vue

@@ -2,7 +2,7 @@
 	<view :style="{ minHeight: sys.windowHeight + 'px' }" :class="[$tm.vx.state().tmVuetify.black ? 'black' : ' ']">
 		<tm-menubars title="" :shadow="0" :showback="false"></tm-menubars>
 		<view class="C1b1b1b">
-			<tm-search v-model="soso" color="white" confirm-text="">
+			<tm-search v-model="soso" color="white" confirm-text="" @click="sosoFun">
 				<!-- <template #right>
 					<view class="xiangji">
 						<image src="/static/img/xiangji.png" mode="widthFix"></image>
@@ -90,7 +90,7 @@
 								<view class="text-overflow-2">
 									<text>{{item.text}}</text>
 								</view>
-								<view class="mt-24 flex-between flex-center">
+								<view class="mt-2 flex-between flex-center">
 									<view class="touxiang mt-30">
 										<image src="/static/img/7.png" mode="widthFix"></image>
 										<text class="text-white text-size-m">可樂crys</text>
@@ -238,8 +238,12 @@
 			
 		},
 		methods: {
+			sosoFun(){
+				uni.navigateTo({
+					url: "/pages/sousuo/index",
+				})
+			},
 			gengmore(){
-				
 				this.randouh()
 			},
 			itemClick(e){

+ 179 - 0
pages/sousuo/index.vue

@@ -0,0 +1,179 @@
+<template>
+	<view :style="{ minHeight: sys.windowHeight + 'px' }" :class="[$tm.vx.state().tmVuetify.black ? 'black' : ' ']">
+		<tm-menubars title="" :shadow="0" :showback="false"></tm-menubars>
+		<view class="C1b1b1b pb-20">
+			<view style="width: 90%;margin:0 auto;">
+				<view>
+					<tm-search @confirm="sosoFun" class="fl" v-model="soso" color="white" confirm-text=""></tm-search>
+					<text class="quxiao fr" @click="goindex()">取消</text>
+				</view>
+				<view style="clear: both;"></view>
+				<view v-if="sosotype==1">
+					<text class="text-size-m fl mt-30">搜索记录</text>
+					<view class="fr mt-30 qingchu">
+						<text class="text-size-s fl">清空记录</text>
+						<tm-badges :offset="[0,-5]" icon="icon-times"></tm-badges>
+					</view>
+				</view>
+				<view v-if="sosotype==2">
+					<tm-tabs align="left" class="qiehuan1" v-model="activeIndex" :list="list" range-key="title"></tm-tabs>
+					<tm-tabs align="left" class="qiehuan2" color="white"  v-model="activeIndex1" :list="list1" range-key="title"></tm-tabs>
+				</view>
+				<view style="clear: both;"></view>
+			</view>
+		</view>
+		<!-- 列表 -->
+		<tm-grouplist class="liebiao mt-40" v-if="sosotype==1">
+			<tm-listitem v-for="item in libiaoList" @click="tiaozhuan(item.type)" :title="item.title" left-icon="" show-left-icon :show-right-icon="false">
+			</tm-listitem>
+		</tm-grouplist>
+		<!-- 衣橱 -->
+		<view class="zhuti">
+			<tm-sheet class="yichu"  v-if="sosotype==2" style="margin-bottom: 70px !important;">
+				<view class="jihua">
+					<view v-for="(item,index) in listdata" class="round-3 fl shadow-2 overflow pa-10 jihuaview" :class="[$tm.vx.state().tmVuetify.black ? 'black' : 'white']">
+						<image class="logo" :src="item.image" mode="widthFix"></image>
+						<view class="pa-10 text-size-s">
+							<view class="text-overflow-2">
+								<text>{{item.text}}</text>
+							</view>
+							<view class="mt-2 flex-between flex-center">
+								<view class="touxiang mt-30">
+									<image src="/static/img/7.png" mode="widthFix"></image>
+									<text class="text-white text-size-m">可樂crys</text>
+								</view>
+								<view >
+									<image class="remenzan" :src="dianzan1?'/static/img/29.png':'/static/img/9.png'" mode="widthFix"></image>
+								</view>
+							</view>
+						</view>
+					</view>
+				</view>
+				<view style="clear: both;" class="more mt-40 pb-40 pt-40" @click="gengmore()">
+					<image src="/static/img/30.png" mode="widthFix"></image>
+					<text class="text-size-s">下拉加载更多~</text>
+				</view>
+			</tm-sheet>
+		</view>
+		<!-- 弹出层消息 -->
+		<tm-message ref="toast"></tm-message>
+	</view>
+</template>	
+<script>
+import{myRequest} from '@/api/request.js'
+export default {
+	data() {
+		return {
+			soso:'',
+			libiaoList:[
+			{title:'热门穿搭',type:'1'},
+			{title:'商务搭配',type:'2'},
+			{title:'朋克风',type:'3'},
+			{title:'日常出勤',type:'4'},
+			{title:'同学聚会',type:'5'},
+			],
+			sosotype:1,
+			list:[ '全部','用户','商品'],
+			activeIndex:0,
+			activeIndex1:0,
+			list1:[ '综合','高级感','黑色','灰色'],
+			listdata:[],
+			dianzan1:true,
+			sys:null
+		};
+	},
+	onLoad() {
+		
+	},
+	created() {
+		this.sys = uni.getSystemInfoSync();
+		this.randouh()
+	},
+	methods: {
+		gengmore(){
+			this.randouh()
+		},
+		goindex(){
+			uni.navigateBack();
+		},
+		sosoFun(){
+			console.log(this.soso)
+			this.sosotype=2
+		},
+		randouh(){
+			let list2 = [],that=this;
+			for(let i=0;i<4;i++){
+				list2.push({
+					image:'../../static/img/25.png',
+					text:'西装穿搭 | 韩系又A又飒休闲西装 高级感'
+				})
+			}
+			this.listdata=this.listdata.concat(list2)
+			console.log(this.listdata)
+		},
+	},
+}
+</script>
+
+<style lang="scss">
+	/deep/ .tm-menubars .body{
+		background-color: #1b1b1b !important;
+	}
+	/deep/ .icon-search{
+		font-size: 23px !important;
+		color: #8E8E93 !important;
+	}
+	/deep/ .tm-search{
+		width: 86%;
+		margin: 0 auto;
+		background-color: #414141 !important;
+		border-radius: 10px;
+	}
+	/deep/ .tm-search .grey-darken-5{
+		background-color: #414141 !important;
+	}
+	.quxiao{color: #707070;line-height: 47px;}
+	/deep/ .tm--badges--cm{border: 1px solid #303440 !important;
+	background-color: #303440 !important;right: -7px !important;top: 6px !important;}
+	/deep/ .tm--badges{display: inherit !important;}
+	.qingchu{background: #303440;padding:5px 15px;border-radius: 20px;width: 62px;}
+	/deep/ .liebiao .grey-darken-4.bk{background-color: #0D0D0D !important;}
+	/deep/ .liebiao .py-24{padding-top: 15px;padding-bottom: 15px;}
+	/deep/ .tm-grouplist{margin:0 10px !important;}
+	
+	/deep/ .qiehuan2 .tm-tabs-con-item-border{display: none;}
+	/deep/ .qiehuan1 .text-primary{color: white !important;}
+	/deep/ .qiehuan2 .tm-tabs-con-item-text{
+		font-size: 14px;
+		background: none !important;
+		height: 28px;
+		vertical-align: middle;
+		line-height: 28px;
+		border-radius: 20px;
+		padding-left: 14px;
+		padding-right: 14px;
+		margin-top: 17%;
+	}
+	/deep/ .qiehuan2 .text-weight-b{
+		font-size: 14px;
+		background: #303440 !important;
+		height: 28px;
+		vertical-align: middle;
+		line-height: 28px;
+		border-radius: 20px;
+		padding-left: 14px;
+		padding-right: 14px;
+		margin-top: 17%;
+		color: white !important;
+	}
+	.jihua image{width: 30px;height: 30px;}
+	.jihua{position: relative;}
+	.jihua .a_1{position: absolute;top: 10%;}
+	.jihuaview{width: 43%;margin: 7px;}
+	.remenzan{width: 18px !important;margin-top: 10px;}
+	.jihua .logo{width: 100%;}
+	.touxiang image{width: 40px;margin-right: 10px;vertical-align: middle;}
+	.yichu{padding: 0px !important;margin:0 !important}
+	.more{text-align: center;}
+	.more image{margin-right: 10px;vertical-align: middle;width: 30px;}
+</style>

+ 18 - 10
pages/user/index.vue

@@ -62,16 +62,16 @@ export default {
 			show:false,
 			on:true,
 			libiaoList:[
-				{title:'我的钱包',type:'1'},
-				{title:'我的评价',type:'2'},
-				{title:'意见反馈',type:'3'},
-				{title:'我的消息',type:'4'},
-				{title:'我的关注',type:'5'},
-				{title:'系统通知',type:'6'},
-				{title:'历史记录',type:'7'},
-				{title:'创建家庭',type:'8'},
-				{title:'内容推送',type:'9'},
-				]
+			{title:'我的钱包',type:'1'},
+			{title:'我的评价',type:'2'},
+			{title:'意见反馈',type:'3'},
+			{title:'我的消息',type:'4'},
+			{title:'我的关注',type:'5'},
+			{title:'系统通知',type:'6'},
+			{title:'历史记录',type:'7'},
+			{title:'创建家庭',type:'8'},
+			{title:'内容推送',type:'9'},
+			]
 		};
 	},
 	onLoad() {
@@ -87,6 +87,14 @@ export default {
 				uni.navigateTo({
 					url: "/pages/chuanghome/index",
 				})
+			}else if(type==3){
+				uni.navigateTo({
+					url: "/pages/fankui/index",
+				})
+			}else if(type==4){
+				uni.navigateTo({
+					url: "/pages/xiaoxi/index",
+				})
 			}
 		},
 		queren(){

+ 6 - 1
pages/wardrobe/index.vue

@@ -60,7 +60,7 @@
 			<!-- 衣橱 -->
 			<tm-sheet class="yichu" style="margin-bottom: 70px !important;">
 				<tm-tabs class="C1b1b1b qiehuan" color="white"  align="split"  v-model="activeIndex" :list="list" range-key="title"></tm-tabs>
-				<view class="yiguicla black pa-6 ma-4 fl" v-for="item in quanbuList">
+				<view class="yiguicla black pa-6 ma-4 fl" v-for="item in quanbuList" @click="yifu()">
 					<image :src="item.src" mode="widthFix"></image>
 					<view class="text-align-center text-size-m mt-8">{{item.text}}</view>
 					<view class="text-align-center text-size-m mt-6 mb-6">{{item.type}}</view>
@@ -115,6 +115,11 @@ export default {
 		this.sys = uni.getSystemInfoSync();
 	},
 	methods: {
+		yifu(){
+			uni.navigateTo({
+				url: "/pages/yifu/index",
+			})
+		},
 		qiehuanFun(){
 			uni.navigateTo({
 				url: "/pages/qiehuan/index",

+ 86 - 0
pages/xiaoxi/index.vue

@@ -0,0 +1,86 @@
+<template>
+	<view :style="{ minHeight: sys.windowHeight + 'px' }"
+		:class="[$tm.vx.state().tmVuetify.black ? 'black' : ' ']">
+		<tm-menubars title="消息列表" :shadow="0" :showback="true"></tm-menubars>
+		<view class="tou C1b1b1b pb-30">
+			<view class="flex-center"><tm-segTabs :list="list" v-model="active"></tm-segTabs></view>
+		</view>
+		<tm-card
+			title="冬季的羽绒 | 蓬松、轻盈、温暖"
+			:content="text"
+			:btnColor="['primary', 'red']"
+			statusColor="red"
+		>
+			<template v-slot:content="{ text }">
+				<view>
+					<tm-images src="../../static/img/60.png" mode="widthFix"></tm-images>
+					<view class="py-24 tetx-size-m wenzi">考虑到居家、出行等各类环境下的保暖需求,身穿系列服装即便身处于日渐冷冽的户外,也能感受随性自</view>
+					<view class="gengduo">
+						<tm-listitem title="查看详情"></tm-listitem>
+					</view>
+				</view>
+			</template>
+		</tm-card>
+		<!-- 弹出层消息 -->
+		<tm-message ref="toast"></tm-message>
+	</view>
+</template>	
+<script>
+import{myRequest} from '@/api/request.js'
+export default {
+	data() {
+		return {
+			active: 0,
+			list: ['活动消息', '服务消息', '系统消息'],
+			text:
+							'路透社援引消息人士的话称,立陶宛外长兰茨贝尔吉斯最近向总统瑙塞达提议,将台驻立陶宛机构中文名称中的“台湾”改为“台湾人民”,想以此缓和与中国的紧张关系。这已经不是立陶宛方面第一次就更名问题放出风声,此前'
+		};
+	},
+	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/ .tm-segTabs{border: 1px solid #303030;border-radius: 5px;width: 70%;height:40px;}
+	/deep/ .tm-segTabs-item{margin-top: 4px !important;}
+	/deep/ .tm-segTabs-bg-bar{margin-top: 6px !important;background: #0178FD !important;border-radius: 2px !important;}
+	.wenzi{color: #AAAAAA;}
+	/deep/ .tm-card{
+		padding-bottom: 30px !important;
+	}
+	/deep/ .gengduo .grey-darken-4{
+		background: #1B1B1B !important;
+		padding: 0 !important;
+		margin: 0 !important;
+		position: absolute;
+		top: 20px;
+		width: 100%;
+	}
+</style>

+ 60 - 0
pages/yifu/index.vue

@@ -0,0 +1,60 @@
+<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>
+			</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:''
+		};
+	},
+	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;}
+</style>

BIN
static/img/59.png


BIN
static/img/60.png


BIN
static/img/61.png


+ 3 - 3
tm-vuetify/components/tm-menubars/tm-menubars.vue

@@ -19,14 +19,14 @@
 							</navigator>
 						</view>
 						<navigator v-if="!pageUrl" open-type="navigateBack" class="flex-center px-24 flex-shrink fulled-height">
-							<text class="iconfont icon-angle-left" :class="[`text-${fontColorTheme}`]" :style="{ fontSize: '28rpx' }">返回</text>
+							<text style="color: white !important;" class="iconfont icon-angle-left" :class="[`text-${fontColorTheme}`]" :style="{ fontSize: '28rpx' }">返回</text>
 						</navigator>
 					</block>
 
 					<slot name="left" :data="{ style: widths, isTransparent: isTransparent, title: title }"></slot>
 				</view>
-				<view class="center flex-center text-size-g text-overflow text-align-center" :class="[`text-${fontColorTheme}`]">
-					<slot name="default" :data="{ style: widths, isTransparent: isTransparent, title: title }">
+				<view style="color: white !important;" class="center flex-center text-size-g text-overflow text-align-center" :class="[`text-${fontColorTheme}`]">
+					<slot  name="default" :data="{ style: widths, isTransparent: isTransparent, title: title }">
 						{{ title }}
 					</slot>
 				</view>

+ 2 - 2
unpackage/dist/dev/app-plus/app-config-service.js

@@ -1,8 +1,8 @@
 
 var isReady=false;var onReadyCallbacks=[];
 var isServiceReady=false;var onServiceReadyCallbacks=[];
-var __uniConfig = {"pages":["pages/index/index","pages/wardrobe/index","pages/dapei/index","pages/shop/index","pages/user/index","pages/shouye/index","pages/putstorage/index","pages/registered/index","pages/login/index","pages/xieyi/index","pages/zhaohui/index","pages/zhtijiao/index","pages/chuanghome/index","pages/qiehuan/index"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"},"tabBar":{"color":"#999","selectedColor":"#82cfd5","borderStyle":"#fff","backgroundColor":"white","iconfontSrc":"static/icon/iconfont.ttf"},"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"testApp","compilerVersion":"3.4.7","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
-var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true},"window":{"navigationBarTitleText":"","titleNView":false}},{"path":"/pages/wardrobe/index","meta":{},"window":{"navigationBarTitleText":"衣厨","titleNView":false}},{"path":"/pages/dapei/index","meta":{},"window":{"navigationBarTitleText":"消息","titleNView":false}},{"path":"/pages/shop/index","meta":{},"window":{"navigationBarTitleText":"商场","titleNView":false}},{"path":"/pages/user/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/shouye/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/putstorage/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/registered/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/login/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/xieyi/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/zhaohui/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/zhtijiao/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/chuanghome/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/qiehuan/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}}];
+var __uniConfig = {"pages":["pages/index/index","pages/wardrobe/index","pages/dapei/index","pages/shop/index","pages/user/index","pages/shouye/index","pages/putstorage/index","pages/registered/index","pages/login/index","pages/xieyi/index","pages/zhaohui/index","pages/zhtijiao/index","pages/chuanghome/index","pages/qiehuan/index","pages/sousuo/index","pages/fankui/index","pages/xiaoxi/index","pages/yifu/index"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"},"tabBar":{"color":"#999","selectedColor":"#82cfd5","borderStyle":"#fff","backgroundColor":"white","iconfontSrc":"static/icon/iconfont.ttf"},"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"testApp","compilerVersion":"3.4.7","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
+var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true},"window":{"navigationBarTitleText":"","titleNView":false}},{"path":"/pages/wardrobe/index","meta":{},"window":{"navigationBarTitleText":"衣厨","titleNView":false}},{"path":"/pages/dapei/index","meta":{},"window":{"navigationBarTitleText":"消息","titleNView":false}},{"path":"/pages/shop/index","meta":{},"window":{"navigationBarTitleText":"商场","titleNView":false}},{"path":"/pages/user/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/shouye/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/putstorage/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/registered/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/login/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/xieyi/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/zhaohui/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/zhtijiao/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/chuanghome/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/qiehuan/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/sousuo/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/fankui/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/xiaoxi/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}},{"path":"/pages/yifu/index","meta":{},"window":{"navigationBarTitleText":"我的","titleNView":false}}];
 __uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
 __uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
 service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:void 0,window:void 0,document:void 0,frames:void 0,self:void 0,location:void 0,navigator:void 0,localStorage:void 0,history:void 0,Caches:void 0,screen:void 0,alert:void 0,confirm:void 0,prompt:void 0,fetch:void 0,XMLHttpRequest:void 0,WebSocket:void 0,webkit:void 0,print:void 0}}}});

File diff suppressed because it is too large
+ 0 - 0
unpackage/dist/dev/app-plus/app-service.js


File diff suppressed because it is too large
+ 33 - 31
unpackage/dist/dev/app-plus/app-view.js


BIN
unpackage/dist/dev/app-plus/static/img/59.png


BIN
unpackage/dist/dev/app-plus/static/img/60.png


BIN
unpackage/dist/dev/app-plus/static/img/61.png


Some files were not shown because too many files changed in this diff