1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- "use strict";
- const common_vendor = require("../../common/vendor.js");
- const common_assets = require("../../common/assets.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.navigateTo({
- url: "/pages/interview-notice/interview-notice"
- });
- }
- }
- };
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- return {
- a: common_assets._imports_0$2,
- b: 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
- };
- }),
- c: common_vendor.o((...args) => $options.retake && $options.retake(...args)),
- d: common_vendor.o((...args) => $options.goNext && $options.goNext(...args))
- };
- }
- const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
- wx.createPage(MiniProgramPage);
|