forked from x/ContextOS
add mp.note
This commit is contained in:
parent
89bffe8ea4
commit
890ac7ea0e
@ -1,4 +1,7 @@
|
|||||||
App({
|
App({
|
||||||
|
toast: function(text) {
|
||||||
|
wx.showToast()
|
||||||
|
},
|
||||||
request: function(data, done, fail) {
|
request: function(data, done, fail) {
|
||||||
var app = this
|
var app = this
|
||||||
data = data || {}
|
data = data || {}
|
||||||
|
@ -1,14 +1,21 @@
|
|||||||
{
|
{
|
||||||
"pages":[
|
"pages": [
|
||||||
"pages/index/index"
|
"pages/index/index",
|
||||||
|
"pages/list/list",
|
||||||
|
"pages/note/note"
|
||||||
],
|
],
|
||||||
"window":{
|
"window": {
|
||||||
"backgroundColor":"#000",
|
"backgroundColor": "#000",
|
||||||
"backgroundColorTop":"#000",
|
"backgroundColorTop": "#000",
|
||||||
"backgroundColorBottom":"#000",
|
"backgroundColorBottom": "#000",
|
||||||
"backgroundTextStyle":"light",
|
"backgroundTextStyle": "light",
|
||||||
"navigationBarBackgroundColor": "#000",
|
"navigationBarBackgroundColor": "#000",
|
||||||
"navigationBarTitleText": "context",
|
"navigationBarTitleText": "context",
|
||||||
"navigationBarTextStyle":"white"
|
"navigationBarTextStyle": "white"
|
||||||
|
},
|
||||||
|
"permission": {
|
||||||
|
"scope.userLocation": {
|
||||||
|
"desc": "你的位置信息将用于记录事情发生地点"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,13 +28,24 @@
|
|||||||
"current": -1,
|
"current": -1,
|
||||||
"list": []
|
"list": []
|
||||||
},
|
},
|
||||||
|
"plugin": {
|
||||||
|
"current": -1,
|
||||||
|
"list": []
|
||||||
|
},
|
||||||
"game": {
|
"game": {
|
||||||
"currentL": -1,
|
"currentL": -1,
|
||||||
"list": []
|
"list": []
|
||||||
},
|
},
|
||||||
"miniprogram": {
|
"miniprogram": {
|
||||||
"current": -1,
|
"current": 0,
|
||||||
"list": []
|
"list": [
|
||||||
|
{
|
||||||
|
"id": -1,
|
||||||
|
"name": "note",
|
||||||
|
"pathName": "pages/note/note",
|
||||||
|
"scene": null
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user