建制界面的背景色修正
This commit is contained in:
parent
62e7d1b9bf
commit
3f3883e908
|
|
@ -7,12 +7,10 @@
|
||||||
<view v-if="loading" class="loading">
|
<view v-if="loading" class="loading">
|
||||||
<text>加载中...</text>
|
<text>加载中...</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 空数据提示 -->
|
<!-- 空数据提示 -->
|
||||||
<view v-else-if="institutionalData.length === 0" class="empty">
|
<view v-else-if="institutionalData.length === 0" class="empty">
|
||||||
<text>暂无数据</text>
|
<text>暂无数据</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 数据列表 -->
|
<!-- 数据列表 -->
|
||||||
<view v-else class="data" v-for="(item, index) in institutionalData" :key="index">
|
<view v-else class="data" v-for="(item, index) in institutionalData" :key="index">
|
||||||
<view class="row">
|
<view class="row">
|
||||||
|
|
@ -162,7 +160,7 @@ export default {
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
page {
|
page {
|
||||||
background: v-bind('CommonEnum.BASE_COLOR');
|
background: #F5F0E7;
|
||||||
}
|
}
|
||||||
.header {
|
.header {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<view class="page">
|
<view class="page">
|
||||||
|
|
||||||
|
|
||||||
<custom-navbar title="高僧详情" />
|
<custom-navbar title="高僧详情" />
|
||||||
<image class="background-image" :src="CommonEnum.BACKGROUND" mode="aspectFill"></image>
|
<image class="background-image" :src="CommonEnum.BACKGROUND" mode="aspectFill"></image>
|
||||||
<view class="container">
|
<view class="container">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user