|
@@ -11,7 +11,7 @@
|
|
<text class="bottom-bt-button" @click="submitComment">发送</text>
|
|
<text class="bottom-bt-button" @click="submitComment">发送</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <image src="../../static/imgs/cirlce/add.png" mode="widthFix" class="add" @click="addCircle"></image>
|
|
|
|
|
|
+ <image v-if='hidden!="隐藏"' src="../../static/imgs/cirlce/add.png" mode="widthFix" class="add" @click="addCircle"></image>
|
|
<u-action-sheet :show="show2" @close="show2 = false" @select="sheetSelect" :actions="actions2"
|
|
<u-action-sheet :show="show2" @close="show2 = false" @select="sheetSelect" :actions="actions2"
|
|
cancelText="取消"></u-action-sheet>
|
|
cancelText="取消"></u-action-sheet>
|
|
</view>
|
|
</view>
|
|
@@ -44,6 +44,7 @@
|
|
interactionFlag: '',
|
|
interactionFlag: '',
|
|
|
|
|
|
},
|
|
},
|
|
|
|
+ hidden:'',
|
|
userInfo: {},
|
|
userInfo: {},
|
|
circleId: '',
|
|
circleId: '',
|
|
downOption: {
|
|
downOption: {
|
|
@@ -76,9 +77,11 @@
|
|
};
|
|
};
|
|
},
|
|
},
|
|
onLoad(options) {
|
|
onLoad(options) {
|
|
|
|
+
|
|
that = this
|
|
that = this
|
|
this.circleId = options.id
|
|
this.circleId = options.id
|
|
this.userInfo = uni.getStorageSync("userInfo")
|
|
this.userInfo = uni.getStorageSync("userInfo")
|
|
|
|
+
|
|
// 需要固定swiper的高度 (需减去悬浮tabs的高度64rpx)
|
|
// 需要固定swiper的高度 (需减去悬浮tabs的高度64rpx)
|
|
// this.height = uni.getSystemInfoSync().windowHeight - uni.upx2px(100) + 'px';
|
|
// this.height = uni.getSystemInfoSync().windowHeight - uni.upx2px(100) + 'px';
|
|
// this.tabHeight = uni.upx2px(100) + 'px';
|
|
// this.tabHeight = uni.upx2px(100) + 'px';
|
|
@@ -126,6 +129,14 @@
|
|
return promise
|
|
return promise
|
|
},
|
|
},
|
|
loadData(refresh) {
|
|
loadData(refresh) {
|
|
|
|
+ this.$request.baseRequest('admin.dictData', 'list', {
|
|
|
|
+ dictType:'circle_friends'
|
|
|
|
+ }, failres => {
|
|
|
|
+
|
|
|
|
+ }).then( res => {
|
|
|
|
+ console.log(res,11111)
|
|
|
|
+ this.hidden=res.data.items[0].dictLabel
|
|
|
|
+ })
|
|
this.$request.baseRequest('admin.unimall.circleFriendsInfo', 'list', {
|
|
this.$request.baseRequest('admin.unimall.circleFriendsInfo', 'list', {
|
|
page: this.requestParams.pageNo,
|
|
page: this.requestParams.pageNo,
|
|
limit: this.requestParams.pageSize,
|
|
limit: this.requestParams.pageSize,
|