default_app.js 1.26 KB
use DMAMANAGER
db.auth("mongoapp", "mOng0@pp")
db.dma_entity_config.drop()

db.createCollection("dma_entity_config")

db.dma_entity_config.insertOne(
	{
		"entityName" : "default",
		"home" : "WelcomeDMA",
		"firstPage" : "WelcomeDMA",
		"screenList" : [ 
			{
				"source" : "WelcomeDMA",
				"dynamicApi" : null,
				"dynamicDataBinding" : [],
				"templateType" : "static",
				"uiJson" : "{\"$jason\":{\"head\":{\"title\":\"FirstPageTemplate\",\"actions\":{\"$load\":{\"type\":\"$set\",\"options\":{\"background\":\"#ffffff\"},\"success\":{\"type\":\"$render\"},\"error\":{}},\"$on.back\":{\"options\":{\"allowback\":\"false\"}}},\"templates\":{\"body\":{\"header\":{\"style\":{\"background\":\"{{$get.background}}\"}},\"style\":{\"background\":\"{{$get.background}}\",\"border\":\"none\"},\"sections\":[{\"items\":[{\"type\":\"vertical\",\"style\":{\"align\":\"center\",\"width\":\"100%\",\"height\":\"85%\"},\"components\":[{\"type\":\"label\",\"text\":\"Welcome to DMA\",\"style\":{\"size\":\"30\",\"align\":\"center\",\"color\":\"#555555\"},\"visible\":\"true\"}]}]}]}}}}}",
				"actionList" : [],
				"globalInputList" : [],
				"globalOutputList" : []
			}
		],
		"createDate" : new Date(),
		"lastUpdateDate" : new Date(),
		"createBy" : "system",
		"lastUpdateBy" : "system"
	}
)