添加新文件

This commit is contained in:
hejiangming
2025-05-07 10:09:55 +08:00
parent 007b002b81
commit 7e7a096151
776 changed files with 92603 additions and 0 deletions
@@ -0,0 +1,36 @@
"use strict";
const common_vendor = require("../../common/vendor.js");
const Header = () => "../../components/header.js";
const _sfc_main = {
components: { Header },
data() {
return {
leftPath: "/pages/mine_settings/mine_settings"
};
},
onLoad(option) {
const backPath = option.backPath;
if (backPath && backPath === "login") {
this.leftPath = "/pages/login/login";
}
if (backPath && backPath === "register") {
this.leftPath = "/pages/register/register";
}
}
};
if (!Array) {
const _component_Header = common_vendor.resolveComponent("Header");
_component_Header();
}
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return {
a: common_vendor.p({
leftTitle: _ctx.$t("mine.privacy.agreement.title"),
leftPathType: "navigateTo",
leftPath: $data.leftPath
})
};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
wx.createPage(MiniProgramPage);
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/mine_privacy_agreement/mine_privacy_agreement.js.map
@@ -0,0 +1,6 @@
{
"navigationStyle": "custom",
"usingComponents": {
"header": "../../components/header"
}
}
File diff suppressed because one or more lines are too long
@@ -0,0 +1,39 @@
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/* uni.scss */
/**
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
.privacy_agreement_warp {
background-color: #F5F5F5;
overflow: hidden;
}
.privacy_agreement_warp .privacy_agreement_content_warp {
padding: 40rpx;
height: calc(100vh - 242rpx);
overflow: auto;
}
.privacy_agreement_warp .interval {
margin-left: 20rpx;
}
.privacy_agreement_warp .interval2 {
margin-left: 40rpx;
}