Browse Source

静态页面

1002884655 3 years ago
parent
commit
a7f6483a41

+ 1
- 1
src/pages/index/buildingDetail/components/HouseTypeIntro/index.jsx View File

22
       </view>
22
       </view>
23
 
23
 
24
       <view className='ProjectList'>
24
       <view className='ProjectList'>
25
-        <ScrollView scroll-x>
25
+        <ScrollView scroll-x show-scrollbar={false}>
26
           {
26
           {
27
             Info.map((item, index) => (
27
             Info.map((item, index) => (
28
               <view className='ListItem' key={`List-${index}`}>
28
               <view className='ListItem' key={`List-${index}`}>

+ 1
- 1
src/pages/index/buildingDetail/components/Pictures/index.jsx View File

31
       </view>
31
       </view>
32
 
32
 
33
       <view className='ProjectList'>
33
       <view className='ProjectList'>
34
-        <ScrollView scroll-x>
34
+        <ScrollView scroll-x show-scrollbar={false}>
35
           {
35
           {
36
             List.map((item, index) => (
36
             List.map((item, index) => (
37
               <view className='ListItem' key={`List-${index}`} onClick={() => handlePreview(item)}>
37
               <view className='ListItem' key={`List-${index}`} onClick={() => handlePreview(item)}>

+ 1
- 1
src/pages/index/components/IndexHotActivity/index.jsx View File

6
   const { List = [] } = props
6
   const { List = [] } = props
7
   return (
7
   return (
8
     <view className='components IndexHotActivity'>
8
     <view className='components IndexHotActivity'>
9
-      <ScrollView scroll-x={true}>
9
+      <ScrollView scroll-x show-scrollbar={false}>
10
         <view className='Content'>
10
         <view className='Content'>
11
           {
11
           {
12
             List.map((item, index) => (
12
             List.map((item, index) => (

+ 1
- 1
src/pages/index/components/LiveSale/index.jsx View File

46
           }
46
           }
47
         </view>
47
         </view>
48
         <view className='Content'>
48
         <view className='Content'>
49
-          <ScrollView scroll-x>
49
+          <ScrollView scroll-x show-scrollbar={false}>
50
             {
50
             {
51
               PageList.map((item, index) => (
51
               PageList.map((item, index) => (
52
                 <view className='ListItem' key={`List-${index}`} style={{display: CurrentId === 1 || (CurrentId === 2 && item.kind === 'notice') || (CurrentId === 3 && item.kind === 'live')  || (CurrentId === 4 && item.kind !== 'notice') ? 'inline-block' : 'none'}}>
52
                 <view className='ListItem' key={`List-${index}`} style={{display: CurrentId === 1 || (CurrentId === 2 && item.kind === 'notice') || (CurrentId === 3 && item.kind === 'live')  || (CurrentId === 4 && item.kind !== 'notice') ? 'inline-block' : 'none'}}>