适配小程序代码结构
This commit is contained in:
39
unpackage/dist/dev/mp-weixin/pages/meeting_summary/meeting_summary.js
vendored
Normal file
39
unpackage/dist/dev/mp-weixin/pages/meeting_summary/meeting_summary.js
vendored
Normal 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
|
||||
6
unpackage/dist/dev/mp-weixin/pages/meeting_summary/meeting_summary.json
vendored
Normal file
6
unpackage/dist/dev/mp-weixin/pages/meeting_summary/meeting_summary.json
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"navigationStyle": "custom",
|
||||
"usingComponents": {
|
||||
"uni-nav-bar": "../../uni_modules/uni-nav-bar/components/uni-nav-bar/uni-nav-bar"
|
||||
}
|
||||
}
|
||||
1
unpackage/dist/dev/mp-weixin/pages/meeting_summary/meeting_summary.wxml
vendored
Normal file
1
unpackage/dist/dev/mp-weixin/pages/meeting_summary/meeting_summary.wxml
vendored
Normal 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>
|
||||
24
unpackage/dist/dev/mp-weixin/pages/meeting_summary/meeting_summary.wxss
vendored
Normal file
24
unpackage/dist/dev/mp-weixin/pages/meeting_summary/meeting_summary.wxss
vendored
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user