22 changed files with 156 additions and 48 deletions
@ -0,0 +1,13 @@ |
|||
<template> |
|||
<image src="../../static/personal.png"></image> |
|||
</template> |
|||
|
|||
<script></script> |
|||
|
|||
<style lang="scss" scoped> |
|||
image { |
|||
width: 100%; |
|||
height: 50vh; |
|||
object-fit: cover; |
|||
} |
|||
</style> |
@ -0,0 +1,13 @@ |
|||
<template> |
|||
<image src="../../static/exarresources.png"></image> |
|||
</template> |
|||
|
|||
<script></script> |
|||
|
|||
<style lang="scss" scoped> |
|||
image { |
|||
width: 100%; |
|||
height: 100vh; |
|||
object-fit: cover; |
|||
} |
|||
</style> |
@ -0,0 +1,13 @@ |
|||
<template> |
|||
<image src="../../static/projectVersion.png"></image> |
|||
</template> |
|||
|
|||
<script></script> |
|||
|
|||
<style lang="scss" scoped> |
|||
image { |
|||
width: 100%; |
|||
height: 90vh; |
|||
object-fit: cover; |
|||
} |
|||
</style> |
@ -0,0 +1,13 @@ |
|||
<template> |
|||
<image src="../../static/uidispose.png"></image> |
|||
</template> |
|||
|
|||
<script></script> |
|||
|
|||
<style lang="scss" scoped> |
|||
image { |
|||
width: 100%; |
|||
height: 40vh; |
|||
object-fit: cover; |
|||
} |
|||
</style> |
@ -1,18 +1,19 @@ |
|||
<template> |
|||
<div class="flex justify-around"> |
|||
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 250rpx" @click="openAudit">个人账号管理</button> |
|||
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 250rpx" @click="openStatistical">终端UI配置</button> |
|||
</div> |
|||
<view class="flex justify-around"> |
|||
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 250rpx" @click="openAudit">账号管理</button> |
|||
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 250rpx" @click="openStatistical">UI配置</button> |
|||
</view> |
|||
</template> |
|||
|
|||
<script setup> |
|||
// DEBUG:打开财务审批详情页 |
|||
|
|||
function openAudit() { |
|||
uni.$ui.openDetail({ url: 'https://www.bilibili.com/', name: '个人账号管理' }); |
|||
uni.navigateTo({ url: '/pages/audit/audit' }); |
|||
} |
|||
|
|||
// DEBUG:打开财务统计详情页 |
|||
function openStatistical() { |
|||
uni.$ui.openDetail({ url: 'https://v.qq.com/', name: '终端UI配置' }); |
|||
uni.navigateTo({ url: '/pages/uidispose/uidispose' }); |
|||
} |
|||
</script> |
|||
|
@ -1,10 +1,12 @@ |
|||
<!-- 域资源管理 --> |
|||
<template> |
|||
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 500rpx" @click="openSourceManage">域资源管理</button> |
|||
<view class="px-5 py-3"> |
|||
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 500rpx" @click="openSourceManage">域资源管理</button> |
|||
</view> |
|||
</template> |
|||
|
|||
<script setup> |
|||
function openSourceManage() { |
|||
uni.$ui.openDetail({ url: 'https://www.taobao.com/', name: '域资源管理' }); |
|||
uni.navigateTo({ url: '/pages/exarresources/exarresources' }); |
|||
} |
|||
</script> |
|||
|
@ -1,10 +1,12 @@ |
|||
<!-- 项目版本管理 --> |
|||
<template> |
|||
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 500rpx" @click="openSourceManage">项目版本管理</button> |
|||
<view class="px-5 py-3"> |
|||
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 500rpx" @click="openSourceManage">项目版本管理</button> |
|||
</view> |
|||
</template> |
|||
|
|||
<script setup> |
|||
function openSourceManage() { |
|||
uni.$ui.openDetail({ url: 'https://www.taobao.com/', name: '项目版本管理' }); |
|||
uni.navigateTo({ url: '/pages/projectVersion/projectVersion' }); |
|||
} |
|||
</script> |
|||
|
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 118 KiB |
After Width: | Height: | Size: 14 KiB |
Loading…
Reference in new issue