|
|
@@ -50,7 +50,7 @@
|
|
|
<button class="footer-box-record" @click="goRecord()">上传记录</button>
|
|
|
</view>
|
|
|
<view v-if="current == 1">
|
|
|
- <view class="active-box" v-for="(item,index) in activiList" :key="index" style="flex-direction: column;" :class="index===activiList.length-1?'marginB40':''">
|
|
|
+<!-- <view class="active-box" v-for="(item,index) in activiList" :key="index" style="flex-direction: column;" :class="index===activiList.length-1?'marginB40':''">
|
|
|
<view class="active-content-box-img margin-top-3">
|
|
|
<view v-for="(img,indexImg) in item.pic_list" :key="indexImg" class="marginR5">
|
|
|
<image :src="img.pic_url_resize" mode="aspectFill" @click="showLarge(item.pic_list,indexImg)"></image>
|
|
|
@@ -60,13 +60,13 @@
|
|
|
<image src="/static/edit-icon.png" mode="aspectFit" v-if="item.edit_auth" @click="goEditPage(item.id)"></image>
|
|
|
<image src="/static/del-icon.png" mode="aspectFit" v-if="item.del_auth" @click="delProcess(item.id)"></image>
|
|
|
</view>
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
|
|
|
<button class="footer-box-record" @click="goFiles()">上传文件</button>
|
|
|
|
|
|
</view>
|
|
|
<view v-if="current == 2">
|
|
|
- 评论
|
|
|
+ <button class="footer-box-record" @click="goComment()">上传评论</button>
|
|
|
</view>
|
|
|
<share-modal @closeShare="closeShare" :isShowShare="isShowShareModal" :class="{ shareParent: isShowShareModal}"></share-modal>
|
|
|
|
|
|
@@ -336,7 +336,12 @@ export default {
|
|
|
uni.navigateTo({
|
|
|
url:'./files?bId=' + this.branchId + '&aId=' + this.activeId + '&types=add'
|
|
|
})
|
|
|
- }
|
|
|
+ },
|
|
|
+ goComment(){
|
|
|
+ uni.navigateTo({
|
|
|
+ url:'./comment?bId=' + this.branchId + '&aId=' + this.activeId + '&types=add'
|
|
|
+ })
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|