tijiao
This commit is contained in:
@@ -1,48 +1,40 @@
|
||||
<template><page-meta
|
||||
<template>
|
||||
<page-meta
|
||||
:page-font-size="$baseFontSize() + 'px'"
|
||||
:root-font-size="$baseFontSize() + 'px'"
|
||||
></page-meta>
|
||||
<view class="container">
|
||||
<!-- 公共组件-每个页面必须引入 -->
|
||||
<public-module></public-module>
|
||||
<z-nav-bar bgColor="#3AB3AE" fontColor="#fff"></z-nav-bar>
|
||||
<view class="contentBox">
|
||||
|
||||
<web-view :webview-styles="webviewStyles" :src="id"></web-view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="container">
|
||||
<!-- 公共组件-每个页面必须引入 -->
|
||||
<public-module></public-module>
|
||||
<z-nav-bar bgColor="#3AB3AE" fontColor="#fff"></z-nav-bar>
|
||||
<view class="contentBox">
|
||||
<web-view :webview-styles="webviewStyles" :src="id"></web-view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
id: '',
|
||||
webviewStyles: {
|
||||
progress: {
|
||||
color: '#000'
|
||||
}
|
||||
}
|
||||
};
|
||||
},
|
||||
onLoad(e) {
|
||||
this.id = uni.getStorageSync('prescriptUrl')
|
||||
},
|
||||
computed: {
|
||||
|
||||
},
|
||||
watch: {
|
||||
|
||||
},
|
||||
mounted() {
|
||||
|
||||
},
|
||||
methods: {
|
||||
|
||||
}
|
||||
};
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
id: "",
|
||||
webviewStyles: {
|
||||
progress: {
|
||||
color: "#000",
|
||||
},
|
||||
},
|
||||
};
|
||||
},
|
||||
onLoad(e) {
|
||||
this.id = uni.getStorageSync("prescriptUrl");
|
||||
},
|
||||
computed: {},
|
||||
watch: {},
|
||||
mounted() {},
|
||||
methods: {},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '@/style/mixin.scss';
|
||||
</style>
|
||||
@import "@/style/mixin.scss";
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user