3f535f30
杨鑫
'初始'
|
1
|
<template>
|
1dbc0b2d
wesley88
1
|
2
3
|
<view>
<view class="banner-img">
|
440bccda
wesley88
1
|
4
|
<swiper :indicator-dots="true" :autoplay="false" :interval="3000" :duration="500" style="height: 30vh;" indicator-active-color="#fff">
|
8f8dbfb8
wesley88
1
|
5
|
<swiper-item v-for="(imageUrl, index) in lunbo" :key="index">
|
440bccda
wesley88
1
|
6
7
8
9
10
11
|
<view style="width: 100%;height: 100%;" v-if="imageUrl.type == 'img'" @click="openimg2(index)">
<u-image :showLoading="true" :src="imageUrl.url" width="100%" height="100%"></u-image>
</view>
<view style="width: 100%;height: 100%;" v-else>
<video style="width: 100%;height: 100%;" id="myVideo" :src="imageUrl.url"></video>
</view>
|
8f8dbfb8
wesley88
1
|
12
13
|
</swiper-item>
</swiper>
|
1dbc0b2d
wesley88
1
|
14
15
16
17
18
|
</view>
<view class="banner">
<view class="banner-item info">
<view class="info-title">
{{tableData.shopName || tableData.venueName}}
|
e5b57447
杨鑫
'分包问卷'
|
19
|
|
1dbc0b2d
wesley88
1
|
20
|
</view>
|
3f950a0f
wesley88
1
|
21
22
|
<!-- <view class="info-text">{{tableData.shopDescription}}</view> -->
<view class="info-racord" style="margin: 20rpx 0;" v-if="moban.length !=0">
|
6106f9fa
杨鑫
'最新'
|
23
|
<view class="info-price" v-if="tableData.actualUsableArea"><span>{{moban[0].rentalPrice*tableData.actualUsableArea || ''}}</span>元/{{moban[0].leaseTerm || ''}}</view>
|
84cb5fa7
wesley88
1
|
24
25
|
<view class="info-price" v-else-if="moban[0].rentalPrice"><span>{{moban[0].rentalPrice*tableData.actualArea || ''}}</span>元/{{moban[0].leaseTerm || ''}}</view>
<view class="info-price" v-else>自营</view>
|
1dbc0b2d
wesley88
1
|
26
27
28
29
30
|
</view>
<view class="" v-if="moban.length !=0" @click="moreZu">
查看更多租金优惠
<u-icon name="arrow-right"></u-icon>
</view>
|
e5b57447
杨鑫
'分包问卷'
|
31
|
</view>
|
3f950a0f
wesley88
1
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<view class="banner-item field" v-if="tableData.shopName">
<view class="banner-item-title">商铺信息</view>
<view class="banner-item-form">
<u-row gutter="10">
<u-col span="6">
<view class="form-item">
<view class="label">商铺类型:</view>
<text>{{tableData.shopType=='1'?'移动铺位':tableData.shopType=='2'?'固定铺位':'无'}}</text>
</view>
</u-col>
<u-col span="6">
<view class="form-item">
<view class="label">测绘面积:</view>
<text>{{tableData.surveyingArea?tableData.surveyingArea+' ㎡': '无'}}</text>
</view>
</u-col>
<u-col span="6">
<view class="form-item">
<view class="label">产权面积:</view>
<text>{{tableData.propertyArea?tableData.propertyArea+' ㎡': '无'}}</text>
</view>
</u-col>
<u-col span="6">
<view class="form-item">
<view class="label">实际使用面积:</view>
<text>{{tableData.actualUsableArea?tableData.actualUsableArea+' ㎡': '无'}}</text>
</view>
</u-col>
<u-col span="6">
<view class="form-item">
<view class="label">所属区域:</view>
<text>{{tableData.belongingRegion || '无'}}</text>
</view>
</u-col>
|
3c4666ce
杨鑫
'最新'
|
66
|
<!-- <u-col span="6">
|
3f950a0f
wesley88
1
|
67
68
69
70
|
<view class="form-item">
<view class="label">所属绿道段:</view>
<text>{{tableData.belongingGreenwaySection || '无'}}</text>
</view>
|
3c4666ce
杨鑫
'最新'
|
71
|
</u-col> -->
|
3f950a0f
wesley88
1
|
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
<u-col span="6">
<view class="form-item">
<view class="label">门牌号:</view>
<text>{{tableData.houseNumber || '无'}}</text>
</view>
</u-col>
<u-col span="6">
<view class="form-item">
<view class="label">归属部门:</view>
<text>{{tableData.belongingDepartment || '无'}}</text>
</view>
</u-col>
<u-col span="6">
<view class="form-item">
<view class="label">负责人:</view>
<text>{{tableData.head || '无'}}</text>
</view>
</u-col>
<u-col span="6">
<view class="form-item">
<view class="label">联系人:</view>
<text>{{tableData.contacts || '无'}}</text>
</view>
</u-col>
<u-col span="6">
<view class="form-item">
<view class="label">联系方式:</view>
<text>{{tableData.telephone || '无'}}</text>
</view>
</u-col>
<u-col span="12">
<view class="form-item">
<view class="label" style="width: 142rpx;">商铺描述:</view>
<view style='flex: 1;'>
<text>{{tableData.shopDescription || '无'}}</text>
</view>
</view>
</u-col>
<u-col span="12">
<view class="form-item">
<view class="label">建筑图纸:</view>
|
3f0a9b97
wesley88
1
|
113
|
<view style='flex: 1;' v-if="tableData.architecturalDrawings&&!tableData.architecturalDrawings.length>0">
|
3f950a0f
wesley88
1
|
114
115
116
|
<text>暂无</text>
</view>
</view>
|
3f0a9b97
wesley88
1
|
117
|
<view style="display: flex;flex-wrap: wrap;" v-if="tableData.architecturalDrawings&&tableData.architecturalDrawings.length>0">
|
3f950a0f
wesley88
1
|
118
119
120
121
122
123
124
125
|
<u-image @click="openimg1(tableData.architecturalDrawings,index)" :showLoading="true" v-for="(item,index) in tableData.architecturalDrawings" :src="imgUrl+item" width="100px" height="100px" border-radius="20" style="margin-bottom:25rpx;margin-left: 25rpx;"></u-image>
</view>
</u-col>
</u-row>
</view>
</view>
<view class="banner-item field" v-else>
|
1dbc0b2d
wesley88
1
|
126
127
128
129
130
131
|
<view class="banner-item-title">场地信息</view>
<view class="banner-item-form">
<u-row gutter="10">
<u-col span="6">
<view class="form-item">
<view class="label">场地类型:</view>
|
3f950a0f
wesley88
1
|
132
|
<text>{{tableData.venueType || '无'}}</text>
|
1dbc0b2d
wesley88
1
|
133
134
135
136
137
|
</view>
</u-col>
<u-col span="6">
<view class="form-item">
<view class="label">实际使用面积:</view>
|
3f950a0f
wesley88
1
|
138
|
<text>{{tableData.actualArea?tableData.actualArea+' ㎡': '无'}}</text>
|
1dbc0b2d
wesley88
1
|
139
140
141
142
143
|
</view>
</u-col>
<u-col span="6">
<view class="form-item">
<view class="label">所属区域:</view>
|
3f950a0f
wesley88
1
|
144
|
<text>{{tableData.district || '无'}}</text>
|
1dbc0b2d
wesley88
1
|
145
146
|
</view>
</u-col>
|
3f950a0f
wesley88
1
|
147
|
<u-col span="6">
|
1dbc0b2d
wesley88
1
|
148
|
<view class="form-item">
|
3f950a0f
wesley88
1
|
149
150
|
<view class="label">归属部门:</view>
<text>{{tableData.department || '无'}}</text>
|
1dbc0b2d
wesley88
1
|
151
|
</view>
|
3f950a0f
wesley88
1
|
152
153
154
155
|
</u-col>
<u-col span="6">
<view class="form-item">
<view class="label">负责人:</view>
|
72e22e26
杨鑫
最新修改
|
156
|
<text>{{tableData.head || '无'}}</text>
|
3f950a0f
wesley88
1
|
157
158
159
160
161
162
163
164
165
166
167
|
</view>
</u-col>
<u-col span="6">
<view class="form-item">
<view class="label">联系人:</view>
<text>{{tableData.contact || '无'}}</text>
</view>
</u-col>
<u-col span="6">
<view class="form-item">
<view class="label">联系方式:</view>
|
72e22e26
杨鑫
最新修改
|
168
|
<text>{{tableData.phoneNumber || '无'}}</text>
|
1dbc0b2d
wesley88
1
|
169
170
|
</view>
</u-col>
|
1dbc0b2d
wesley88
1
|
171
172
|
<u-col span="12">
<view class="form-item">
|
3f950a0f
wesley88
1
|
173
|
<view class="label" style="width: 142rpx;">场地描述:</view>
|
e65c626a
杨鑫
'改bug'
|
174
|
<view style='flex: 1;'>
|
3f950a0f
wesley88
1
|
175
176
177
178
179
180
181
182
|
<rich-text v-if="tableData.description" :nodes="tableData.description"></rich-text>
<text v-else>无</text>
</view>
</view>
</u-col>
<u-col span="12">
<view class="form-item">
<view class="label">规划图纸:</view>
|
3f0a9b97
wesley88
1
|
183
|
<view style='flex: 1;' v-if="tableData.planningDrawing&&!tableData.planningDrawing.length>0">
|
3f950a0f
wesley88
1
|
184
|
<text>暂无</text>
|
8f8dbfb8
wesley88
1
|
185
|
</view>
|
1dbc0b2d
wesley88
1
|
186
|
</view>
|
3f0a9b97
wesley88
1
|
187
|
<view style="display: flex;flex-wrap: wrap;" v-if="tableData.planningDrawing&&tableData.planningDrawing.length>0">
|
3f950a0f
wesley88
1
|
188
189
190
|
<u-image @click="openimg1(tableData.planningDrawing,index)" :showLoading="true" v-for="(item,index) in tableData.architecturalDrawings" :src="imgUrl+item" width="100px" height="100px" border-radius="20" style="margin-bottom:25rpx;margin-left: 25rpx;"></u-image>
</view>
|
1dbc0b2d
wesley88
1
|
191
192
193
|
</u-col>
</u-row>
</view>
|
0fd8b750
杨鑫
'最新落地1'
|
194
|
</view>
|
233bb387
杨鑫
Merge branch 'mas...
|
195
|
<view class="banner-item position" v-if="tableData.shopName" @click.stop="gomapApp(latitude,longitude)">
|
1dbc0b2d
wesley88
1
|
196
|
<view class="banner-item-title">位置信息</view>
|
233bb387
杨鑫
Merge branch 'mas...
|
197
198
199
|
<view style="margin-top: 16rpx;" @click.stop="gomapApp(latitude,longitude)">
<map style="width: 100%; height: 200rpx;" longitude="104.06730651855469" latitude="30.65681556429287" @click.stop="gomapApp(latitude,longitude)" >
<view class="position-info" @click.stop="gomapApp(latitude,longitude)">
|
1dbc0b2d
wesley88
1
|
200
201
|
<u-image :showLoading="true" :src="$imgUrl('/location-icon.png')" width="20rpx"
height="20rpx"></u-image>
|
233bb387
杨鑫
Merge branch 'mas...
|
202
|
<view @click.stop="gomapApp(latitude,longitude)">
|
8f8dbfb8
wesley88
1
|
203
204
205
|
<text v-if="tableData.shopName">{{tableData.detailedLocation}}</text>
<u-parse :html="tableData.description" v-else></u-parse>
</view>
|
e5b57447
杨鑫
'分包问卷'
|
206
|
</view>
|
1dbc0b2d
wesley88
1
|
207
208
|
</map>
</view>
|
e5b57447
杨鑫
'分包问卷'
|
209
|
</view>
|
1dbc0b2d
wesley88
1
|
210
|
<!-- <view class="banner-item other-business">
|
e5b57447
杨鑫
'分包问卷'
|
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
<view class="banner-item-title">周边商铺</view>
<view style="margin-top: 16rpx;">
<scroll-view class="scroll-view_H" scroll-x="true" scroll-left="120">
<view v-for="(item, index) in 10" :key="index" class="scroll-view-item_H">
<view class="business-card">
<u-image :showLoading="true" src="https://cdn.uviewui.com/uview/album/1.jpg" width="100%" height="210rpx"></u-image>
<view class="business-card-title">
这里是标题这里是标题这里是标题这里是标题这里是标题
</view>
<view class="business-card-item">租金:¥<span>1067</span>/月</view>
<view class="business-card-item">面积:<span>81</span>/m2</view>
</view>
</view>
</scroll-view>
</view>
</view> -->
|
1dbc0b2d
wesley88
1
|
227
228
|
</view>
<!-- 底部 -->
|
8f8dbfb8
wesley88
1
|
229
|
<view style="height: 100rpx;"></view>
|
1dbc0b2d
wesley88
1
|
230
231
|
<view class="page-footer">
<!-- <view class="footer-service">
|
e5b57447
杨鑫
'分包问卷'
|
232
233
234
|
<u-image :showLoading="true" :src="$imgUrl('/sevice-icon.png')" width="30rpx" height="30rpx"></u-image>
<text>客服</text>
</view> -->
|
1dbc0b2d
wesley88
1
|
235
236
237
238
239
240
|
<view class="footer-btn">
<!-- <u-button type="primary" @click="leaseAdd('/pages/intentionApply/intentionApply')" style="margin-right:10px;height: 35px;">意向申请</u-button> -->
<u-button type="success" style="width: 100%;border-radius: 10px;"
@click="leaseAdd('/pages/leaseAdd/leaseAdd')">租赁申请</u-button>
<!-- <u-button type="success" style="margin-left: unset;" @click="leaseAdd">广告申请</u-button> -->
</view>
|
e5b57447
杨鑫
'分包问卷'
|
241
242
243
244
|
<!-- <view class="footer-service">
<u-image :showLoading="true" :src="$imgUrl('/share-icon.png')" width="30rpx" height="30rpx"></u-image>
<text>分享</text>
</view> -->
|
1dbc0b2d
wesley88
1
|
245
246
247
|
</view>
</view>
|
3f535f30
杨鑫
'初始'
|
248
249
250
|
</template>
<script>
|
1dbc0b2d
wesley88
1
|
251
252
253
254
255
256
257
258
259
|
export default {
data() {
return {
tableData: {},
swiperList: [{
id: 0,
type: 'image',
url: this.$imgUrl('/img/1.jpg')
}],
|
8f8dbfb8
wesley88
1
|
260
|
imgUrl: this.$img,
|
1dbc0b2d
wesley88
1
|
261
262
263
264
|
latitude: null,
longitude: null,
qianzui: '',
moban: [],
|
e65c626a
杨鑫
'改bug'
|
265
|
resourcesId: '',
|
8f8dbfb8
wesley88
1
|
266
|
lunbo: []
|
1dbc0b2d
wesley88
1
|
267
268
269
270
271
|
};
},
filters: {
getimgurl(e) {
|
e65c626a
杨鑫
'改bug'
|
272
|
let c1 = e.split(',')
|
1dbc0b2d
wesley88
1
|
273
|
return c1;
|
3f535f30
杨鑫
'初始'
|
274
|
|
1dbc0b2d
wesley88
1
|
275
276
277
|
},
},
onLoad(option) {
|
3c4666ce
杨鑫
'最新'
|
278
|
|
3f0a9b97
wesley88
1
|
279
280
|
let ce = decodeURIComponent(option.item)
let data = JSON.parse(ce)
|
8f8dbfb8
wesley88
1
|
281
|
|
1dbc0b2d
wesley88
1
|
282
283
284
285
|
if (data.shopName) {
this.qianzui = 'sp'
} else {
this.qianzui = 'cd'
|
e5b57447
杨鑫
'分包问卷'
|
286
|
}
|
1dbc0b2d
wesley88
1
|
287
288
289
290
291
292
293
|
this.resourcesId = `${this.qianzui}${data.id}`
let paesize = {
pageNumber: 0,
pageSize: 10,
resourcesId: `${this.qianzui}${data.id}`
}
this.$http.sendRequest('/cereResourceStrategy/queryByResources', 'POST', paesize, 1).then(res => {
|
3f535f30
杨鑫
'初始'
|
294
|
|
1dbc0b2d
wesley88
1
|
295
296
297
298
299
300
301
302
303
304
305
306
307
308
|
this.moban = res.data.data
}).catch(err => {
console.log(err)
//请求失败
})
this.swiperList[0].url = data.displayMainImage || data.locationDiagram
this.tableData = data
if (typeof data.architecturalDrawings == 'string' && data.architecturalDrawings) {
this.tableData.architecturalDrawings = data.architecturalDrawings.split(',')
}
if (typeof data.planningDrawing == 'string' && data.planningDrawing) {
this.tableData.architecturalDrawings = data.planningDrawing.split(',')
}
// let location
|
8f8dbfb8
wesley88
1
|
309
|
if (data.mapPunctuation) {
|
1dbc0b2d
wesley88
1
|
310
311
|
this.latitude = parseFloat(data.mapPunctuation.split(',')[0])
this.longitude = parseFloat(data.mapPunctuation.split(',')[1])
|
8f8dbfb8
wesley88
1
|
312
|
} else if (data.mapMarker) {
|
1dbc0b2d
wesley88
1
|
313
314
315
|
this.latitude = parseFloat(data.mapMarker.split(',')[0])
this.longitude = parseFloat(data.mapMarker.split(',')[1])
}
|
8f8dbfb8
wesley88
1
|
316
|
console.log(this.latitude, this.longitude)
|
e65c626a
杨鑫
'改bug'
|
317
|
this.lunbo = []
|
8f8dbfb8
wesley88
1
|
318
|
let list1 = []
|
440bccda
wesley88
1
|
319
320
321
322
323
324
325
326
327
328
329
330
331
332
|
if(data.otherImageVideos) {
let c1 = {
type:'video',
url:this.imgUrl+data.otherImageVideos
}
this.lunbo.push(c1)
}
if(data.otherMedia) {
let c1 = {
type:'video',
url:this.imgUrl+data.otherMedia
}
this.lunbo.push(c1)
}
|
8f8dbfb8
wesley88
1
|
333
334
335
336
337
338
339
340
341
|
if (data.displayMainImage) {
list1 = data.displayMainImage.split(',')
} else if (data.locationDiagram) {
list1 = data.locationDiagram.split(',')
} else if (data.displayImage) {
list1 = data.displayImage.split(',')
}
for (let i = 0; i < list1.length; i++) {
let c1 = {
|
440bccda
wesley88
1
|
342
|
type:'img',
|
8f8dbfb8
wesley88
1
|
343
344
345
|
url:this.imgUrl+list1[i]
}
this.lunbo.push(c1)
|
e65c626a
杨鑫
'改bug'
|
346
|
}
|
440bccda
wesley88
1
|
347
|
|
8f8dbfb8
wesley88
1
|
348
|
console.error(this.lunbo)
|
1dbc0b2d
wesley88
1
|
349
350
351
352
353
|
// this.latitude = location.latitude;
// this.longitude = location.longitude;
},
methods: {
|
440bccda
wesley88
1
|
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
|
openimg1(urls,index) {
let list = urls.map(item=>{
return this.imgUrl + item
})
uni.previewImage({
current:index,
urls: list,
longPressActions: {
itemList: ['发送给朋友', '保存图片', '收藏'],
success: function(data) {
console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
},
fail: function(err) {
console.log(err.errMsg);
}
}
});
},
openimg2(index) {
let list =[]
for (let i = 0; i < this.lunbo.length; i++) {
if(this.lunbo[i].type == 'img') {
list.push(this.lunbo[i].url)
}
}
console.error(list)
uni.previewImage({
current:this.lunbo[0].type=='img'?index:index-1,
urls: list,
longPressActions: {
itemList: ['发送给朋友', '保存图片', '收藏'],
success: function(data) {
console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
},
fail: function(err) {
console.log(err.errMsg);
}
}
});
},
|
1dbc0b2d
wesley88
1
|
394
|
// 打开的点击事件,传经纬度和地点名
|
8f8dbfb8
wesley88
1
|
395
|
gomapApp(latitude, longitude, ) {
|
1dbc0b2d
wesley88
1
|
396
397
398
399
|
let url = "";
uni.openLocation({
latitude: latitude,
longitude: longitude,
|
72e22e26
杨鑫
最新修改
|
400
|
name:this.tableData.detailedLocation,
|
8f8dbfb8
wesley88
1
|
401
|
success: function() {
|
1dbc0b2d
wesley88
1
|
402
403
404
405
|
console.log('success');
}
});
},
|
84cb5fa7
wesley88
1
|
406
|
async leaseAdd(url) {
|
249d13ce
杨鑫
最新
|
407
408
409
410
411
412
413
414
415
416
417
418
419
|
if(!uni.getStorageSync('user').phone){
uni.showToast({
icon: 'none',
title: '请登录',
duration: 2000
});
setTimeout(() => {
uni.navigateTo({
url: '/pages/login/login'
})
}, 2000)
return
}
|
84cb5fa7
wesley88
1
|
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
|
let c1 = await this.$http.sendRequest('/cereBusinessInfo/queryByPage', 'POST',{"dataStatus":"1",
"pageNumber":0,
"pageSize":10,
"auditStatus":"1",
"applicant":uni.getStorageSync('user').phone,
"rentalResourcesId":(this.tableData.shopName?'sp':'cd') +this.tableData.id
},1).then(res => {
return res.data.data.records
})
console.error(c1)
if(c1.length>0) {
uni.showToast({
icon:'none',
title:'已申请,请勿重复提交'
})
return
}
|
1dbc0b2d
wesley88
1
|
438
439
440
441
|
this.$http.sendRequest('/cerePlatformMerchant/queryByPage', 'POST', {
"pageSize": 10,
pageNumber: 0,
phone: uni.getStorageSync('user').phone
|
e94be901
wesley88
1
|
442
|
},1).then(res => {
|
1dbc0b2d
wesley88
1
|
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
|
if (res.data.code == '20004' || res.data.code == '20003') {
uni.navigateTo({
url: '/pages/login/login'
})
}
if (res.data.data.content.length > 0) {
let c1 = res.data.data.content[0]
if (c1.checkState == '1') {
uni.showToast({
icon: 'none',
title: '商家申请正在审核中',
duration: 3000
});
} else if (c1.checkState == '3') {
uni.showToast({
icon: 'none',
title: '商家申请审核已被拒绝 请重新提交',
duration: 3000
});
setTimeout(() => {
uni.navigateTo({
url: '/pagesA/leaseAdd/leaseAdd'
})
}, 3000)
} else if (c1.checkState == '2') {
uni.navigateTo({
url: `${url}?ids=${this.qianzui+this.tableData.id}`
})
}
} else {
|
d64cd58f
wesley88
上传验收小程序
|
473
|
uni.showToast({
|
1dbc0b2d
wesley88
1
|
474
475
476
|
icon: 'none',
title: '请先申请成为商家',
duration: 3000
|
d64cd58f
wesley88
上传验收小程序
|
477
478
479
|
});
setTimeout(() => {
uni.navigateTo({
|
1dbc0b2d
wesley88
1
|
480
|
url: '/pagesA/leaseAdd/leaseAdd'
|
d64cd58f
wesley88
上传验收小程序
|
481
482
|
})
}, 3000)
|
d64cd58f
wesley88
上传验收小程序
|
483
|
}
|
1dbc0b2d
wesley88
1
|
484
|
})
|
d64cd58f
wesley88
上传验收小程序
|
485
|
|
1dbc0b2d
wesley88
1
|
486
487
|
},
moreZu() {
|
6106f9fa
杨鑫
'最新'
|
488
489
490
491
492
493
494
495
496
497
498
499
|
if(this.tableData.actualUsableArea){
uni.navigateTo({
url: `/pagesA/moreZu/moreZu?resourcesId=${this.resourcesId}&moprice=${this.tableData.actualUsableArea}`
})
}else{
uni.navigateTo({
url: `/pagesA/moreZu/moreZu?resourcesId=${this.resourcesId}&moprice=${this.tableData.actualArea}`
})
}
|
1dbc0b2d
wesley88
1
|
500
501
502
|
},
}
};
|
3f535f30
杨鑫
'初始'
|
503
504
505
|
</script>
<style scoped lang="scss">
|
1dbc0b2d
wesley88
1
|
506
507
|
@import 'details.scss';
</style>
|