shish 5 лет назад
Родитель
Сommit
aedae17a04

+ 3 - 2
hdApp/src/admin/billing/index.vue

@@ -108,6 +108,7 @@
 				<!--内容部分 end -->
 			</scroll-view>
 
+			<!-- 课程 -->
 			<scroll-view scroll-y scroll-with-animation v-if="tabIndex == 2" class="PxClass-box">
 				<PxClassCommondity  :info="pxClassInfo"></PxClassCommondity>
 			</scroll-view>
@@ -175,8 +176,8 @@ export default {
 			tabIndex: 0,
 			tabs: [
 				{	name: "成品"	},
-				{	name: "组合"	},
-				{	name: '课程'	},
+				{	name: "花材"	},
+				{	name: '培训班'	},
 			],
 			isModel: false,
 			customData: {

+ 5 - 4
hdApp/src/components/module/app-pxClass-commodity.vue

@@ -30,10 +30,10 @@
 
 		}
 		.PxClass-btn{
-			height: 70rpx;
+			height: 80rpx;
 			margin: 10rpx 30rpx;
 			color: #FFFFFF;
-			font-size: 28rpx;
+			font-size: 32rpx;
 			background: #3385FF;
 			border-radius: 8rpx;
 		}
@@ -43,6 +43,7 @@
 <template>
 	<view class="PxClass-center">
 			<view class="PxClass-list" v-for="(res,i) in info">
+				<view @tap="toAffirmPxClass(res)">
 				<view class="flex-space PxClass-title">{{res.name}} </view>
 				<view class="PxClass-msg-box">
 					<view class="PxClass-msg">
@@ -57,8 +58,8 @@
 					</view>
 				</view>
 
-				<view class="flex-center PxClass-btn" @tap="toAffirmPxClass(res)">开单</view>
-
+				<view class="flex-center PxClass-btn">开单</view>
+</view>
 			</view>
 	</view>
 </template>