diff --git a/src/miniprogram-1(1)/pages/index/index.wxml b/src/miniprogram-1(1)/pages/index/index.wxml new file mode 100644 index 0000000..01f979f --- /dev/null +++ b/src/miniprogram-1(1)/pages/index/index.wxml @@ -0,0 +1,86 @@ + + + + + + + + + + + + + 找回密码 + Retrieve the password + + + + + + 请注册 + Please Register Your Account + + + + + + + + + + + + 记住密码 + + + + + + + + + + + + +
+ + + + + + +
+
+ + + + +注册账户 +| +忘记密码 + + + + + +登录页面 + + + + + +登录页面 + + + + + +Power By WSY + + +
+
\ No newline at end of file diff --git a/src/miniprogram-1(1)/pages/index/index.wxss b/src/miniprogram-1(1)/pages/index/index.wxss new file mode 100644 index 0000000..0a9acf2 --- /dev/null +++ b/src/miniprogram-1(1)/pages/index/index.wxss @@ -0,0 +1,67 @@ +/* pages/index/index.wxss */ +.photo1{ + position: absolute; + width: 100%; + height: 100%; + z-index: -999; +} +.header{ + height: 200rpx; + padding:40rpx 30rpx; + display: flex; + flex-direction: column; + + color: white; +} +.title{ + font-size: 52rpx; + font-weight: 700; + padding: 20rpx; +} +.header .info{ +font-size:28rpx ; +padding: 20rpx; +} +.body{ + padding: 40rpx; + padding-top: 230rpx; +} +.input{ + margin-top: 20rpx; + +} +.one{ +height: 100rpx; + margin-top: 20rpx; + box-shadow: #77778a 0 0 5rpx; + border-radius: 10rpx; +} +.two{ + border: solid 1rpx #73ccd8; + margin-top: 40rpx; + width: 100%; + background-color: #73ccd8; + border-radius: 40rpx; +} +.end{ + display: flex; + justify-content: center; + margin-top: 40rpx; + color: #9f9f9f; +} +.end text{ + margin-left:30rpx; +} +.end-power{ + display: flex; + justify-content: center; +} +.power{ +color: #d6d6d6; +position: fixed; +bottom: 50rpx; + +} +.remenber{ + margin-top: 20rpx; +} \ No newline at end of file diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/action-sheet/index.js b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/action-sheet/index.js new file mode 100644 index 0000000..b7af646 --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/action-sheet/index.js @@ -0,0 +1,73 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +var component_1 = require("../common/component"); +var button_1 = require("../mixins/button"); +(0, component_1.VantComponent)({ + mixins: [button_1.button], + props: { + show: Boolean, + title: String, + cancelText: String, + description: String, + round: { + type: Boolean, + value: true, + }, + zIndex: { + type: Number, + value: 100, + }, + actions: { + type: Array, + value: [], + }, + overlay: { + type: Boolean, + value: true, + }, + closeOnClickOverlay: { + type: Boolean, + value: true, + }, + closeOnClickAction: { + type: Boolean, + value: true, + }, + safeAreaInsetBottom: { + type: Boolean, + value: true, + }, + }, + methods: { + onSelect: function (event) { + var _this = this; + var index = event.currentTarget.dataset.index; + var _a = this.data, actions = _a.actions, closeOnClickAction = _a.closeOnClickAction, canIUseGetUserProfile = _a.canIUseGetUserProfile; + var item = actions[index]; + if (item) { + this.$emit('select', item); + if (closeOnClickAction) { + this.onClose(); + } + if (item.openType === 'getUserInfo' && canIUseGetUserProfile) { + wx.getUserProfile({ + desc: item.getUserProfileDesc || ' ', + complete: function (userProfile) { + _this.$emit('getuserinfo', userProfile); + }, + }); + } + } + }, + onCancel: function () { + this.$emit('cancel'); + }, + onClose: function () { + this.$emit('close'); + }, + onClickOverlay: function () { + this.$emit('click-overlay'); + this.onClose(); + }, + }, +}); diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/action-sheet/index.json b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/action-sheet/index.json new file mode 100644 index 0000000..19bf989 --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/action-sheet/index.json @@ -0,0 +1,8 @@ +{ + "component": true, + "usingComponents": { + "van-icon": "../icon/index", + "van-popup": "../popup/index", + "van-loading": "../loading/index" + } +} diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/action-sheet/index.wxml b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/action-sheet/index.wxml new file mode 100644 index 0000000..b04cc3a --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/action-sheet/index.wxml @@ -0,0 +1,69 @@ + + + + + {{ title }} + + + + {{ description }} + + + + + + + + + + {{ cancelText }} + + + diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/action-sheet/index.wxss b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/action-sheet/index.wxss new file mode 100644 index 0000000..eedd361 --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/action-sheet/index.wxss @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-action-sheet{color:var(--action-sheet-item-text-color,#323233);max-height:var(--action-sheet-max-height,90%)!important}.van-action-sheet__cancel,.van-action-sheet__item{background-color:var(--action-sheet-item-background,#fff);font-size:var(--action-sheet-item-font-size,16px);line-height:var(--action-sheet-item-line-height,22px);padding:14px 16px;text-align:center}.van-action-sheet__cancel--hover,.van-action-sheet__item--hover{background-color:#f2f3f5}.van-action-sheet__cancel:after,.van-action-sheet__item:after{border-width:0}.van-action-sheet__cancel{color:var(--action-sheet-cancel-text-color,#646566)}.van-action-sheet__gap{background-color:var(--action-sheet-cancel-padding-color,#f7f8fa);display:block;height:var(--action-sheet-cancel-padding-top,8px)}.van-action-sheet__item--disabled{color:var(--action-sheet-item-disabled-text-color,#c8c9cc)}.van-action-sheet__item--disabled.van-action-sheet__item--hover{background-color:var(--action-sheet-item-background,#fff)}.van-action-sheet__subname{color:var(--action-sheet-subname-color,#969799);font-size:var(--action-sheet-subname-font-size,12px);line-height:var(--action-sheet-subname-line-height,20px);margin-top:var(--padding-xs,8px)}.van-action-sheet__header{font-size:var(--action-sheet-header-font-size,16px);font-weight:var(--font-weight-bold,500);line-height:var(--action-sheet-header-height,48px);text-align:center}.van-action-sheet__description{color:var(--action-sheet-description-color,#969799);font-size:var(--action-sheet-description-font-size,14px);line-height:var(--action-sheet-description-line-height,20px);padding:20px var(--padding-md,16px);text-align:center}.van-action-sheet__close{color:var(--action-sheet-close-icon-color,#c8c9cc);font-size:var(--action-sheet-close-icon-size,22px)!important;line-height:inherit!important;padding:var(--action-sheet-close-icon-padding,0 16px);position:absolute!important;right:0;top:0}.van-action-sheet__loading{display:flex!important} \ No newline at end of file diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.js b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.js new file mode 100644 index 0000000..2d83346 --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.js @@ -0,0 +1,232 @@ +"use strict"; +var __assign = (this && this.__assign) || function () { + __assign = Object.assign || function(t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) + t[p] = s[p]; + } + return t; + }; + return __assign.apply(this, arguments); +}; +Object.defineProperty(exports, "__esModule", { value: true }); +var component_1 = require("../common/component"); +var shared_1 = require("../picker/shared"); +var utils_1 = require("../common/utils"); +var EMPTY_CODE = '000000'; +(0, component_1.VantComponent)({ + classes: ['active-class', 'toolbar-class', 'column-class'], + props: __assign(__assign({}, shared_1.pickerProps), { value: { + type: String, + observer: function (value) { + this.code = value; + this.setValues(); + }, + }, areaList: { + type: Object, + value: {}, + observer: 'setValues', + }, columnsNum: { + type: null, + value: 3, + }, columnsPlaceholder: { + type: Array, + observer: function (val) { + this.setData({ + typeToColumnsPlaceholder: { + province: val[0] || '', + city: val[1] || '', + county: val[2] || '', + }, + }); + }, + } }), + data: { + columns: [{ values: [] }, { values: [] }, { values: [] }], + typeToColumnsPlaceholder: {}, + }, + mounted: function () { + var _this = this; + (0, utils_1.requestAnimationFrame)(function () { + _this.setValues(); + }); + }, + methods: { + getPicker: function () { + if (this.picker == null) { + this.picker = this.selectComponent('.van-area__picker'); + } + return this.picker; + }, + onCancel: function (event) { + this.emit('cancel', event.detail); + }, + onConfirm: function (event) { + var index = event.detail.index; + var value = event.detail.value; + value = this.parseValues(value); + this.emit('confirm', { value: value, index: index }); + }, + emit: function (type, detail) { + detail.values = detail.value; + delete detail.value; + this.$emit(type, detail); + }, + parseValues: function (values) { + var columnsPlaceholder = this.data.columnsPlaceholder; + return values.map(function (value, index) { + if (value && + (!value.code || value.name === columnsPlaceholder[index])) { + return __assign(__assign({}, value), { code: '', name: '' }); + } + return value; + }); + }, + onChange: function (event) { + var _this = this; + var _a; + var _b = event.detail, index = _b.index, picker = _b.picker, value = _b.value; + this.code = value[index].code; + (_a = this.setValues()) === null || _a === void 0 ? void 0 : _a.then(function () { + _this.$emit('change', { + picker: picker, + values: _this.parseValues(picker.getValues()), + index: index, + }); + }); + }, + getConfig: function (type) { + var areaList = this.data.areaList; + return (areaList && areaList[type + "_list"]) || {}; + }, + getList: function (type, code) { + if (type !== 'province' && !code) { + return []; + } + var typeToColumnsPlaceholder = this.data.typeToColumnsPlaceholder; + var list = this.getConfig(type); + var result = Object.keys(list).map(function (code) { return ({ + code: code, + name: list[code], + }); }); + if (code != null) { + // oversea code + if (code[0] === '9' && type === 'city') { + code = '9'; + } + result = result.filter(function (item) { return item.code.indexOf(code) === 0; }); + } + if (typeToColumnsPlaceholder[type] && result.length) { + // set columns placeholder + var codeFill = type === 'province' + ? '' + : type === 'city' + ? EMPTY_CODE.slice(2, 4) + : EMPTY_CODE.slice(4, 6); + result.unshift({ + code: "" + code + codeFill, + name: typeToColumnsPlaceholder[type], + }); + } + return result; + }, + getIndex: function (type, code) { + var compareNum = type === 'province' ? 2 : type === 'city' ? 4 : 6; + var list = this.getList(type, code.slice(0, compareNum - 2)); + // oversea code + if (code[0] === '9' && type === 'province') { + compareNum = 1; + } + code = code.slice(0, compareNum); + for (var i = 0; i < list.length; i++) { + if (list[i].code.slice(0, compareNum) === code) { + return i; + } + } + return 0; + }, + setValues: function () { + var picker = this.getPicker(); + if (!picker) { + return; + } + var code = this.code || this.getDefaultCode(); + var provinceList = this.getList('province'); + var cityList = this.getList('city', code.slice(0, 2)); + var stack = []; + var indexes = []; + var columnsNum = this.data.columnsNum; + if (columnsNum >= 1) { + stack.push(picker.setColumnValues(0, provinceList, false)); + indexes.push(this.getIndex('province', code)); + } + if (columnsNum >= 2) { + stack.push(picker.setColumnValues(1, cityList, false)); + indexes.push(this.getIndex('city', code)); + if (cityList.length && code.slice(2, 4) === '00') { + code = cityList[0].code; + } + } + if (columnsNum === 3) { + stack.push(picker.setColumnValues(2, this.getList('county', code.slice(0, 4)), false)); + indexes.push(this.getIndex('county', code)); + } + return Promise.all(stack) + .catch(function () { }) + .then(function () { return picker.setIndexes(indexes); }) + .catch(function () { }); + }, + getDefaultCode: function () { + var columnsPlaceholder = this.data.columnsPlaceholder; + if (columnsPlaceholder.length) { + return EMPTY_CODE; + } + var countyCodes = Object.keys(this.getConfig('county')); + if (countyCodes[0]) { + return countyCodes[0]; + } + var cityCodes = Object.keys(this.getConfig('city')); + if (cityCodes[0]) { + return cityCodes[0]; + } + return ''; + }, + getValues: function () { + var picker = this.getPicker(); + if (!picker) { + return []; + } + return this.parseValues(picker.getValues().filter(function (value) { return !!value; })); + }, + getDetail: function () { + var values = this.getValues(); + var area = { + code: '', + country: '', + province: '', + city: '', + county: '', + }; + if (!values.length) { + return area; + } + var names = values.map(function (item) { return item.name; }); + area.code = values[values.length - 1].code; + if (area.code[0] === '9') { + area.country = names[1] || ''; + area.province = names[2] || ''; + } + else { + area.province = names[0] || ''; + area.city = names[1] || ''; + area.county = names[2] || ''; + } + return area; + }, + reset: function (code) { + this.code = code || ''; + return this.setValues(); + }, + }, +}); diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.json b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.json new file mode 100644 index 0000000..a778e91 --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.json @@ -0,0 +1,6 @@ +{ + "component": true, + "usingComponents": { + "van-picker": "../picker/index" + } +} diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.wxml b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.wxml new file mode 100644 index 0000000..f7dc51f --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.wxml @@ -0,0 +1,20 @@ + + + diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.wxs b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.wxs new file mode 100644 index 0000000..07723c1 --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.wxs @@ -0,0 +1,8 @@ +/* eslint-disable */ +function displayColumns(columns, columnsNum) { + return columns.slice(0, +columnsNum); +} + +module.exports = { + displayColumns: displayColumns, +}; diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.wxss b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.wxss new file mode 100644 index 0000000..99694d6 --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/area/index.wxss @@ -0,0 +1 @@ +@import '../common/index.wxss'; \ No newline at end of file diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.js b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.js new file mode 100644 index 0000000..c8f2d6f --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.js @@ -0,0 +1,68 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +var component_1 = require("../common/component"); +var button_1 = require("../mixins/button"); +var version_1 = require("../common/version"); +var mixins = [button_1.button]; +if ((0, version_1.canIUseFormFieldButton)()) { + mixins.push('wx://form-field-button'); +} +(0, component_1.VantComponent)({ + mixins: mixins, + classes: ['hover-class', 'loading-class'], + data: { + baseStyle: '', + }, + props: { + formType: String, + icon: String, + classPrefix: { + type: String, + value: 'van-icon', + }, + plain: Boolean, + block: Boolean, + round: Boolean, + square: Boolean, + loading: Boolean, + hairline: Boolean, + disabled: Boolean, + loadingText: String, + customStyle: String, + loadingType: { + type: String, + value: 'circular', + }, + type: { + type: String, + value: 'default', + }, + dataset: null, + size: { + type: String, + value: 'normal', + }, + loadingSize: { + type: String, + value: '20px', + }, + color: String, + }, + methods: { + onClick: function (event) { + console.log( "获取选中项的value:"); + var _this = this; + this.$emit('click', event); + var _a = this.data, canIUseGetUserProfile = _a.canIUseGetUserProfile, openType = _a.openType, getUserProfileDesc = _a.getUserProfileDesc, lang = _a.lang; + if (openType === 'getUserInfo' && canIUseGetUserProfile) { + wx.getUserProfile({ + desc: getUserProfileDesc || ' ', + lang: lang || 'en', + complete: function (userProfile) { + _this.$emit('getuserinfo', userProfile); + }, + }); + } + }, + }, +}); diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.json b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.json new file mode 100644 index 0000000..e00a588 --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.json @@ -0,0 +1,7 @@ +{ + "component": true, + "usingComponents": { + "van-icon": "../icon/index", + "van-loading": "../loading/index" + } +} diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.wxml b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.wxml new file mode 100644 index 0000000..8034845 --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.wxml @@ -0,0 +1,53 @@ + + + + diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.wxs b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.wxs new file mode 100644 index 0000000..8b649fe --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.wxs @@ -0,0 +1,39 @@ +/* eslint-disable */ +var style = require('../wxs/style.wxs'); + +function rootStyle(data) { + if (!data.color) { + return data.customStyle; + } + + var properties = { + color: data.plain ? data.color : '#fff', + background: data.plain ? null : data.color, + }; + + // hide border when color is linear-gradient + if (data.color.indexOf('gradient') !== -1) { + properties.border = 0; + } else { + properties['border-color'] = data.color; + } + + return style([properties, data.customStyle]); +} + +function loadingColor(data) { + if (data.plain) { + return data.color ? data.color : '#c9c9c9'; + } + + if (data.type === 'default') { + return '#c9c9c9'; + } + + return '#fff'; +} + +module.exports = { + rootStyle: rootStyle, + loadingColor: loadingColor, +}; diff --git a/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.wxss b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.wxss new file mode 100644 index 0000000..175b08d --- /dev/null +++ b/src/miniprogram-1(1)/pages/miniprogram_npm/@vant/weapp/button/index.wxss @@ -0,0 +1,20 @@ +@import '../common/index.wxss'; +.van-button +{-webkit-text-size-adjust:100%; +align-items:center; +-webkit-appearance:none; +border-radius:var(--button-border-radius,2px); +box-sizing:border-box; +display:inline-flex; +font-size:var(--button-default-font-size,16px); +height:var(--button-default-height,44px); +justify-content:center; +line-height:var(--button-line-height,20px); +padding:0;position:relative; +text-align:center; +transition:opacity .2s; +vertical-align:middle}.van-button:before{background-color:#000; +border:inherit;border-color:#000;border-radius:inherit;content:" "; +height:100%; +left:50%; +opacity:0;position:absolute;top:50%;transform:translate(-50%,-50%);width:100%}.van-button:after{border-width:0}.van-button--active:before{opacity:.15}.van-button--unclickable:after{display:none}.van-button--default{background:var(--button-default-background-color,#fff);border:var(--button-border-width,1px) solid var(--button-default-border-color,#ebedf0);color:var(--button-default-color,#323233)}.van-button--primary{background:var(--button-primary-background-color,#07c160);border:var(--button-border-width,1px) solid var(--button-primary-border-color,#07c160);color:var(--button-primary-color,#fff)}.van-button--info{background:var(--button-info-background-color,#1989fa);border:var(--button-border-width,1px) solid var(--button-info-border-color,#1989fa);color:var(--button-info-color,#fff)}.van-button--danger{background:var(--button-danger-background-color,#ee0a24);border:var(--button-border-width,1px) solid var(--button-danger-border-color,#ee0a24);color:var(--button-danger-color,#fff)}.van-button--warning{background:var(--button-warning-background-color,#ff976a);border:var(--button-border-width,1px) solid var(--button-warning-border-color,#ff976a);color:var(--button-warning-color,#fff)}.van-button--plain{background:var(--button-plain-background-color,#fff)}.van-button--plain.van-button--primary{color:var(--button-primary-background-color,#07c160)}.van-button--plain.van-button--info{color:var(--button-info-background-color,#1989fa)}.van-button--plain.van-button--danger{color:var(--button-danger-background-color,#ee0a24)}.van-button--plain.van-button--warning{color:var(--button-warning-background-color,#ff976a)}.van-button--large{height:var(--button-large-height,50px);width:100%}.van-button--normal{font-size:var(--button-normal-font-size,14px);padding:0 15px}.van-button--small{font-size:var(--button-small-font-size,12px);height:var(--button-small-height,30px);min-width:var(--button-small-min-width,60px);padding:0 var(--padding-xs,8px)}.van-button--mini{display:inline-block;font-size:var(--button-mini-font-size,10px);height:var(--button-mini-height,22px);min-width:var(--button-mini-min-width,50px)}.van-button--mini+.van-button--mini{margin-left:5px}.van-button--block{display:flex;width:100%}.van-button--round{border-radius:var(--button-round-border-radius,999px)}.van-button--square{border-radius:0}.van-button--disabled{opacity:var(--button-disabled-opacity,.5)}.van-button__text{display:inline}.van-button__icon+.van-button__text:not(:empty),.van-button__loading-text{margin-left:4px}.van-button__icon{line-height:inherit!important;min-width:1em;vertical-align:top}.van-button--hairline{border-width:0;padding-top:1px}.van-button--hairline:after{border-color:inherit;border-radius:calc(var(--button-border-radius, 2px)*2);border-width:1px}.van-button--hairline.van-button--round:after{border-radius:var(--button-round-border-radius,999px)}.van-button--hairline.van-button--square:after{border-radius:0} \ No newline at end of file diff --git a/src/miniprogram-1(1)/pages/navigation/safety/safety.js b/src/miniprogram-1(1)/pages/navigation/safety/safety.js new file mode 100644 index 0000000..516da50 --- /dev/null +++ b/src/miniprogram-1(1)/pages/navigation/safety/safety.js @@ -0,0 +1,85 @@ +// pages/navigation/safety/safety.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + inputText: '' + }, + saveinform:function(){ + wx.switchTab({ + url: '../self/self' + }) + }, + /** + * 生命周期函数--监听页面加载 + */ + onLoad(options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady() { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow() { + const self = this + let userText = wx.getStorageSync('userText') + if (userText) { + self.data.inputText = userText + self.setData(self.data) + } + + }, + onInputText(e) { + const self = this + const value = e.detail.value + if (value) { + wx.setStorageSync('userText', value) + } // 监听用户输入的信息,一旦有内容输入进去,就会使用wx.setStorageSync('userText', value)设置usertext这个key的值,使用wx.getStorageSync('userText')可以得到usertext这个key的值 +}, + + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide() { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload() { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh() { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom() { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage() { + + } +}) \ No newline at end of file diff --git a/src/miniprogram-1(1)/pages/navigation/safety/safety.json b/src/miniprogram-1(1)/pages/navigation/safety/safety.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/src/miniprogram-1(1)/pages/navigation/safety/safety.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/src/miniprogram-1(1)/pages/navigation/safety/safety.wxml b/src/miniprogram-1(1)/pages/navigation/safety/safety.wxml new file mode 100644 index 0000000..e190a4c --- /dev/null +++ b/src/miniprogram-1(1)/pages/navigation/safety/safety.wxml @@ -0,0 +1,3 @@ + + + diff --git a/src/miniprogram-1(1)/pages/navigation/safety/safety.wxss b/src/miniprogram-1(1)/pages/navigation/safety/safety.wxss new file mode 100644 index 0000000..8ce4822 --- /dev/null +++ b/src/miniprogram-1(1)/pages/navigation/safety/safety.wxss @@ -0,0 +1,9 @@ +/* pages/navigation/safety/safety.wxss */ +.y{ + margin-left: 30rpx; + margin-top: 10rpx; + margin-right: 30rpx; + background: rgba(255, 255, 255, 0.7); + display: flex; + flex-direction: column; +} \ No newline at end of file diff --git a/src/miniprogram-1(1)/pages/navigation/shezhi/shezhi.js b/src/miniprogram-1(1)/pages/navigation/shezhi/shezhi.js new file mode 100644 index 0000000..19b0906 --- /dev/null +++ b/src/miniprogram-1(1)/pages/navigation/shezhi/shezhi.js @@ -0,0 +1,66 @@ +// pages/navigation/shezhi/shezhi.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad(options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady() { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow() { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide() { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload() { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh() { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom() { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage() { + + } +}) \ No newline at end of file diff --git a/src/miniprogram-1(1)/pages/navigation/shezhi/shezhi.json b/src/miniprogram-1(1)/pages/navigation/shezhi/shezhi.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/src/miniprogram-1(1)/pages/navigation/shezhi/shezhi.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/src/miniprogram-1(1)/pages/navigation/shezhi/shezhi.wxml b/src/miniprogram-1(1)/pages/navigation/shezhi/shezhi.wxml new file mode 100644 index 0000000..2a2e829 --- /dev/null +++ b/src/miniprogram-1(1)/pages/navigation/shezhi/shezhi.wxml @@ -0,0 +1,2 @@ + + diff --git a/src/miniprogram-1(1)/pages/navigation/shezhi/shezhi.wxss b/src/miniprogram-1(1)/pages/navigation/shezhi/shezhi.wxss new file mode 100644 index 0000000..672f178 --- /dev/null +++ b/src/miniprogram-1(1)/pages/navigation/shezhi/shezhi.wxss @@ -0,0 +1 @@ +/* pages/navigation/shezhi/shezhi.wxss */ \ No newline at end of file