1234567891011121314151617181920212223242526272829303132333435363738 |
- const app = getApp();
- Page({
- data: {
- CustomBar: app.globalData.CustomBar,
- value: [
- { name: "vmodel", require, value: '', msg: "成型不能为空" },
- ]
- },
- // 提交
- submitFunc () {
- const query = wx.createSelectorQuery();
- query.select('.form').boundingClientRect();
- query.exec(res => {
- console.log(res)
- })
- },
- onLoad: function (options) {
- },
- onReady: function () {
- },
- onShow: function () {
- },
- onHide: function () {
- },
- onUnload: function () {
- },
- onPullDownRefresh: function () {
- },
- onReachBottom: function () {
- },
- })
|