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> |
<template> |
||||
<div class="flex justify-around"> |
<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="openAudit">账号管理</button> |
||||
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 250rpx" @click="openStatistical">终端UI配置</button> |
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 250rpx" @click="openStatistical">UI配置</button> |
||||
</div> |
</view> |
||||
</template> |
</template> |
||||
|
|
||||
<script setup> |
<script setup> |
||||
// DEBUG:打开财务审批详情页 |
// DEBUG:打开财务审批详情页 |
||||
|
|
||||
function openAudit() { |
function openAudit() { |
||||
uni.$ui.openDetail({ url: 'https://www.bilibili.com/', name: '个人账号管理' }); |
uni.navigateTo({ url: '/pages/audit/audit' }); |
||||
} |
} |
||||
|
|
||||
// DEBUG:打开财务统计详情页 |
// DEBUG:打开财务统计详情页 |
||||
function openStatistical() { |
function openStatistical() { |
||||
uni.$ui.openDetail({ url: 'https://v.qq.com/', name: '终端UI配置' }); |
uni.navigateTo({ url: '/pages/uidispose/uidispose' }); |
||||
} |
} |
||||
</script> |
</script> |
||||
|
@ -1,10 +1,12 @@ |
|||||
<!-- 域资源管理 --> |
<!-- 域资源管理 --> |
||||
<template> |
<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> |
</template> |
||||
|
|
||||
<script setup> |
<script setup> |
||||
function openSourceManage() { |
function openSourceManage() { |
||||
uni.$ui.openDetail({ url: 'https://www.taobao.com/', name: '域资源管理' }); |
uni.navigateTo({ url: '/pages/exarresources/exarresources' }); |
||||
} |
} |
||||
</script> |
</script> |
||||
|
@ -1,10 +1,12 @@ |
|||||
<!-- 项目版本管理 --> |
<!-- 项目版本管理 --> |
||||
<template> |
<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> |
</template> |
||||
|
|
||||
<script setup> |
<script setup> |
||||
function openSourceManage() { |
function openSourceManage() { |
||||
uni.$ui.openDetail({ url: 'https://www.taobao.com/', name: '项目版本管理' }); |
uni.navigateTo({ url: '/pages/projectVersion/projectVersion' }); |
||||
} |
} |
||||
</script> |
</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