首页
开源
资讯
活动
开源许可证
软件工程云服务
软件代码质量检测云服务
持续集成与部署云服务
社区个性化内容推荐服务
贡献审阅人推荐服务
群体化学习服务
重睛鸟代码扫描工具
登录
注册
代码拉取完成,页面将自动刷新
Watch
18
Star
314
Fork
97
程序员阿鑫
/
微信报修小程序V4.1
Fork 仓库
加载中
取消
确认
代码
Issues
8
Pull Requests
0
Wiki
0
统计
更新失败,请稍后重试!
Issues
/
详情
移除标识
内容风险标识
本任务被
标识为内容中包含有代码安全 Bug 、隐私泄露等敏感信息,仓库外成员不可访问
资讯详情
待办的
#I85GQ6
将军
创建于
2023-10-04 22:37
资讯详情 ``` <wxs src="../../utils/common.wxs" module="morejs" /> <swiper wx:if='{{info.img.length > 0}}' class="card-swiper {{DotStyle?'square-dot':'round-dot'}}" indicator-dots="true" circular="true" autoplay="true" interval="5000" duration="500" bindchange="cardSwiper" indicator-color="#8799a3" indicator-active-color="#0081ff" style="width: 750rpx; height: 429rpx; display: block; box-sizing: border-box"> <swiper-item wx:for="{{info.img}}" wx:key class="{{cardCur==index?'cur':''}}"> <view class="swiper-item" data-url='{{item}}' bindtap='showModal'> <image src="{{item}}" mode="aspectFill"></image> </view> </swiper-item> </swiper> <view class="cu-card dynamic "> <view class="cu-item shadow"> <view class="cu-list menu-avatar"> <view class="cu-item"> <image class="cu-avatar round lg" src="{{info.avatarurl}}"></image> <view class="content flex-sub"> <!-- <view class=" text-red "></view> <text class=" text-red " wx:if="{{userroot}}">超级管理员</text> <text class=" text-red " wx:else>普通用户</text> --> <view>{{info.nickname}} <view class="cu-tag {{info.gender==0?'cuIcon-female bg-pink':'cuIcon-male bg-blue'}}"> </view> </view> <view class="text-gray text-sm flex justify-between"> {{morejs.format(info._createTime)}} </view> </view> <view class="cu-capsule radius"> <view class="cu-tag bg-{{info.gender== 0?'red':'blue'}} " style="position: relative; left: -26rpx; top: 0rpx" > <text class="cuIcon-phone"></text> </view> <view class="cu-tag line-{{info.gender== 0?'red':'blue'}} wx:if='{{info.phone}}' " bindtap='makePhoneCall' style="position: relative; left: -26rpx; top: 0rpx" > 联系Ta </view> </view> </view> </view> <!-- 界面布局 --> <view class="flex"> {{info.detail}} </view> <view class="flex justify-between"> <view class="cu-bar bg-white "> <view class="action"> <text class="cuIcon-title text-orange "></text> 评论留言 <text class="cuIcon-title text-white "></text> <text class="cu-btn round bg-blue sm" data-comment_id="{{item._id}}" data-index="{{index}}" bindtap="showModalView" data-target="DialogModal1" >发表评论</text> </view> </view> <view class="text-gray text-sm text-right padding"> <text class="cuIcon-attentionfill margin-lr-xs"></text> {{info.view}} <text class="cuIcon-messagefill margin-lr-xs"></text>{{commentInfo.length}} </view> </view> <view class="cu-list menu-avatar comment solids-top" wx:for='{{commentInfo}}' wx:key='index'> <view class="cu-item"> <image class="cu-avatar round" src='{{item.logo}}'></image> <view class="content"> <view class="text-grey">{{item.realName}}\t <!-- <text class="text-red" wx:if="{{userroot}}" >超级管理员</text> <text wx:else>普通用户</text> --> </view> <view class="text-gray text-content text-df"> <view class="text-gray text-df">发表于 {{morejs.timelog(item._createTime)}} <text wx:if='{{name===name }}' bindtap='deleteComment' data-comment_id='{{item._id}}'> <text class="cuIcon-deletefill text-red"></text>删除 </text> <!-- <text bindtap='InputBottom' data-comment_id='{{item._id}}'><text class="text-red "></text>发表评论 </text> --> <!-- <text class="text-orange text-df" data-comment_id="{{item._id}}" data-index="{{index}}" bindtap="showModalView" data-target="DialogModal1" >发表评论</text> --> </view> </view> <view class="bg-pale "> <view class="flex"> <view class="flex-sub">{{item.comment}}</view> </view> </view> </view> </view> </view> </view> </view> <!-- <view class="cu-bar foot input {{InputBottom!=0?'cur':''}}" style="bottom:{{InputBottom}}"> <view class="action"> <text class="cuIcon-sound text-grey"></text> </view> <input class="solid-bottom" bindfocus="InputFocus" bindblur="InputBlur" placeholder="请输入评论内容" adjust-position="{{false}}" focus="{{false}}" maxlength="50" value='{{comment}}' bindinput="inputComment" cursor-spacing="10"></input> <view class="action"> <text class="cuIcon-emojifill text-grey"></text> </view> <button class="cu-btn bg-green shadow" bindtap='postComment'>发送</button> </view> --> <!-- <view class="cu-modal {{modalName=='Image'?'show':''}}" catchtap="hideModal"> <view class="cu-dialog"> <image class="bg-img" mode='widthFix' src='{{url}}'></image> </view> </view> --> <view class="cu-modal {{modalName=='DialogModal1'?'show':''}}"> <view class="cu-dialog"> <view class="cu-bar bg-white justify-end"> <view class="content">发表评论</view> <view class="action" bindtap="hideModal"> <text class="cuIcon-close text-red"></text> </view> </view> <view class="padding-xl"> <view style="margin-bottom: 20rpx;font-weight: bold;"> </view> <textarea name="adminTallText" id="" cols="30" rows="10" bindinput="inputComment" placeholder="请输入评论内容" class="weixiuText"></textarea> </view> <view class="cu-bar bg-white justify-end"> <view class="action"> <button class="cu-btn line-green text-green" bindtap="hideModal">取消</button> <button class="cu-btn bg-green margin-left" bindtap="postComment">确定</button> </view> </view> </view> </view> ```
资讯详情 ``` <wxs src="../../utils/common.wxs" module="morejs" /> <swiper wx:if='{{info.img.length > 0}}' class="card-swiper {{DotStyle?'square-dot':'round-dot'}}" indicator-dots="true" circular="true" autoplay="true" interval="5000" duration="500" bindchange="cardSwiper" indicator-color="#8799a3" indicator-active-color="#0081ff" style="width: 750rpx; height: 429rpx; display: block; box-sizing: border-box"> <swiper-item wx:for="{{info.img}}" wx:key class="{{cardCur==index?'cur':''}}"> <view class="swiper-item" data-url='{{item}}' bindtap='showModal'> <image src="{{item}}" mode="aspectFill"></image> </view> </swiper-item> </swiper> <view class="cu-card dynamic "> <view class="cu-item shadow"> <view class="cu-list menu-avatar"> <view class="cu-item"> <image class="cu-avatar round lg" src="{{info.avatarurl}}"></image> <view class="content flex-sub"> <!-- <view class=" text-red "></view> <text class=" text-red " wx:if="{{userroot}}">超级管理员</text> <text class=" text-red " wx:else>普通用户</text> --> <view>{{info.nickname}} <view class="cu-tag {{info.gender==0?'cuIcon-female bg-pink':'cuIcon-male bg-blue'}}"> </view> </view> <view class="text-gray text-sm flex justify-between"> {{morejs.format(info._createTime)}} </view> </view> <view class="cu-capsule radius"> <view class="cu-tag bg-{{info.gender== 0?'red':'blue'}} " style="position: relative; left: -26rpx; top: 0rpx" > <text class="cuIcon-phone"></text> </view> <view class="cu-tag line-{{info.gender== 0?'red':'blue'}} wx:if='{{info.phone}}' " bindtap='makePhoneCall' style="position: relative; left: -26rpx; top: 0rpx" > 联系Ta </view> </view> </view> </view> <!-- 界面布局 --> <view class="flex"> {{info.detail}} </view> <view class="flex justify-between"> <view class="cu-bar bg-white "> <view class="action"> <text class="cuIcon-title text-orange "></text> 评论留言 <text class="cuIcon-title text-white "></text> <text class="cu-btn round bg-blue sm" data-comment_id="{{item._id}}" data-index="{{index}}" bindtap="showModalView" data-target="DialogModal1" >发表评论</text> </view> </view> <view class="text-gray text-sm text-right padding"> <text class="cuIcon-attentionfill margin-lr-xs"></text> {{info.view}} <text class="cuIcon-messagefill margin-lr-xs"></text>{{commentInfo.length}} </view> </view> <view class="cu-list menu-avatar comment solids-top" wx:for='{{commentInfo}}' wx:key='index'> <view class="cu-item"> <image class="cu-avatar round" src='{{item.logo}}'></image> <view class="content"> <view class="text-grey">{{item.realName}}\t <!-- <text class="text-red" wx:if="{{userroot}}" >超级管理员</text> <text wx:else>普通用户</text> --> </view> <view class="text-gray text-content text-df"> <view class="text-gray text-df">发表于 {{morejs.timelog(item._createTime)}} <text wx:if='{{name===name }}' bindtap='deleteComment' data-comment_id='{{item._id}}'> <text class="cuIcon-deletefill text-red"></text>删除 </text> <!-- <text bindtap='InputBottom' data-comment_id='{{item._id}}'><text class="text-red "></text>发表评论 </text> --> <!-- <text class="text-orange text-df" data-comment_id="{{item._id}}" data-index="{{index}}" bindtap="showModalView" data-target="DialogModal1" >发表评论</text> --> </view> </view> <view class="bg-pale "> <view class="flex"> <view class="flex-sub">{{item.comment}}</view> </view> </view> </view> </view> </view> </view> </view> <!-- <view class="cu-bar foot input {{InputBottom!=0?'cur':''}}" style="bottom:{{InputBottom}}"> <view class="action"> <text class="cuIcon-sound text-grey"></text> </view> <input class="solid-bottom" bindfocus="InputFocus" bindblur="InputBlur" placeholder="请输入评论内容" adjust-position="{{false}}" focus="{{false}}" maxlength="50" value='{{comment}}' bindinput="inputComment" cursor-spacing="10"></input> <view class="action"> <text class="cuIcon-emojifill text-grey"></text> </view> <button class="cu-btn bg-green shadow" bindtap='postComment'>发送</button> </view> --> <!-- <view class="cu-modal {{modalName=='Image'?'show':''}}" catchtap="hideModal"> <view class="cu-dialog"> <image class="bg-img" mode='widthFix' src='{{url}}'></image> </view> </view> --> <view class="cu-modal {{modalName=='DialogModal1'?'show':''}}"> <view class="cu-dialog"> <view class="cu-bar bg-white justify-end"> <view class="content">发表评论</view> <view class="action" bindtap="hideModal"> <text class="cuIcon-close text-red"></text> </view> </view> <view class="padding-xl"> <view style="margin-bottom: 20rpx;font-weight: bold;"> </view> <textarea name="adminTallText" id="" cols="30" rows="10" bindinput="inputComment" placeholder="请输入评论内容" class="weixiuText"></textarea> </view> <view class="cu-bar bg-white justify-end"> <view class="action"> <button class="cu-btn line-green text-green" bindtap="hideModal">取消</button> <button class="cu-btn bg-green margin-left" bindtap="postComment">确定</button> </view> </view> </view> </view> ```
评论 (
0
)
将军
创建了
任务
登录
后才可以发表评论
状态
待办的
待办的
进行中
已完成
已关闭
负责人
未设置
标签
未设置
标签管理
里程碑
未关联里程碑
未关联里程碑
Pull Requests
未关联
未关联
关联的 Pull Requests 被合并后可能会关闭此 issue
分支
未关联
未关联
master
cxyax
开始日期   -   截止日期
-
置顶选项
不置顶
置顶等级:高
置顶等级:中
置顶等级:低
优先级
不指定
严重
主要
次要
不重要
参与者(1)