RuoYi-App 1.0.0

This commit is contained in:
RuoYi
2022-08-01 08:14:57 +08:00
parent 766bf58c8b
commit 0ca2bd20b8
349 changed files with 43898 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<template>
<view v-if="params.url">
<web-view :webview-styles="webviewStyles" :src="`${params.url}`"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
params: {},
webviewStyles: {
progress: {
color: "#FF3333"
}
}
}
},
props: {
src: {
type: [String],
default: null
}
},
onLoad(event) {
this.params = event
if (event.title) {
uni.setNavigationBarTitle({
title: event.title
})
}
}
}
</script>