5 Commits

Author SHA1 Message Date
xuli3099
56f050e285 Merge branch 'develop' into develop-intranet 2025-08-25 12:28:45 +08:00
xuli3099
d49dd05baf 修改详情内容 2025-08-25 12:28:13 +08:00
xuli3099
06b537c6da Merge branch 'develop' into develop-intranet 2025-08-25 10:04:41 +08:00
xuli3099
e34fa23547 增加审批详情 2025-08-25 10:04:13 +08:00
xuli3099
48912d6319 修改为外网 2025-08-22 22:16:36 +08:00
10 changed files with 189 additions and 14 deletions

View File

@@ -4,5 +4,5 @@ export const AGREEWELCOME_KEY="agreewelcome";
// clientId 默认写2
export const CLIENT_ID="2";
// #区分内外网 //1-内网2-外网
export const NETWORK_ENV=1;
export const NETWORK_ENV=2;

View File

@@ -115,6 +115,12 @@
"navigationBarTitleText": ""
}
},
{
"path": "pages/notice/waitApproveDetail",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "pages/userinfo/userinfo",
"style": {

View File

@@ -82,7 +82,10 @@ const mescrollRef = ref(null);
const upOption = ref({
page: { num: 0, size: 10 },
noMoreSize: 5,
empty: { tip: '~ 空空如也 ~' },
empty: {
tip: '~ 空空如也 ~',
icon: "../../static/images/mescroll-empty.png"
},
textLoading: '加载中...',
textNoMore: '已经到底了'
});

View File

@@ -89,7 +89,10 @@ const mescrollRef = ref(null);
const upOption = ref({
page: { num: 0, size: 10 },
noMoreSize: 5,
empty: { tip: '~ 空空如也 ~' },
empty: {
tip: '~ 空空如也 ~',
icon: "../../static/images/mescroll-empty.png"
},
textLoading: '加载中...',
textNoMore: '已经到底了'
});

View File

@@ -258,7 +258,9 @@ const submitForm = () => {
param.runEnv = networkEnv.value;
// #ifdef H5
param.uniqCode = 'b6ffbbfb-5b2d-4640-af3a-e43d0158eaf9';//h5测试用 内网-sn123456 外网-b6ffbbfb-5b2d-4640-af3a-e43d0158eaf9
// b6ffbbfb-5b2d-4640-af3a-e43d0158eaf9
param.uniqCode = '679d5560-534f-4df8-815a-49227ba6ffd2';//h5测试用 内网-sn123456 外网-b6ffbbfb-5b2d-4640-af3a-e43d0158eaf9
let res = await login(param);
userStore.login(res);
uni.switchTab({ url: '/pages/home/home' })

View File

@@ -133,7 +133,10 @@ const mescrollRef = ref(null);
const upOption = ref({
page: { num: 0, size: 10 },
noMoreSize: 5,
empty: { tip: '~ 空空如也 ~' },
empty: {
tip: '~ 空空如也 ~',
icon: "../../static/images/mescroll-empty.png"
},
textLoading: '加载中...',
textNoMore: '已经到底了'
});

View File

@@ -41,7 +41,7 @@
</view>
<view class="border-bottom"></view>
<view class="r-list">
<view class="r-left">创建人 <text>{{ item.createUser.userId }}</text></view>
<view class="r-left">创建人 <text>{{ item.createUser?item.createUser.userId:'' }}</text></view>
<view class="r-right">{{ parseTime(item.createTime,'{y}-{m}-{d} {h}:{i}') }}</view>
</view>
</view>
@@ -73,7 +73,10 @@ const mescrollRef = ref(null);
const upOption = ref({
page: { num: 0, size: 10 },
noMoreSize: 5,
empty: { tip: '~ 空空如也 ~' },
empty: {
tip: '~ 空空如也 ~',
icon: "../../static/images/mescroll-empty.png"
},
textLoading: '加载中...',
textNoMore: '已经到底了'
});
@@ -143,8 +146,8 @@ const getFlowList = (pageIndex, pageSize) => {
// 跳转webview
const handleJump = (item)=>{
uni.navigateTo({
url: '/pages/h5-webview/h5-webview?url=' + item.mobileLink+"&title="+item.subject
});
url: `/pages/notice/waitApproveDetail?detail=${encodeURIComponent(JSON.stringify(item))}`
})
}
</script>
@@ -196,18 +199,20 @@ const handleJump = (item)=>{
padding-bottom:10rpx;
}
/* .report-list .r-list{
padding: 10rpx 0;
} */
.report-list .r-list{
align-items: flex-start;
}
.report-list .r-list:first-child{
padding-bottom:10rpx;
}
.report-list .r-list .r-name {
color: #3384DF;
font-size: 38rpx;
font-size: 35rpx;
font-weight: bold;
width:500rpx;
}
.report-list .r-list .r-left text{
font-size: 28rpx;
color:#919191;

View File

@@ -0,0 +1,149 @@
<template>
<view class="con-body">
<view class="con-bg">
<!-- 头部 -->
<customHeader ref="customHeaderRef" :title="'待审批'" :leftFlag="true" :rightFlag="true"></customHeader>
<!-- 高度来避免头部遮挡 -->
<view class="top-height"></view>
<!-- 正文内容 -->
<view class="all-body">
<view class="white-bg bg-height">
<view class="report-list">
<view class="title">{{ detail.subject }}</view>
<view class="r-list">
<view class="r-name">进度</view>
<view class="r-right btn-orange" size="mini" v-if="detail.status==1">待处理</view>
<view v-else-if="detail.status==2">已处理</view>
</view>
<view class="border-bottom"></view>
<view class="r-list">
<view class="r-left">来自</view>
<view class="r-right">{{ detail.appName }}</view>
</view>
<view class="border-bottom"></view>
<view class="r-list">
<view class="r-left">状态</view>
<view class="r-right">
<text style="color:#FF2B44" v-if="detail.status==1 && (detail.level==1 || detail.level==2)">
{{ formatLevel(detail.level) }}
</text>
<text v-else>{{ formatLevel(detail.level) }}</text>
</view>
</view>
<view class="border-bottom"></view>
<view class="r-list">
<view class="r-left">创建人</view>
<view class="r-right">{{ detail.createUser?detail.createUser.userId:'' }}</view>
</view>
<view class="border-bottom"></view>
<view class="r-list">
<view class="r-left">创建时间</view>
<view class="r-right">{{ parseTime(detail.createTime,'{y}-{m}-{d} {h}:{i}') }}</view>
</view>
</view>
<view class="btn-blue" @click="handleJump">跳转详情页</view>
</view>
</view>
</view>
</view>
</template>
<script setup>
import { ref, onMounted } from 'vue';
import { onLoad } from '@dcloudio/uni-app';
import customHeader from '@/components/customHeader.vue'
// import MescrollUni from 'mescroll-uni/mescroll-uni.vue';
import { getNavBarPaddingTop } from '@/utils/system.js'
import {formatLevel} from '@/utils/status.js'
import { parseTime } from '@/utils/datetime.js'
let detail = ref({})
onLoad(async(opt) => {
try {
detail.value = JSON.parse(decodeURIComponent(opt.detail));
// console.log(detail.value);
} catch (e) {
console.error('参数解析失败', e);
}
});
// 获取导航栏高度用于内容区域padding
const navBarPaddingTop = ref(0);
onMounted(() => {
navBarPaddingTop.value = getNavBarPaddingTop() * 2;
})
// 跳转webview
const handleJump = ()=>{
let item = detail.value;
uni.navigateTo({
url: `/pages/h5-webview/h5-webview?url=${item.mobileLink}&title=${item.subject}`
});
}
</script>
<style scoped>
.all-body {
/* #ifdef APP-PLUS */
top: 150rpx;
height: calc(100vh - 75px);
/* #endif */
/* #ifndef APP-PLUS */
top:120rpx;
height: calc(100vh - 60px);
/* #endif */
}
.scroll-h{
/* #ifdef APP-PLUS */
height:calc(100vh - 78px) !important;
/* #endif */
/* #ifndef APP-PLUS */
height: calc(100vh - 10px) !important;
/* #endif */
}
.white-bg{
width: 750rpx;
padding: 25rpx 0 20rpx;
margin-bottom:0;
border-radius: 8px 8px 0 0;
}
.white-bg.bg-height{
/* #ifdef APP-PLUS */
height:calc(100vh - 78px) !important;
/* #endif */
/* #ifndef APP-PLUS */
height: calc(100vh - 80px) !important;
/* #endif */
}
.report-list{
padding: 0 0 0 30rpx;
}
.report-list .r-list{
padding-right: 30rpx;
}
.report-list .r-list:first-child{
padding-bottom:10rpx;
}
.report-list .border-bottom{
width:720rpx;
}
.btn-blue {
background-color: #05A3F4;
color: #fff;
width:380rpx;
height:80rpx;
line-height: 80rpx;
margin:120rpx auto 0;
text-align: center;
border-radius: 40rpx;
}
</style>

View File

@@ -629,3 +629,7 @@ uni-button[type='primary'][plain] {
/* CRM 样式 end */
.mescroll-empty .empty-tip{
color: #fff !important;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB