xujing 5 年前
父节点
当前提交
9b438178e3

+ 1
- 1
src/onlineSelling/components/Statement/index.js 查看文件

4
 export default function Statement(props) {
4
 export default function Statement(props) {
5
 
5
 
6
   return (
6
   return (
7
-    <View className="bottom-con" style="props.style">
7
+    <View className="bottom-con" style={props.style}>
8
       <View className="statement">!免责声明:</View>
8
       <View className="statement">!免责声明:</View>
9
       <View className="statement">房源信息、选房协议等来源于开发商,具体销售数据可能会有延迟,最终以开发商官网公告为准,请在执行具体操作前和置业顾问沟通确认,并谨慎核查。</View>
9
       <View className="statement">房源信息、选房协议等来源于开发商,具体销售数据可能会有延迟,最终以开发商官网公告为准,请在执行具体操作前和置业顾问沟通确认,并谨慎核查。</View>
10
     </View>
10
     </View>

+ 1
- 1
src/onlineSelling/components/Statement/index.scss 查看文件

1
 .bottom-con{
1
 .bottom-con{
2
-  padding: 30px;
2
+  padding: 26px 30px;
3
   background-color: #F8F8F8;
3
   background-color: #F8F8F8;
4
 
4
 
5
   .statement{
5
   .statement{

+ 5
- 5
src/onlineSelling/pages/detail/index.js 查看文件

9
 import { transferImage } from '@/utils/tools'
9
 import { transferImage } from '@/utils/tools'
10
 import Blank from '../../components/Blank'
10
 import Blank from '../../components/Blank'
11
 import * as noticeType from '@/constants/common.js'
11
 import * as noticeType from '@/constants/common.js'
12
+import Statement from '../../components/Statement'
12
 
13
 
13
 @connect(
14
 @connect(
14
   ({ user }) => ({ ...user })
15
   ({ user }) => ({ ...user })
136
     }
137
     }
137
 
138
 
138
   }
139
   }
139
-  toRaiseMoney(){
140
+  toRaiseMoney() {
140
     Taro.navigateTo({ url: `/onlineSelling/pages/raiseMoney/index` })
141
     Taro.navigateTo({ url: `/onlineSelling/pages/raiseMoney/index` })
141
   }
142
   }
142
 
143
 
200
                 <View className="date">
201
                 <View className="date">
201
                   预选时间:{dayjs(houseDetail.preselectionStartTime).format('MM/DD HH:mm:ss')}--{dayjs(houseDetail.preselectionEndTime).format('MM/DD HH:mm:ss')}
202
                   预选时间:{dayjs(houseDetail.preselectionStartTime).format('MM/DD HH:mm:ss')}--{dayjs(houseDetail.preselectionEndTime).format('MM/DD HH:mm:ss')}
202
                 </View>
203
                 </View>
203
-                {/* <View className="date">
204
-                  认筹时间:2/12 12:23:33--2/13 12:23:34
205
-              </View> */}
204
+                <View className="date">认筹时间:2/12 12:23:33--2/13 12:23:34</View>
206
               </View>
205
               </View>
207
               <View className="num">
206
               <View className="num">
208
                 已有{houseDetail.realHeat + houseDetail.heat + 0}人预选此房源,快快预选认筹~
207
                 已有{houseDetail.realHeat + houseDetail.heat + 0}人预选此房源,快快预选认筹~
209
               </View>
208
               </View>
209
+              <Statement style="margin: 104rpx 0 30rpx 0" />
210
               <View style="padding: 0 30rpx;">
210
               <View style="padding: 0 30rpx;">
211
                 {!houseDetail.isPreselect ?
211
                 {!houseDetail.isPreselect ?
212
                   <View className="choose-btn" onClick={() => this.open()}>
212
                   <View className="choose-btn" onClick={() => this.open()}>
215
                     取消预选
215
                     取消预选
216
                   </View>
216
                   </View>
217
                 }
217
                 }
218
-                <View className="close-btn" onClick={() => this.toRaiseMoney()}>
218
+                <View className="raise-btn" onClick={() => this.toRaiseMoney()}>
219
                   认筹此房源
219
                   认筹此房源
220
               </View>
220
               </View>
221
               </View>
221
               </View>

+ 3
- 4
src/onlineSelling/pages/detail/index.scss 查看文件

144
       padding: 0 30px;
144
       padding: 0 30px;
145
       margin-top: 10px;
145
       margin-top: 10px;
146
       font-weight: 300;
146
       font-weight: 300;
147
-      margin-bottom: 78px;
148
    
147
    
149
     }
148
     }
150
     .choose-btn{
149
     .choose-btn{
155
       border-radius:10px;
154
       border-radius:10px;
156
       text-align: center; 
155
       text-align: center; 
157
     }
156
     }
158
-    .close-btn{
159
-      color: $primary-color;
157
+    .raise-btn{
158
+      color: #333;
160
       font-size: 36px;
159
       font-size: 36px;
161
-      background-color: #F8F8F8;
160
+      border:1px solid #dcdcdc;
162
       line-height: 94px;
161
       line-height: 94px;
163
       border-radius:10px;
162
       border-radius:10px;
164
       text-align: center;
163
       text-align: center;