This commit is contained in:
QJK 2024-11-09 17:56:06 +08:00
parent aa080206a3
commit b8fc167109
2 changed files with 207 additions and 167 deletions

View File

@ -1,7 +1,7 @@
// 应用全局配置 // 应用全局配置
module.exports = { module.exports = {
// baseUrl: 'https://www.nuoyunr.com/admin-api', // baseUrl: 'https://www.nuoyunr.com/admin-api',
baseUrl: 'http://127.0.0.1:48080/admin-api', baseUrl: 'http://192.168.31.130:48080/admin-api',
imagesUrl: 'http://www.nuoyunr.com/lananRsc', imagesUrl: 'http://www.nuoyunr.com/lananRsc',
baseImageUrl: 'https://www.nuoyunr.com/minio', baseImageUrl: 'https://www.nuoyunr.com/minio',
// 应用信息 // 应用信息

View File

@ -24,11 +24,19 @@
<view class="title_"> <view class="title_">
已选检测项目 已选检测项目
</view> </view>
<u-steps activeColor="#0D2E8D" direction="column"> <view style="margin-bottom: 15px;" v-for="(item,index) in selectProject" :key="index">
<view class="steps_">
<view class="index_">{{index+1}}</view>
<view style="font-size: 20px; font-weight: bold;">{{item.projectName}}</view>
</view>
<view class="xb_" v-if="index != selectProject.length - 1 "> </view>
</view>
<!-- <u-steps activeColor="#0D2E8D" direction="column">
<u-steps-item :iconSize="iconSize" v-for="item in selectProject" :title="item.projectName"> <u-steps-item :iconSize="iconSize" v-for="item in selectProject" :title="item.projectName">
</u-steps-item> </u-steps-item>
</u-steps> </u-steps> -->
</view> </view>
@ -102,6 +110,12 @@ export default {
</script> </script>
<style scoped> <style scoped>
.steps_ {
display: flex;
align-items: center;
}
.cont_box { .cont_box {
box-sizing: border-box; box-sizing: border-box;
padding: 10px; padding: 10px;
@ -124,26 +138,27 @@ export default {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-size: 14px; font-size: 18px;
box-sizing: border-box; box-sizing: border-box;
padding: 5px 10px; padding: 10px 15px;
margin-right: 5px; margin-right: 15px;
margin-bottom: 5px; margin-bottom: 15px;
background: #0D2E8D; background: #0D2E8D;
color: #fff; color: #fff;
} }
.box_button { .box_button {
border-radius: 6px; border-radius: 6px;
border: 1px solid #999; border: 1px solid #999;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-size: 14px; font-size: 18px;
box-sizing: border-box; box-sizing: border-box;
padding: 5px 10px; padding: 10px 15px;
margin-right: 5px; margin-right: 15px;
margin-bottom: 5px; margin-bottom: 15px;
} }
.dlanniu { .dlanniu {
@ -190,4 +205,29 @@ export default {
.t-left { .t-left {
width: 10%; width: 10%;
} }
.index_ {
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-weight: bold;
font-size: 18px;
background: #0D2E8D;
border-radius: 50%;
margin-right: 10px;
}
.xb_ {
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
color: #0D2E8D;
font-size: 22px;
font-weight: bold;
}
</style> </style>