123456789101112131415161718192021222324252627282930313233343536373839404142 |
- "use strict";
- const common_vendor = require("../../common/vendor.js");
- const _sfc_main = {
- data() {
- return {
- checkItems: [
- { name: "左手手心", status: "动作检测成功" },
- { name: "左手手背", status: "动作检测成功" },
- { name: "左手握拳", status: "动作检测成功" },
- { name: "右手手心", status: "动作检测成功" },
- { name: "右手手背", status: "动作检测成功" },
- { name: "右手握拳", status: "动作检测成功" }
- ]
- };
- },
- methods: {
- retake() {
- common_vendor.index.navigateBack();
- },
- goNext() {
- common_vendor.index.reLaunch({
- url: "/pages/success/success"
- });
- }
- }
- };
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- return {
- a: common_vendor.f($data.checkItems, (item, index, i0) => {
- return {
- a: common_vendor.t(index + 1),
- b: common_vendor.t(item.name),
- c: common_vendor.t(item.status),
- d: index
- };
- }),
- b: common_vendor.o((...args) => $options.retake && $options.retake(...args)),
- c: common_vendor.o((...args) => $options.goNext && $options.goNext(...args))
- };
- }
- const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
- wx.createPage(MiniProgramPage);
|