|
@@ -60,6 +60,15 @@
|
|
|
size="mini"
|
|
|
></u-tag>
|
|
|
</view>
|
|
|
+ <view class="scoped-list-more-info" v-if="curRoles == 1 || curRoles == 3 || curRoles == 5 || curRoles == 6">
|
|
|
+ 报备人:{{item.create_user.nickname}}
|
|
|
+ <u-tag
|
|
|
+ style="margin-left: 10px;"
|
|
|
+ text="复制"
|
|
|
+ type="primary"
|
|
|
+ size="mini"
|
|
|
+ ></u-tag>
|
|
|
+ </view>
|
|
|
<view class="tool">
|
|
|
<u-icon
|
|
|
v-if="item.report_step <= 1 && item.expire_time == 0"
|
|
@@ -237,7 +246,8 @@ export default {
|
|
|
defaultText: '轻轻上拉 查看更多',
|
|
|
nomoreText: '实在没有了',
|
|
|
currnetPage: 1
|
|
|
- }
|
|
|
+ },
|
|
|
+ curRoles: '',
|
|
|
};
|
|
|
},
|
|
|
onLoad(params) {
|
|
@@ -270,7 +280,6 @@ export default {
|
|
|
// 项目筛选
|
|
|
uni.api.estate.apiestatelist({page_size: 100}).then(res => {
|
|
|
let propertyList = res.list || []
|
|
|
- console.log(res)
|
|
|
if (propertyList.length > 0) {
|
|
|
that.filterData[1]['submenu'] = propertyList.map(function(val, index) {
|
|
|
return { name: val.estate_name, value: val.estate_id };
|
|
@@ -280,6 +289,8 @@ export default {
|
|
|
})
|
|
|
|
|
|
this.getDataList()
|
|
|
+
|
|
|
+ this.curRoles = uni.getStorageSync('MD_userInfo2') ? uni.getStorageSync('MD_userInfo2').roles : ''
|
|
|
},
|
|
|
onReachBottom() {
|
|
|
if (that.loadmore.status == 'nomore') return;
|