xujing 5 years ago
parent
commit
d21b6fe611

+ 3
- 0
src/onlineSelling/pages/addHouse/index.js View File

41
   handleCheckboxChange = (e) => {
41
   handleCheckboxChange = (e) => {
42
     const { house } = this.props
42
     const { house } = this.props
43
     const houseIdList = e.detail.value
43
     const houseIdList = e.detail.value
44
+    console.log(e.detail.value,"e.detail.valuee.detail.valuee.detail.valuee.detail.value")
45
+    console.log(house,"househousehousehousehousehousehousehousehousehouse")
44
     const chooseList = (house.mySelectHouses || []).filter(x => houseIdList.indexOf(x.houseId) > -1).map(x => x.housingInfo)
46
     const chooseList = (house.mySelectHouses || []).filter(x => houseIdList.indexOf(x.houseId) > -1).map(x => x.housingInfo)
45
 
47
 
46
     this.setState({ chooseList })
48
     this.setState({ chooseList })
49
+    console.log(this.state.chooseList,"chooseListchooseListchooseListchooseListchooseList")
47
   }
50
   }
48
 
51
 
49
   handleSubmit = () => {
52
   handleSubmit = () => {

+ 2
- 1
src/onlineSelling/pages/houseCart/index.scss View File

39
   }
39
   }
40
 
40
 
41
   .body {
41
   .body {
42
-    height: calc(100% - 340px);
42
+    height: calc(100vh - 450px);
43
+
43
   }
44
   }
44
 
45
 
45
   .footer {
46
   .footer {

+ 1
- 1
src/onlineSelling/pages/raiseProfile/index.js View File

229
       <View className="raiseProfilePage">
229
       <View className="raiseProfilePage">
230
         <View className="main">
230
         <View className="main">
231
           {this.renderHead()}
231
           {this.renderHead()}
232
-          <View className="tip">{raiseDeatil.payDescription || ''}</View>
232
+          <View className="tip">{raiseOrder.raisePrecautions || ''}</View>
233
           {raiseDeatil.status == '0' && this.renderCancelReason()}
233
           {raiseDeatil.status == '0' && this.renderCancelReason()}
234
           {raiseDeatil.payStatus == 'unpaid' && this.renderUnpayNotice()}
234
           {raiseDeatil.payStatus == 'unpaid' && this.renderUnpayNotice()}
235
           <View className="raise-flex">
235
           <View className="raise-flex">

+ 2
- 2
src/onlineSelling/pages/records/index.js View File

115
     const params = {
115
     const params = {
116
       pageNumber: 1,
116
       pageNumber: 1,
117
       pageSize: 50,
117
       pageSize: 50,
118
-      cityId: this.props.curCity.id || ''
118
+      // cityId: this.props.curCity.id || ''
119
     }
119
     }
120
     getItemList(params).then(res => {
120
     getItemList(params).then(res => {
121
       res.records.unshift({ buildingName: '请选择', buildingId: '' })
121
       res.records.unshift({ buildingName: '请选择', buildingId: '' })
145
     const checkHouse = houseList[0]
145
     const checkHouse = houseList[0]
146
     for (let inx in houseList) {
146
     for (let inx in houseList) {
147
       if (houseList[inx].salesBatchId != checkHouse.salesBatchId) {
147
       if (houseList[inx].salesBatchId != checkHouse.salesBatchId) {
148
-        Taro.showToast({ title: '所选房源不属于同一销售批次, 请筛选后重选', icon: 'none' })
148
+        Taro.showToast({ title: '所选房源不属于同一销售批次, 请筛选后重选', icon: 'none', duration: 2000, })
149
         return;
149
         return;
150
       }
150
       }
151
     }
151
     }