xujing 5 vuotta sitten
vanhempi
commit
d21b6fe611

+ 3
- 0
src/onlineSelling/pages/addHouse/index.js Näytä tiedosto

@@ -41,9 +41,12 @@ export default class extends Component {
41 41
   handleCheckboxChange = (e) => {
42 42
     const { house } = this.props
43 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 46
     const chooseList = (house.mySelectHouses || []).filter(x => houseIdList.indexOf(x.houseId) > -1).map(x => x.housingInfo)
45 47
 
46 48
     this.setState({ chooseList })
49
+    console.log(this.state.chooseList,"chooseListchooseListchooseListchooseListchooseList")
47 50
   }
48 51
 
49 52
   handleSubmit = () => {

+ 2
- 1
src/onlineSelling/pages/houseCart/index.scss Näytä tiedosto

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

+ 1
- 1
src/onlineSelling/pages/raiseProfile/index.js Näytä tiedosto

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

+ 2
- 2
src/onlineSelling/pages/records/index.js Näytä tiedosto

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