增加新模块
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const _sfc_main = {
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
methods: {
|
||||
jumpHome() {
|
||||
common_vendor.index.switchTab({
|
||||
url: "/pages/home/home"
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
if (!Array) {
|
||||
const _easycom_up_image2 = common_vendor.resolveComponent("up-image");
|
||||
_easycom_up_image2();
|
||||
}
|
||||
const _easycom_up_image = () => "../../uni_modules/uview-plus/components/u-image/u-image.js";
|
||||
if (!Math) {
|
||||
_easycom_up_image();
|
||||
}
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return {
|
||||
a: common_vendor.p({
|
||||
src: "/static/product/ok.png",
|
||||
width: "120",
|
||||
height: "120",
|
||||
bgColor: "#f1f6ff00"
|
||||
}),
|
||||
b: common_vendor.o((...args) => $options.jumpHome && $options.jumpHome(...args))
|
||||
};
|
||||
}
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-4af61460"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/order_submit_ok/order_submit_ok.js.map
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"navigationBarTitleText": "",
|
||||
"navigationBarBackgroundColor": "#FFFFFF",
|
||||
"navigationBarTextStyle": "black",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationStyle": "default",
|
||||
"usingComponents": {
|
||||
"up-image": "../../uni_modules/uview-plus/components/u-image/u-image"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<view class="order_sumbit_ok_warp data-v-4af61460"><view class="ok_img data-v-4af61460"><up-image wx:if="{{a}}" class="data-v-4af61460" u-i="4af61460-0" bind:__l="__l" u-p="{{a}}"></up-image><view class="ok_img_msg data-v-4af61460">支付成功</view></view><view class="ok_but data-v-4af61460" bindtap="{{b}}">确认</view></view>
|
||||
@@ -0,0 +1,46 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/* uni.scss */
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
.order_sumbit_ok_warp.data-v-4af61460 {
|
||||
height: calc(100vh - 80rpx);
|
||||
text-align: center;
|
||||
padding: 40rpx;
|
||||
}
|
||||
.order_sumbit_ok_warp .ok_img.data-v-4af61460 {
|
||||
display: grid;
|
||||
}
|
||||
.order_sumbit_ok_warp .ok_img .ok_img_msg.data-v-4af61460 {
|
||||
font-weight: bold;
|
||||
font-size: 36rpx;
|
||||
color: #FF7C41;
|
||||
}
|
||||
.order_sumbit_ok_warp .ok_but.data-v-4af61460 {
|
||||
margin-top: 100rpx;
|
||||
background: #FF7C41;
|
||||
border-radius: 16rpx;
|
||||
text-align: center;
|
||||
padding: 20rpx 0;
|
||||
height: 46rpx;
|
||||
color: #FFF;
|
||||
}
|
||||
Reference in New Issue
Block a user