first commit

This commit is contained in:
wtq
2025-11-28 10:35:11 +08:00
commit 9ed8a3de94
121 changed files with 30962 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<template>
<view>
<web-view :update-title="false" :src="textUrl" />
</view>
</template>
<script>
import { allData } from './data.js'
export default {
data() {
return {
...allData.data()
}
},
onLoad(options) {
if(options.type == '用户协议') {
this.textUrl = 'https://pweb.jxc4.com/printer/userAgreement.html'
}
if(options.type == '隐私协议') {
this.textUrl = 'https://pweb.jxc4.com/printer/privacyAgreement.html'
}
if(options.type == '关于京西') {
this.textUrl = 'https://pweb.jxc4.com/printer/about.html'
}
uni.setNavigationBarTitle({
title: options.type
})
}
}
</script>
<style lang="scss">
@import "./JXTEXT.scss"
</style>