适配小程序代码结构

This commit is contained in:
zhonghua1
2026-01-20 08:46:36 +08:00
parent 3b169467ac
commit 9c00db8ff5
615 changed files with 62726 additions and 8 deletions

View File

@@ -0,0 +1,39 @@
"use strict";
const common_vendor = require("../../common/vendor.js");
const _sfc_main = {
data() {
return {};
},
onLoad() {
},
methods: {
goBack() {
common_vendor.index.navigateBack();
}
}
};
if (!Array) {
const _easycom_uni_nav_bar2 = common_vendor.resolveComponent("uni-nav-bar");
_easycom_uni_nav_bar2();
}
const _easycom_uni_nav_bar = () => "../../uni_modules/uni-nav-bar/components/uni-nav-bar/uni-nav-bar.js";
if (!Math) {
_easycom_uni_nav_bar();
}
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return {
a: common_vendor.o($options.goBack),
b: common_vendor.p({
fixed: true,
statusBar: true,
border: false,
title: "总结和统计",
leftIcon: "left",
color: "#333",
backgroundColor: "#FFFFFF"
})
};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
wx.createPage(MiniProgramPage);
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/meeting_summary/meeting_summary.js.map

View File

@@ -0,0 +1,6 @@
{
"navigationStyle": "custom",
"usingComponents": {
"uni-nav-bar": "../../uni_modules/uni-nav-bar/components/uni-nav-bar/uni-nav-bar"
}
}

View File

@@ -0,0 +1 @@
<view class="page"><uni-nav-bar wx:if="{{b}}" bindclickLeft="{{a}}" u-i="97456e14-0" bind:__l="__l" u-p="{{b}}"></uni-nav-bar><view class="content"><view class="empty-state"><text class="empty-text">总结和统计功能开发中...</text></view></view></view>

View File

@@ -0,0 +1,24 @@
page {
background-color: #F5F5F5;
}
.page {
min-height: 100vh;
background-color: #F5F5F5;
}
.content {
padding-top: 88rpx;
min-height: calc(100vh - 88rpx - 96rpx);
padding-bottom: 96rpx;
}
.empty-state {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
padding: 48rpx;
}
.empty-text {
font-size: 28rpx;
color: #999;
}