26 lines
686 B
JavaScript
26 lines
686 B
JavaScript
"use strict";
|
|
const common_vendor = require("../../common/vendor.js");
|
|
const _sfc_main = {
|
|
__name: "agreement",
|
|
setup(__props) {
|
|
const articleUrl = common_vendor.ref("");
|
|
const webviewStyles = common_vendor.ref({
|
|
progress: {
|
|
color: "#3D83F6"
|
|
// 使用蓝色主题色
|
|
}
|
|
});
|
|
common_vendor.onMounted(() => {
|
|
articleUrl.value = "http://www.baidu.com/";
|
|
});
|
|
return (_ctx, _cache) => {
|
|
return {
|
|
a: webviewStyles.value,
|
|
b: articleUrl.value
|
|
};
|
|
};
|
|
}
|
|
};
|
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-b4896b2f"]]);
|
|
wx.createPage(MiniProgramPage);
|