| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676 |
- <template>
- <view class="container">
- <view class="status-bar" :style="{ height: statusBarHeight + 'px' }"></view>
- <view class="top">
- <image class="return" @click="goBack" src="/static/image/back_white.png"></image>
- <text>任务详情</text>
- </view>
- <scroll-view class="content" scroll-y>
- <!-- 任务卡片 -->
- <view class="task-card">
- <view class="card-header">
- <view class="card-title">{{ taskData.title }}</view>
- </view>
- <view class="card-meta">
- <view class="meta-tag">{{ taskData.tag }}</view>
- <view class="meta-id">ID:{{ taskData.id }}</view>
- </view>
- </view>
- <!-- 任务信息 -->
- <view class="info-section">
- <view class="section-header">
- <view class="section-indicator"></view>
- <text class="section-title">任务信息</text>
- </view>
- <view class="info-list">
- <view class="info-item">
- <text class="info-label">费用分摊:</text>
- <text class="info-value">{{ taskInfo.costSharing }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">归属项目:</text>
- <text class="info-value">{{ taskInfo.belongProject }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">归属部门:</text>
- <text class="info-value">{{ taskInfo.belongDept }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">归属产品:</text>
- <text class="info-value">{{ taskInfo.belongProduct }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">申请补充直播任务:</text>
- <text class="info-value">{{ taskInfo.applySupplementLive }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">补充任务直播间ID:</text>
- <text class="info-value">{{ taskInfo.supplementRoomId }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">申请补充任务原因:</text>
- <text class="info-value">{{ taskInfo.supplementReason }}</text>
- </view>
- </view>
- </view>
- <!-- 内容信息 -->
- <view class="info-section">
- <view class="section-header">
- <view class="section-indicator"></view>
- <text class="section-title">内容信息</text>
- </view>
- <view class="info-list">
- <view class="info-item">
- <text class="info-label">交付物名称:</text>
- <text class="info-value">{{ contentInfo.deliverableName }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">交付物ID:</text>
- <text class="info-value">{{ contentInfo.deliverableId }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">直播间地址:</text>
- <text class="info-value">{{ contentInfo.liveRoomUrl }}</text>
- <text class="copy-btn" @click="copyToClipboard(contentInfo.liveRoomUrl)">复制</text>
- </view>
- <view class="info-item">
- <text class="info-label">推流地址:</text>
- <text class="info-value">{{ contentInfo.pushUrl }}</text>
- <text class="copy-btn" @click="copyToClipboard(contentInfo.pushUrl)">复制</text>
- </view>
- <view class="info-item">
- <text class="info-label">开播地址:</text>
- <text class="info-value">{{ contentInfo.startUrl }}</text>
- <text class="copy-btn" @click="copyToClipboard(contentInfo.startUrl)">复制</text>
- </view>
- <view class="info-item">
- <text class="info-label">直播回放:</text>
- <text class="info-value">{{ contentInfo.liveReplay }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">播放视频:</text>
- <text class="info-value">{{ contentInfo.playVideo }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">下载视频:</text>
- <text class="info-value">{{ contentInfo.downloadVideo }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">观众人数:</text>
- <text class="info-value">{{ contentInfo.viewerCount }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">有效观看:</text>
- <text class="info-value">{{ contentInfo.validView }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">情况说明:</text>
- <text class="info-value">{{ contentInfo.description }}</text>
- </view>
- </view>
- </view>
- <!-- 客户信息 -->
- <view class="info-section">
- <view class="section-header">
- <view class="section-indicator"></view>
- <text class="section-title">客户信息</text>
- </view>
- <view class="client-list">
- <view class="client-item" v-for="(item, index) in clientList" :key="index">
- <view class="client-info">
- <image class="avatar" src="/static/image/my_heads_icon.png"></image>
- <view class="client-txt">
- <view class="client-name">
- {{ item.name }}
- <text class="client-level">{{ item.level }}</text>
- </view>
- <view class="client-hospital">
- <text>{{ item.hospital }} </text>
- <view class="line"></view>
- <text>{{ item.department }}</text>
- </view>
- </view>
- </view>
- <view class="client-stats">
- <view class="stat-item"><text class="num">{{ item.taskCount }} </text>任务</view>
- <view class="stat-item"><text class="num">{{ item.points }} </text>积分</view>
- </view>
- </view>
- </view>
- </view>
- <!-- 补充材料 -->
- <view class="info-section">
- <view class="section-header">
- <view class="section-indicator"></view>
- <text class="section-title">补充材料</text>
- </view>
- <view class="info-list">
- <view class="info-item">
- <text class="info-label">交付物名称:</text>
- <text class="info-value">{{ supplementMaterial.deliverableName }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">情况说明:</text>
- <text class="info-value">{{ supplementMaterial.description }}</text>
- </view>
- <view class="info-item column">
- <text class="info-label">附件:</text>
- <view class="attachment-item">
- <view class="left">
- <image class="img" src="/static/image/icon_attachment.png"></image>
- <view class="txt-item">
- <view class="attachment-name">{{ supplementMaterial.attachment.name }}</view>
- <view class="attachment-size">{{ supplementMaterial.attachment.size }}</view>
- </view>
- </view>
- <image class="download-btn" @click="downloadAttachment"
- src="/static/image/icon_downlad.png"></image>
- </view>
- </view>
- </view>
- </view>
- <!-- 审批信息 -->
- <view class="info-section">
- <view class="section-header">
- <view class="section-indicator"></view>
- <text class="section-title">审批信息</text>
- </view>
- <view class="approval-list">
- <view class="approval-item" v-for="(item, index) in approvalInfo" :key="index">
- <view class="left">
- <view class="avatar-box">
- <image class="avatar" src="/static/image/my_heads_icon.png"></image>
- <image class="icon" src="/static/image/icon_wait.png"></image>
- <!-- <image class="icon" src="/static/image/icon_pass.png"></image>
- <image class="icon" src="/static/image/icon_refuse.png"></image> -->
- </view>
- <view class="approval-user">
- <view class="user-name">{{ item.name }}</view>
- <view class="user-status" :style="{ color: item.statusColor }">{{ item.status }}</view>
- </view>
- </view>
- <text class="approval-time">{{ item.time }}</text>
- <view class="approval-line" v-if="index < approvalInfo.length - 1"></view>
- </view>
- </view>
- <view class="reason">
- 费用分摊部门填写错误,应该是学术研究事业部,请修改后重新提交。
- </view>
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- // 仅获取微信小程序状态栏高度,无多余逻辑
- statusBarHeight: uni.getSystemInfoSync().statusBarHeight,
- taskId: '',
- // 任务基础信息
- taskData: {
- title: '王小明医师学术讲座',
- tag: '学术讲座',
- id: 'CRW0000001022345'
- },
- // 任务信息
- taskInfo: {
- costSharing: '湖北省药学服务公司',
- belongProject: '项目名称',
- belongDept: '中药事业部',
- belongProduct: '201',
- applySupplementLive: '否',
- supplementRoomId: '-',
- supplementReason: '-'
- },
- // 内容信息
- contentInfo: {
- deliverableName: '直播',
- deliverableId: '-',
- liveRoomUrl: 'http://www.zhibotest123333...',
- pushUrl: 'http://www.zhibotest123123...',
- startUrl: 'http://www.zhibotest123123...',
- liveReplay: '-',
- playVideo: '-',
- downloadVideo: '-',
- viewerCount: '203',
- validView: '198',
- description: '这是一段说明,这是一段说明,一行展示不完就换行展示。'
- },
- // 客户信息列表
- clientList: [{
- name: '王小明',
- level: '一级',
- hospital: '湖南省人民医院',
- department: '口腔科',
- taskCount: '1',
- points: '30'
- },
- {
- name: '王小明',
- level: '一级',
- hospital: '湖南省人民医院',
- department: '口腔科',
- taskCount: '1',
- points: '30'
- }
- ],
- // 补充材料
- supplementMaterial: {
- deliverableName: '-',
- description: '-',
- attachment: {
- name: '文件名称文件名称.pdf',
- size: '128kb'
- }
- },
- // 审批信息
- approvalInfo: [{
- name: '王彬彬',
- status: '发起申请',
- statusColor: '#4CAF50',
- time: '2025-03-04 18:00'
- },
- {
- name: '王小明',
- status: '待审核',
- statusColor: '#FF9800',
- time: ''
- }
- ]
- }
- },
- onLoad(options) {
- if (options.id) {
- this.taskId = options.id
- this.loadData()
- }
- },
- methods: {
- goBack() {
- uni.navigateBack()
- },
- async loadData() {
- try {
- uni.showLoading({
- title: '加载中...'
- })
- // 实际项目中替换为接口请求:const res = await getTaskDetail({ id: this.taskId })
- // 这里模拟接口赋值
- uni.hideLoading()
- } catch (e) {
- uni.hideLoading()
- console.error('加载数据失败', e)
- }
- },
- // 复制到剪贴板
- copyToClipboard(text) {
- uni.setClipboardData({
- data: text,
- success() {
- uni.showToast({
- title: '复制成功',
- icon: 'success'
- })
- }
- })
- },
- // 下载附件
- downloadAttachment() {
- uni.showToast({
- title: '开始下载附件',
- icon: 'none'
- })
- // 实际项目中添加下载逻辑:uni.downloadFile + uni.saveFile
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- min-height: 100vh;
- background: #f5f5f5;
- display: flex;
- flex-direction: column;
- height: auto;
- &::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- width: 100%;
- height: 532rpx;
- background: linear-gradient(180deg, rgba(56, 139, 255, 0.79) 0%, rgba(56, 139, 255, 0) 100%);
- }
- }
- .top {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 88rpx;
- position: relative;
- font-weight: 600;
- font-size: 36rpx;
- color: #FFFFFF;
- .return {
- position: absolute;
- left: 32rpx;
- width: 40rpx;
- height: 40rpx;
- }
- }
- .content {
- flex: 1;
- padding: 24rpx;
- box-sizing: border-box;
- }
- /* 任务卡片样式 */
- .task-card {
- background: #fff;
- border-radius: 16rpx;
- padding: 24rpx;
- margin-bottom: 24rpx;
- .card-header {
- .card-title {
- font-weight: 500;
- font-size: 36rpx;
- color: #333333;
- margin-bottom: 24rpx;
- }
- }
- .card-meta {
- display: flex;
- align-items: center;
- gap: 16rpx;
- font-size: 24rpx;
- color: #666;
- .meta-tag {
- border-radius: 8rpx 8rpx 8rpx 8rpx;
- border: 2rpx solid rgba(56, 139, 255, 0.4);
- padding: 4rpx 8rpx;
- color: #388BFF;
- }
- }
- }
- /* 通用信息区块样式 */
- .info-section {
- background: #fff;
- border-radius: 16rpx;
- padding: 24rpx;
- margin-bottom: 24rpx;
- .section-header {
- display: flex;
- align-items: center;
- margin-bottom: 24rpx;
- .section-indicator {
- width: 6rpx;
- height: 32rpx;
- background: #388BFF;
- border-radius: 3rpx;
- margin-right: 16rpx;
- }
- .section-title {
- font-weight: 600;
- font-size: 32rpx;
- color: #333333;
- }
- }
- .info-list {
- .info-item {
- display: flex;
- margin-bottom: 24rpx;
- &:last-child {
- margin-bottom: 0;
- }
- .info-label {
- width: 50%;
- font-size: 28rpx;
- color: #666;
- flex-shrink: 0;
- }
- .info-value {
- flex: 1;
- text-align: end;
- font-size: 28rpx;
- color: #333;
- }
- .copy-btn {
- margin-left: 16rpx;
- color: #2196F3;
- font-size: 24rpx;
- cursor: pointer;
- }
- .column {
- flex-direction: column;
- }
- .attachment-item {
- margin-top: 24rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- gap: 16rpx;
- background: #F7F8FA;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- .left {
- display: flex;
- align-items: center;
- .img {
- width: 72rpx;
- height: 72rpx;
- margin-right: 24rpx;
- }
- .txt-item {
- .attachment-name {
- font-size: 28rpx;
- color: #333;
- }
- .attachment-size {
- font-size: 24rpx;
- color: #999;
- }
- }
- }
- .download-btn {
- width: 32rpx;
- height: 32rpx;
- }
- }
- }
- }
- }
- /* 客户信息样式 */
- .client-list {
- .client-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 16rpx 0;
- &:last-child {
- border-bottom: none;
- }
- .client-info {
- display: flex;
- align-items: center;
- .avatar {
- width: 88rpx;
- height: 88rpx;
- margin-right: 24rpx;
- }
- .client-txt {
- .client-name {
- font-size: 28rpx;
- font-weight: 500;
- color: #333;
- .client-level {
- margin-left: 8rpx;
- padding: 2rpx 8rpx;
- background: #FFF6E5;
- color: #C89743;
- font-size: 22rpx;
- border-radius: 8rpx;
- }
- }
- }
- .client-hospital {
- font-size: 24rpx;
- color: #666;
- margin-top: 4rpx;
- display: flex;
- align-items: center;
- .line {
- width: 2rpx;
- height: 28rpx;
- background: #EAEBEE;
- margin: 0 24rpx;
- }
- }
- }
- .client-stats {
- display: flex;
- gap: 24rpx;
- font-size: 24rpx;
- color: #999999;
- .stat-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- .num {
- font-weight: 500;
- font-size: 28rpx;
- color: #333333;
- }
- }
- }
- }
- }
- /* 审批信息样式 */
- .approval-list {
- .approval-item {
- position: relative;
- padding-left: 24rpx;
- margin-bottom: 68rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- &:last-child {
- margin-bottom: 0;
- }
- .left {
- display: flex;
- align-items: center;
- .avatar-box {
- width: 80rpx;
- height: 80rpx;
- margin-right: 32rpx;
- position: relative;
- .avatar {
- width: 100%;
- height: 100%;
- }
- .icon {
- position: absolute;
- bottom: 0;
- right: 0;
- width: 32rpx;
- height: 32rpx;
- }
- }
- .approval-user {
- gap: 12rpx;
- .user-name {
- font-weight: 500;
- font-size: 28rpx;
- color: #333;
- }
- .user-status {
- font-size: 24rpx;
- }
- }
- }
- .approval-time {
- font-size: 24rpx;
- color: #999;
- margin-top: 4rpx;
- }
- }
- .approval-line {
- position: absolute;
- left: 64rpx;
- bottom: -64rpx;
- width: 1rpx;
- height: 56rpx;
- background: #BFD8FF;
- }
- }
- .reason {
- font-size: 28rpx;
- color: #666666;
- line-height: 40rpx;
- margin-left: 136rpx;
- }
- </style>
|