|
|
@@ -33,7 +33,7 @@
|
|
|
|
|
|
<uni-popup ref="classRef" background-color="#fff" type="center" :animation="false" class="class-popup-style">
|
|
|
<view style="margin-left:30upx;margin-top:19upx;font-size:27upx;font-weight:bold;">请选择分类:</view>
|
|
|
- <view style="display:flex;padding:20upx;height:auto;justify-content: space-between;align-items:center;flex-wrap:wrap;max-height:100vh;overflow:auto;">
|
|
|
+ <view style="display:flex;padding:20upx;height:auto;justify-content: space-between;align-items:center;flex-wrap:wrap;max-height:80vh;overflow:auto;">
|
|
|
<view v-for="(item, index) in itemClassData" :key="index" @tap.stop="setClass(index)" style="margin-bottom:20upx;margin-left:3upx;">
|
|
|
<image :src="item.cover" style="width:120upx;height:120upx;border-radius:10upx;"></image>
|
|
|
<view style="margin-top:5upx;overflow: hidden;white-space: nowrap;width:120upx;text-align:center;" v-if="item.select == 0">{{item.name}}</view>
|
|
|
@@ -202,36 +202,39 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
- .app-content{
|
|
|
- .list{
|
|
|
- padding: 20upx 30upx;
|
|
|
- margin-bottom: 20upx;
|
|
|
- background: #FFFFFF;
|
|
|
- .label{
|
|
|
- position: relative;
|
|
|
- line-height: 50upx;
|
|
|
- text{
|
|
|
- display: block;
|
|
|
- }
|
|
|
- }
|
|
|
- .val{
|
|
|
- font-size: 25upx;
|
|
|
- .iconfont{
|
|
|
- margin-left: 12upx;
|
|
|
- color: #999999;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- .pass-red{
|
|
|
- font-weight:bold;
|
|
|
- color:red;
|
|
|
- }
|
|
|
- .cancel-pass{
|
|
|
- font-weight: normal;
|
|
|
- color:black;
|
|
|
- }
|
|
|
- .qa_cause{
|
|
|
- color:blue;
|
|
|
+.app-content{
|
|
|
+ .list{
|
|
|
+ padding: 20upx 30upx;
|
|
|
+ margin-bottom: 20upx;
|
|
|
+ background: #FFFFFF;
|
|
|
+ .label{
|
|
|
+ position: relative;
|
|
|
+ line-height: 50upx;
|
|
|
+ text{
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .val{
|
|
|
+ font-size: 25upx;
|
|
|
+ .iconfont{
|
|
|
+ margin-left: 12upx;
|
|
|
+ color: #999999;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
+}
|
|
|
+.pass-red{
|
|
|
+ font-weight:bold;
|
|
|
+ color:red;
|
|
|
+}
|
|
|
+.cancel-pass{
|
|
|
+ font-weight: normal;
|
|
|
+ color:black;
|
|
|
+}
|
|
|
+.qa_cause{
|
|
|
+ color:blue;
|
|
|
+}
|
|
|
+.class-popup-style {
|
|
|
+ z-index: 99999;
|
|
|
+}
|
|
|
</style>
|