greenPro/unpackage/dist/dev/mp-weixin/pages/extUI/popup/popup.js

170 lines
6.0 KiB
JavaScript

"use strict";
const common_vendor = require("../../../common/vendor.js");
const _sfc_main = {
data() {
return {
type: "center",
msgType: "success",
messageText: "这是一条成功提示",
value: ""
};
},
onReady() {
},
methods: {
change(e) {
console.log("当前模式:" + e.type + ",状态:" + e.show);
},
toggle(type) {
this.type = type;
this.$refs.popup.open(type);
},
messageToggle(type) {
this.msgType = type;
this.messageText = `这是一条${type}消息提示`;
this.$refs.message.open();
},
dialogToggle(type) {
this.msgType = type;
this.$refs.alertDialog.open();
},
dialogConfirm() {
console.log("点击确认");
this.messageText = `点击确认了 ${this.msgType} 窗口`;
this.$refs.message.open();
},
inputDialogToggle() {
this.$refs.inputDialog.open();
},
dialogClose() {
console.log("点击关闭");
},
dialogInputConfirm(val) {
common_vendor.index.showLoading({
title: "3秒后会关闭"
});
setTimeout(() => {
common_vendor.index.hideLoading();
console.log(val);
this.value = val;
this.$refs.inputDialog.close();
}, 3e3);
},
shareToggle() {
this.$refs.share.open();
}
}
};
if (!Array) {
const _easycom_uni_card2 = common_vendor.resolveComponent("uni-card");
const _easycom_uni_section2 = common_vendor.resolveComponent("uni-section");
const _easycom_uni_popup2 = common_vendor.resolveComponent("uni-popup");
const _easycom_uni_popup_message2 = common_vendor.resolveComponent("uni-popup-message");
const _easycom_uni_popup_dialog2 = common_vendor.resolveComponent("uni-popup-dialog");
const _easycom_uni_popup_share2 = common_vendor.resolveComponent("uni-popup-share");
(_easycom_uni_card2 + _easycom_uni_section2 + _easycom_uni_popup2 + _easycom_uni_popup_message2 + _easycom_uni_popup_dialog2 + _easycom_uni_popup_share2)();
}
const _easycom_uni_card = () => "../../../uni_modules/uni-card/components/uni-card/uni-card.js";
const _easycom_uni_section = () => "../../../uni_modules/uni-section/components/uni-section/uni-section.js";
const _easycom_uni_popup = () => "../../../uni_modules/uni-popup/components/uni-popup/uni-popup.js";
const _easycom_uni_popup_message = () => "../../../uni_modules/uni-popup/components/uni-popup-message/uni-popup-message.js";
const _easycom_uni_popup_dialog = () => "../../../uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.js";
const _easycom_uni_popup_share = () => "../../../uni_modules/uni-popup/components/uni-popup-share/uni-popup-share.js";
if (!Math) {
(_easycom_uni_card + _easycom_uni_section + _easycom_uni_popup + _easycom_uni_popup_message + _easycom_uni_popup_dialog + _easycom_uni_popup_share)();
}
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return {
a: common_vendor.p({
["is-full"]: true,
["is-shadow"]: false
}),
b: common_vendor.o(($event) => $options.toggle("top")),
c: common_vendor.o(($event) => $options.toggle("bottom")),
d: common_vendor.o(($event) => $options.toggle("center")),
e: common_vendor.o(($event) => $options.toggle("left")),
f: common_vendor.o(($event) => $options.toggle("right")),
g: common_vendor.p({
title: "基本示例",
type: "line"
}),
h: common_vendor.o(($event) => $options.messageToggle("success")),
i: common_vendor.o(($event) => $options.messageToggle("error")),
j: common_vendor.o(($event) => $options.messageToggle("warn")),
k: common_vendor.o(($event) => $options.messageToggle("info")),
l: common_vendor.p({
title: "提示消息",
type: "line"
}),
m: common_vendor.o(($event) => $options.dialogToggle("success")),
n: common_vendor.o(($event) => $options.dialogToggle("error")),
o: common_vendor.o(($event) => $options.dialogToggle("warn")),
p: common_vendor.o(($event) => $options.dialogToggle("info")),
q: common_vendor.p({
title: "对话框示例",
type: "line"
}),
r: common_vendor.t($data.value),
s: common_vendor.o((...args) => $options.inputDialogToggle && $options.inputDialogToggle(...args)),
t: common_vendor.p({
title: "输入框示例",
type: "line",
padding: true
}),
v: common_vendor.o((...args) => $options.shareToggle && $options.shareToggle(...args)),
w: common_vendor.p({
title: "底部分享示例",
type: "line",
padding: true
}),
x: $data.type === "left" || $data.type === "right" ? 1 : "",
y: common_vendor.sr("popup", "235bda36-6"),
z: common_vendor.o($options.change),
A: common_vendor.p({
["background-color"]: "#fff"
}),
B: common_vendor.p({
type: $data.msgType,
message: $data.messageText,
duration: 2e3
}),
C: common_vendor.sr("message", "235bda36-7"),
D: common_vendor.p({
type: "message"
}),
E: common_vendor.o($options.dialogConfirm),
F: common_vendor.o($options.dialogClose),
G: common_vendor.p({
type: $data.msgType,
cancelText: "关闭",
confirmText: "同意",
title: "通知",
content: "欢迎使用 uni-popup!"
}),
H: common_vendor.sr("alertDialog", "235bda36-9"),
I: common_vendor.p({
type: "dialog"
}),
J: common_vendor.sr("inputClose", "235bda36-12,235bda36-11"),
K: common_vendor.o($options.dialogInputConfirm),
L: common_vendor.p({
mode: "input",
title: "输入内容",
value: "对话框预置提示内容!",
placeholder: "请输入内容"
}),
M: common_vendor.sr("inputDialog", "235bda36-11"),
N: common_vendor.p({
type: "dialog"
}),
O: common_vendor.sr("share", "235bda36-13"),
P: common_vendor.p({
type: "share",
safeArea: true,
backgroundColor: "#fff"
})
};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "E:/xianyu/app/greenPro/pages/extUI/popup/popup.vue"]]);
wx.createPage(MiniProgramPage);