不到2KB的源碼實現你的html5網站實現小程序功能

 

/app.js

App({  

})

/app.json

{

  "pages":[

    "pages/index/index"

  ],

  "window":{

    "backgroundTextStyle":"light",

    "navigationBarBackgroundColor": "#fff",

    "navigationBarTitleText": "小程序標題",

    "navigationBarTextStyle":"black"

  },

  "style": "v2",

  "sitemapLocation": "sitemap.json"

}

/app.wxss

/**app.wxss**/

/pages/index/index.js

Page({

  data: {

      url:'https://mi.yichaxin.com/chalide.app'

  }

  })

/pages/index/index.json

{

  "usingComponents": {}

}

/pages/index/index.wxml

<web-view src="{{url}}"></web-view>

/pages/index/index.wxss

/** 空白文件 **/

/project.config.json

{

	"description": "項目配置文件",

	"packOptions": {

		"ignore": []

	},

	"setting": {

		"urlCheck": true,

		"es6": true,

		"postcss": true,

		"preloadBackgroundData": false,

		"minified": true,

		"newFeature": true,

		"autoAudits": false,

		"coverView": true,

		"showShadowRootInWxmlPanel": true,

		"scopeDataCheck": false

	},

	"compileType": "miniprogram",

	"libVersion": "2.10.4",

	"appid": "wx696a******************d56db",

	"projectname": "********項目名稱********",

	"debugOptions": {

		"hidedInDevtools": []

	},

	"isGameTourist": false,

	"simulatorType": "wechat",

	"simulatorPluginLibVersion": {},

	"condition": {

		"search": {

			"current": -1,

			"list": []

		},

		"conversation": {

			"current": -1,

			"list": []

		},

		"game": {

			"currentL": -1,

			"list": []

		},

		"miniprogram": {

			"current": -1,

			"list": []

		}

	}

}

/sitemap.json

{

  "desc": "易查薪演示",

  "rules": [{

  "action": "allow",

  "page": "*"

  }]

}

/utils/util.js

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章