更新
This commit is contained in:
parent
5398a129dc
commit
94a9d0d5f3
@ -165,6 +165,6 @@
|
|||||||
|
|
||||||
.page-top {
|
.page-top {
|
||||||
padding-top: var(--status-bar-height); //给组件加个上边距
|
padding-top: var(--status-bar-height); //给组件加个上边距
|
||||||
background-color: white;
|
// background-color: white;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
@ -1,10 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="detail-container">
|
<view class="detail-container">
|
||||||
<view class="top">
|
<view class="top">
|
||||||
<view class="navbar">
|
<VNavigationBar title="详情页" background-color="rgba(0,0,0,0)" title-color="#1f2d3d"></VNavigationBar>
|
||||||
|
<!-- <view class="navbar">
|
||||||
<uni-icons type="left" color="#1f2d3d" size="22" @click="goBack" />
|
<uni-icons type="left" color="#1f2d3d" size="22" @click="goBack" />
|
||||||
<text class="navbar-title">详情页</text>
|
<text class="navbar-title">详情页</text>
|
||||||
</view>
|
</view> -->
|
||||||
|
|
||||||
<view class="header">
|
<view class="header">
|
||||||
<!-- 选项卡 -->
|
<!-- 选项卡 -->
|
||||||
@ -105,6 +106,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import request from '@/utils/request';
|
import request from '@/utils/request';
|
||||||
|
import VNavigationBar from '@/components/VNavigationBar.vue'
|
||||||
import {
|
import {
|
||||||
formatCurrency,
|
formatCurrency,
|
||||||
getDictByCode,
|
getDictByCode,
|
||||||
@ -116,6 +118,9 @@
|
|||||||
} from "@/utils/permission"; // 权限判断函数
|
} from "@/utils/permission"; // 权限判断函数
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
components: {
|
||||||
|
VNavigationBar,
|
||||||
|
},
|
||||||
name: 'DetailPage',
|
name: 'DetailPage',
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -307,6 +312,7 @@
|
|||||||
.top {
|
.top {
|
||||||
background-image: url('/static/images/table_header.png');
|
background-image: url('/static/images/table_header.png');
|
||||||
padding-top: var(--status-bar-height); //给组件加个上边距
|
padding-top: var(--status-bar-height); //给组件加个上边距
|
||||||
|
/* z-index: 1; */
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-title {
|
.navbar-title {
|
||||||
|
Loading…
Reference in New Issue
Block a user