123456789101112131415161718192021222324252627282930313233 |
- // components/component-tag-name.js
- Component({
- /**
- * 组件的属性列表
- */
- options: {
- addGlobalClass: true,
- },
- properties: {
- },
- /**
- * 组件的初始数据
- */
- data: {
- text:"搜索博物館、展览"
- },
- /**
- * 组件的方法列表
- */
- methods: {
- to_search: function () {
- wx.navigateTo({
- url: '../yuezhan/search/index',
- success: function (res) { },
- fail: function (res) { },
- complete: function (res) { },
- })
- }
- }
- })
|