hyzp_ybqx-Commit074:更新版本为1.4.10+20220104,将各个点位的编号都改为1-x,包括点位信息、点位视频、点位地图、LED信息等

master
WinUser01 4 years ago
parent 568fc2e51b
commit a8f3a8f117

@ -1 +1 @@
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":20220103,"versionName":"1.4.9","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":20220104,"versionName":"1.4.10","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]

@ -278,8 +278,9 @@ class _BasicMapState extends State<BasicMap> {
getStatisData(statisType: 'zptj', ip: listDwinfoGetList2[dwIndex]['dwip'])
.then((mapStatisData) async {
String title =
listDwinfoGetList2[dwIndex]["id"].toString() + '' + listDwinfoGetList2[dwIndex]["dwmc"];
// String title =
// listDwinfoGetList2[dwIndex]["id"].toString() + '' + listDwinfoGetList2[dwIndex]["dwmc"];
String title = (dwIndex + 1).toString() + '' + listDwinfoGetList2[dwIndex]["dwmc"];
List listCoordinate = listDwinfoGetList2[dwIndex]["dwzb"].trim().split('|');
String content = listDwinfoGetList2[dwIndex]["dwms"] +

@ -34,9 +34,11 @@ Future getListBMFMarker({List listDwinfo}) async {
for (int i = 0; i < len; i++) {
BMFMarker marker = BMFMarker(
position: getBMFCoordinate(listDwinfo[i]["dwzb"]),
title: '${listDwinfo[i]["id"].toString()}${listDwinfo[i]["dwmc"]}',
// title: '${listDwinfo[i]["id"].toString()}${listDwinfo[i]["dwmc"]}',
title: '${(i + 1).toString()}${listDwinfo[i]["dwmc"]}',
subtitle: 'test',
identifier: '${listDwinfo[i]["id"].toString()}${listDwinfo[i]["dwmc"]}',
// identifier: '${listDwinfo[i]["id"].toString()}${listDwinfo[i]["dwmc"]}',
identifier: '${(i + 1).toString()}${listDwinfo[i]["dwmc"]}',
icon: 'assets/images/location.png',
/// , annotation viewannotation
@ -58,7 +60,8 @@ Future getListBMFMarker({List listDwinfo}) async {
g_listBMFMarker.add(marker);
g_listBMFText.add(BMFText(
text: '${listDwinfo[i]["id"].toString()}${listDwinfo[i]["dwmc"]}',
// text: '${listDwinfo[i]["id"].toString()}${listDwinfo[i]["dwmc"]}',
text: '${(i + 1).toString()}${listDwinfo[i]["dwmc"]}',
//- off_latitude, - off_longitude
//zoomLevel = 15
// 使 Provider EventBus

@ -160,9 +160,12 @@ class _DwspPageState extends State<DwspGetList> {
child: ListTile(
//leading: new Icon(Icons.phone),
contentPadding: EdgeInsets.symmetric(horizontal: 15.0, vertical: 0),
title: Text(
"${listDwspGetList2[indexRecord]['id'].toString()}. ${listDwspGetList2[indexRecord]['dwmc']}",
title: Text("${(indexRecord + 1).toString()}. ${listDwspGetList2[indexRecord]['dwmc']}",
style: TextStyle(fontSize: 14, fontWeight: FontWeight.bold)),
// title: Text(
// "${listDwspGetList2[indexRecord]['id'].toString()}. ${listDwspGetList2[indexRecord]['dwmc']}",
// style: TextStyle(fontSize: 14, fontWeight: FontWeight.bold)),
// title: Text(
// "${listDwspGetList2[indexRecord]['dwbh'].toString()}. ${listDwspGetList2[indexRecord]['dwmc']}",
// style: TextStyle(fontSize: 14, fontWeight: FontWeight.bold)),

@ -209,8 +209,8 @@ class _LedXsxxPageState extends State<LedXsxxContent> {
_listItems = ['全部']; //LEDListID
int len = listDwinfoGetList2.length;
for (int i = 0; i < len; i++) {
// _listItems.add('${i + 1}${listDwinfoGetList2[i]['dwmc']}');
_listItems.add('${listDwinfoGetList2[i]['id']}${listDwinfoGetList2[i]['dwmc']}');
_listItems.add('${i + 1}${listDwinfoGetList2[i]['dwmc']}');
// _listItems.add('${listDwinfoGetList2[i]['id']}${listDwinfoGetList2[i]['dwmc']}');
}
print('_listItems = $_listItems');
// I/flutter ( 7562): _listItems = [, 21, 22, 23, 24, 25]

@ -131,8 +131,10 @@ class _SbglPageState extends State<DwxxGetList> {
// title: Text(
// "${listSbglGetList2[indexRecord]['dwbh'].toString()}. ${listSbglGetList2[indexRecord]['dwmc']}",
// style: TextStyle(fontSize: 14, fontWeight: FontWeight.bold)),
title: Text(
"${listSbglGetList2[indexRecord]['id'].toString()}. ${listSbglGetList2[indexRecord]['dwmc']}",
// title: Text(
// "${listSbglGetList2[indexRecord]['id'].toString()}. ${listSbglGetList2[indexRecord]['dwmc']}",
// style: TextStyle(fontSize: 14, fontWeight: FontWeight.bold)),
title: Text("${(indexRecord + 1).toString()}. ${listSbglGetList2[indexRecord]['dwmc']}",
style: TextStyle(fontSize: 14, fontWeight: FontWeight.bold)),
subtitle: Text(
'dwIP${listSbglGetList2[indexRecord]['dwip']}${listSbglGetList2[indexRecord]['dwzt']}',

@ -45,7 +45,8 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# version: 1.4.4+20211230
# version: 1.4.6+20211231
# version: 1.4.7+20220101
version: 1.4.9+20220103
# version: 1.4.9+20220103
version: 1.4.10+20220104
environment:
sdk: ">=2.7.0 <3.0.0"

Loading…
Cancel
Save