1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264 |
- import 'dart:convert';
- import 'package:flutter/cupertino.dart';
- import 'package:flutter/material.dart';
- import 'package:flutter_easyrefresh/easy_refresh.dart';
- import 'package:ysairplane/code/YSIssue.dart';
- import 'package:ysairplane/tools/YSNetWorking.dart';
- import 'package:ysairplane/tools/YSTools.dart';
- import 'YSPay.dart';
- import 'YSSearchResult.dart';
- class YSShortGoods extends StatefulWidget {
- @override
- _YSShortGoodsState createState() => _YSShortGoodsState();
- }
- class _YSShortGoodsState extends State<YSShortGoods> {
- int _type = 1;
- bool _isDetail = false;
- bool _isOrder = false;
- int _index,_selected = 0;
- Map _msgDict,_kind;
- List chooses = ['货源','机源'];
- String choose = '货源';
- int _page = 1;
- List _dataArray = [];
- List _priceList = [];
- List _kinds = [];
- TextEditingController _name = TextEditingController();
- TextEditingController _volume = TextEditingController();
- TextEditingController _weight = TextEditingController();
- String _timeStr;
- @override
- void initState() {
- _timeStr = DateTime.now().year.toString()+'-'+DateTime.now().month.toString().padLeft(2,'0')+'-'
- +DateTime.now().day.toString().padLeft(2,'0')+' '+DateTime.now().hour.toString().padLeft(2,'0')+':'+DateTime.now().minute.toString().padLeft(2,'0');
- Future.delayed(Duration(seconds: 0)).then((value){
- _getBackImageData();
- _refreshData();
- });
- super.initState();
- }
- @override
- void dispose() {
- _name.dispose();
- _volume.dispose();
- _weight.dispose();
- super.dispose();
- }
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- backgroundColor: Color(0xFFF1F2F4),
- body: SingleChildScrollView(
- child: Stack(
- children: [
- Container(
- height: MediaQuery.of(context).padding.top+hsp(370),
- width: MediaQuery.of(context).size.width,
- child: Image(
- image: _msgDict==null?AssetImage('lib/images/home3.png'):NetworkImage('${_msgDict['background']}'),
- fit: BoxFit.fill,
- ),
- ),
- if(_msgDict!=null)Container(
- margin: EdgeInsets.only(left: wsp(50),top: MediaQuery.of(context).padding.top+hsp(250)),
- child: RichText(
- text: TextSpan(
- text: '${_msgDict['name']} ',
- style: TextStyle(fontSize: zsp(50),color: Colors.white,fontWeight: FontWeight.bold),
- children: [
- TextSpan(
- text: '${_msgDict['subtitle']}',
- style: TextStyle(fontWeight: FontWeight.normal,fontSize: zsp(28),color: Colors.white.withOpacity(0.5))
- )
- ]
- ),
- ),
- ),
- GestureDetector(
- onTap: (){
- Navigator.pop(context);
- },
- child: Container(
- margin: EdgeInsets.only(left: hsp(30),right: wsp(30),top: MediaQuery.of(context).padding.top+hsp(65)),
- child: Icon(Icons.arrow_back_ios,color: Colors.white,size: hsp(50),),
- ),
- ),
- GestureDetector(
- onTap: (){
- Navigator.of(context).push(
- CupertinoPageRoute(builder: (context){
- return YSSearchResult(type: 3,);
- })
- );
- },
- child: Container(
- margin: EdgeInsets.only(left: hsp(110),top: MediaQuery.of(context).padding.top+hsp(60)),
- width: MediaQuery.of(context).size.width-hsp(340),
- height: hsp(60),
- decoration: BoxDecoration(
- color: Colors.black.withOpacity(0.35),
- borderRadius: BorderRadius.all(Radius.circular(50))
- ),
- padding: EdgeInsets.only(left: wsp(30),right: wsp(30)),
- child: Row(
- children: [
- DropdownButton(
- value: choose,
- items: [
- for(int i=0;i<chooses.length;i++)DropdownMenuItem(child: Text('${chooses[i]}'),value: '${chooses[i]}',),
- ],
- onChanged: (value){
- setState(() {
- choose = value;
- });
- },
- underline: Container(),
- icon: Icon(Icons.keyboard_arrow_down,color: Colors.white.withOpacity(0.5),size: hsp(40),),
- style: TextStyle(fontSize: zsp(26),color: Colors.white),
- dropdownColor: Colors.black45,
- ),
- Container(
- height: hsp(30),
- width: 0.5,
- margin: EdgeInsets.only(left: wsp(10),right: wsp(10)),
- color: Colors.white.withOpacity(0.2),
- ),
- Row(
- children: [
- Icon(Icons.search,color: Colors.white.withOpacity(0.5),size: hsp(50),),
- Text(' 搜商机',style: TextStyle(fontSize: zsp(26),color: Colors.white.withOpacity(0.5)),),
- ],
- )
- ],
- ),
- ),
- ),
- GestureDetector(
- onTap: (){
- Navigator.of(context).push(
- CupertinoPageRoute(
- builder: (context){
- return YSIssue();
- }
- )
- ).then((value){
- if(value!=null&&_type==1){
- _refreshData();
- }
- });
- },
- child: Container(
- margin: EdgeInsets.only(left: hsp(110)+MediaQuery.of(context).size.width-hsp(340),top: MediaQuery.of(context).padding.top+hsp(60)),
- width: hsp(200),
- alignment: Alignment.center,
- child: Text('我要发布',style: TextStyle(fontSize: zsp(30),color: Colors.white),),
- ),
- ),
- Container(
- margin: EdgeInsets.only(top: MediaQuery.of(context).padding.top+hsp(350)),
- width: MediaQuery.of(context).size.width,
- height: MediaQuery.of(context).size.height-MediaQuery.of(context).padding.top-hsp(350),
- decoration: BoxDecoration(
- color: Color(0xFFF1F2F4),
- borderRadius: BorderRadius.only(topLeft: Radius.circular(10),topRight: Radius.circular(10))
- ),
- child: Column(
- children: [
- Row(
- children: [
- GestureDetector(
- onTap: (){
- _type = 1;
- _refreshData();
- },
- child: Container(
- height: hsp(100),
- width: MediaQuery.of(context).size.width/2,
- padding: EdgeInsets.only(top: hsp(30)),
- decoration: BoxDecoration(
- color: _type==1?Colors.white:Color(0xFFF1F2F3),
- borderRadius: BorderRadius.only(topLeft: Radius.circular(10))
- ),
- child: Column(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text('货源',style: TextStyle(fontSize: zsp(34),color: Colors.black,fontWeight: FontWeight.bold),),
- Container(
- height: hsp(6),
- width: wsp(66),
- color: _type==1?Color(0xFF007EFF):Colors.transparent,
- )
- ],
- ),
- ),
- ),
- GestureDetector(
- onTap: (){
- _type = 2;
- _refreshData();
- },
- child: Container(
- height: hsp(100),
- width: MediaQuery.of(context).size.width/2,
- padding: EdgeInsets.only(top: hsp(30)),
- decoration: BoxDecoration(
- color: _type==2?Colors.white:Color(0xFFF1F2F3),
- borderRadius: BorderRadius.only(topRight: Radius.circular(10))
- ),
- child: Column(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text('机源',style: TextStyle(fontSize: zsp(34),color: Colors.black,fontWeight: FontWeight.bold),),
- Container(
- height: hsp(6),
- width: wsp(66),
- color: _type==2?Color(0xFF007EFF):Colors.transparent,
- )
- ],
- ),
- ),
- )
- ],
- ),
- Container(
- height: MediaQuery.of(context).size.height-MediaQuery.of(context).padding.top-hsp(450),
- child: EasyRefresh(
- onRefresh: _refreshData,
- onLoad: _loadMoreData,
- header: TaurusHeader(
- ),
- footer: TaurusFooter(
- ),
- child: ListView.separated(
- itemBuilder: (context,index){
- return _type==1?GestureDetector(
- onTap: (){
- showModalBottomSheet(
- backgroundColor: Colors.transparent,
- isScrollControlled: true,
- context: context,
- builder: (context){
- return Container(
- height: MediaQuery.of(context).size.height*0.5,
- child: Column(
- children: [
- Container(
- height: hsp(100),
- padding: EdgeInsets.only(left: hsp(30),right: hsp(30)),
- decoration: BoxDecoration(
- color: Colors.white,
- borderRadius: BorderRadius.only(topRight: Radius.circular(10),topLeft: Radius.circular(10))
- ),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- GestureDetector(
- child: Text('关闭',style: TextStyle(fontSize: 15,color: Color(0xFF007EFF),decoration: TextDecoration.none),),
- onTap: (){
- Navigator.pop(context);
- },
- ),
- Text('货源详情',style: TextStyle(fontSize: 15,color: Color(0xFF000000),decoration: TextDecoration.none,fontWeight: FontWeight.bold),),
- Container(width: wsp(50),),
- ],
- ),
- ),
- Container(
- height: MediaQuery.of(context).size.height*0.5-hsp(100),
- color: Color(0xFFF7F7F7),
- child: ListView.separated(
- itemBuilder: (context,indexSub){
- return Container(
- padding: EdgeInsets.only(left: hsp(40),right: hsp(40),top: hsp(20),bottom: hsp(20)),
- child: indexSub==0?Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(30),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '货物名称: '
- ),
- TextSpan(
- text: '${_dataArray[index]['goodsName']}',
- style: TextStyle(color: Color(0xFF333333))
- ),
- ]
- ),
- ),
- RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(30),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '性质: '
- ),
- TextSpan(
- text: '${_dataArray[index]['goodsNatureName']}',
- style: TextStyle(color: Color(0xFF333333))
- ),
- ]
- ),
- ),
- Row(
- children: [
- RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(30),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '体积: '
- ),
- TextSpan(
- text: '${_dataArray[index]['goodsVolume']}立方米',
- style: TextStyle(color: Color(0xFF333333))
- ),
- ]
- ),
- ),
- RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(30),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '重量: '
- ),
- TextSpan(
- text: '${_dataArray[index]['goodsWeight']}吨',
- style: TextStyle(color: Color(0xFF333333))
- ),
- ]
- ),
- )
- ],
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- )
- ],
- ):indexSub==1?Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(30),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '出发地: '
- ),
- TextSpan(
- text: '${_dataArray[index]['citySetout']}',
- style: TextStyle(color: Color(0xFF333333))
- ),
- ]
- ),
- ),
- RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(30),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '运货地点:'
- ),
- TextSpan(
- text: '${_dataArray[index]['goodsPlace']}',
- style: TextStyle(color: Color(0xFF333333))
- ),
- ]
- ),
- ),
- RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(30),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '到达地:'
- ),
- TextSpan(
- text: '${_dataArray[index]['cityArrive']}',
- style: TextStyle(color: Color(0xFF333333))
- ),
- ]
- ),
- ),
- RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(30),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '卸货地点:'
- ),
- TextSpan(
- text: '${_dataArray[index]['goodsUnloadingPlace']}',
- style: TextStyle(color: Color(0xFF333333))
- ),
- ]
- ),
- )
- ],
- ):Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(30),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '联系人:'
- ),
- TextSpan(
- text: '${_dataArray[index]['contactPerson']}',
- style: TextStyle(color: Color(0xFF333333))
- ),
- ]
- ),
- ),
- RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(30),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '联系电话:'
- ),
- TextSpan(
- text: '${(_dataArray[index]['phone']).toString().substring(0,3)}****${(_dataArray[index]['phone']).toString().substring(7,(_dataArray[index]['phone']).toString().length)}',
- style: TextStyle(color: Color(0xFF333333))
- ),
- ]
- ),
- ),
- ],
- ),
- );
- },
- separatorBuilder: (context,index){
- return Divider(height: 0.5,thickness: 0.5,color: Color(0xFFE5E5E5),indent: hsp(30),endIndent: hsp(30),);
- },
- itemCount: 3
- ),
- ),
- ],
- ),
- );
- }
- );
- },
- child: Container(
- padding: EdgeInsets.all(hsp(30)),
- color: Colors.white,
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Row(
- children: [
- Text('${_dataArray[index]['citySetout']}',style: TextStyle(fontSize: zsp(40),color: Colors.black,fontWeight: FontWeight.bold),),
- Container(
- height: 2,
- width: wsp(40),
- margin: EdgeInsets.only(left: wsp(20),right: wsp(20)),
- color: Color(0xFFCCCCCC),
- ),
- Text('${_dataArray[index]['cityArrive']}',style: TextStyle(fontSize: zsp(40),color: Colors.black,fontWeight: FontWeight.bold),)
- ],
- ),
- Container(
- child: Text('${_dataArray[index]['setoffTime']}',style: TextStyle(fontSize: zsp(28),color: Color(0xFF333333)),),
- margin: EdgeInsets.only(top: hsp(10),bottom: hsp(10)),
- ),
- RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(24),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '货物名称: '
- ),
- TextSpan(
- text: '${_dataArray[index]['goodsName']}',
- style: TextStyle(color: Color(0xFF333333))
- ),
- TextSpan(
- text: '体积: '
- ),
- TextSpan(
- text: '${_dataArray[index]['goodsVolume']}立方米',
- style: TextStyle(color: Color(0xFF333333))
- ),
- TextSpan(
- text: '性质: '
- ),
- TextSpan(
- text: '${_dataArray[index]['goodsNatureName']}',
- style: TextStyle(color: Color(0xFF333333))
- ),
- TextSpan(
- text: '重量: '
- ),
- TextSpan(
- text: '${_dataArray[index]['goodsWeight']}吨',
- style: TextStyle(color: Color(0xFF333333))
- )
- ]
- ),
- )
- ],
- ),
- ),
- ):GestureDetector(
- onTap: (){
- _index = index;
- _getPriceData();
- },
- child: Container(
- padding: EdgeInsets.all(hsp(30)),
- color: Colors.white,
- child: Column(
- children: [
- Container(
- padding: EdgeInsets.only(bottom: hsp(30)),
- child: Column(
- children: [
- Row(
- children: [
- Text('${_dataArray[index]['setoutInfo']['display']}',style: TextStyle(fontSize: zsp(40),fontWeight: FontWeight.bold,color: Colors.black),),
- Image(height: hsp(60),width: hsp(60),image: AssetImage('lib/images/plane.png'),),
- Text('${_dataArray[index]['arriveInfo']['display']}',style: TextStyle(fontSize: zsp(40),fontWeight: FontWeight.bold,color: Colors.black),),
- ],
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- ),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text('${_dataArray[index]['setoutInfo']['airplanename']}',style: TextStyle(fontSize: zsp(24),color: Color(0xFF999999)),),
- Text('${_dataArray[index]['hour']}',style: TextStyle(fontSize: zsp(20),color: Color(0xFF343434)),),
- Text('${_dataArray[index]['arriveInfo']['airplanename']}',style: TextStyle(fontSize: zsp(24),color: Color(0xFF999999)),),
- ],
- )
- ],
- ),
- ),
- Divider(height: 0.5,thickness: 0.5,color: Color(0xFFEAEAEA),),
- Container(
- height: hsp(70),
- child: Row(
- children: [
- Text('${_dataArray[index]['flightTime']}',style: TextStyle(fontSize: zsp(28),color: Color(0xFF333333)),),
- Text('机型: ${_dataArray[index]['dtFlightInformation']['model']}',style: TextStyle(fontSize: zsp(28),color: Color(0xFF333333)),),
- ],
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- ),
- ),
- Divider(height: 0.5,thickness: 0.5,color: Color(0xFFEAEAEA),),
- Container(
- height: hsp(70),
- child: Row(
- children: [
- RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(24),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '类型: '
- ),
- TextSpan(
- text: '${_dataArray[index]['type']==1?'整机':'拼机'}',
- style: TextStyle(color: Color(0xFF333333))
- ),
- TextSpan(
- text: '体积: '
- ),
- TextSpan(
- text: '${_dataArray[index]['totalVolume']}立方米',
- style: TextStyle(color: Color(0xFF333333))
- ),
- TextSpan(
- text: '重量: '
- ),
- TextSpan(
- text: '${_dataArray[index]['totalWeight']}吨',
- style: TextStyle(color: Color(0xFF333333))
- )
- ]
- ),
- ),
- Text('¥${_dataArray[index]['discountPrice']}',style: TextStyle(fontSize: zsp(40),color: Color(0xFFEA413A),fontWeight: FontWeight.bold),),
- ],
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- ),
- margin: EdgeInsets.only(top: hsp(20)),
- ),
- ],
- ),
- ),
- );
- },
- separatorBuilder: (context,index){
- return Divider(color: Color(0xFFF1F2F4),thickness: 0.5,height: 0.5,);
- },
- itemCount: _dataArray.length,
- padding: EdgeInsets.all(0),
- ),
- ),
- ),
- ],
- ),
- ),
- if(_isOrder==true)GestureDetector(
- onTap: (){
- setState(() {
- _isOrder = false;
- });
- },
- child: Container(
- height: MediaQuery.of(context).size.height,
- width: MediaQuery.of(context).size.width,
- color: Colors.black54,
- child: GestureDetector(
- onTap: (){},
- child: Column(
- children: [
- Container(
- height: MediaQuery.of(context).size.height*0.8-hsp(120),
- width: MediaQuery.of(context).size.width,
- margin: EdgeInsets.only(top: MediaQuery.of(context).size.height*0.2),
- decoration: BoxDecoration(
- color: Color(0xFFF1F2F3),
- borderRadius: BorderRadius.only(topLeft: Radius.circular(10),topRight: Radius.circular(10))
- ),
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Container(
- height: hsp(100),
- decoration: BoxDecoration(
- color: Colors.white,
- borderRadius: BorderRadius.only(topLeft: Radius.circular(10),topRight: Radius.circular(10))
- ),
- padding: EdgeInsets.only(left: 15,right: 15),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Container(width: wsp(50),),
- Text('订单确认',style: TextStyle(fontSize: 15,color: Color(0xFF000000),decoration: TextDecoration.none,fontWeight: FontWeight.bold),),
- GestureDetector(
- child: Text('关闭',style: TextStyle(fontSize: 15,color: Color(0xFF007EFF),decoration: TextDecoration.none,fontWeight: FontWeight.bold),),
- onTap: (){
- setState(() {
- _isOrder = false;
- });
- },
- ),
- ],
- ),
- ),
- Divider(height: 0.5,thickness: 0.5,color: Color(0xFFE5E5E5),),
- Container(
- height: MediaQuery.of(context).size.height*0.8-hsp(220)-0.5,
- child: SingleChildScrollView(
- padding: EdgeInsets.all(0),
- child: Column(
- children: [
- Container(
- padding: EdgeInsets.all(hsp(30)),
- color: Colors.white,
- width: MediaQuery.of(context).size.width,
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Text('使用日期',style: TextStyle(fontSize: zsp(30),color: Color(0xFF9A9A9A)),),
- Container(
- margin: EdgeInsets.only(top: hsp(20)),
- child: Row(
- children: [
- Container(
- height: hsp(120),
- width: MediaQuery.of(context).size.width-hsp(200),
- child: ListView.separated(
- itemBuilder: (context,index){
- return GestureDetector(
- behavior: HitTestBehavior.opaque,
- onTap: (){
- setState(() {
- _selected = index;
- });
- },
- child: Stack(
- children: [
- Container(
- height: hsp(120),
- width: (MediaQuery.of(context).size.width-hsp(230))/3,
- decoration: BoxDecoration(
- color: index==_selected?Color(0xFF007EFF):Color(0xFFF0EEEE),
- borderRadius: BorderRadius.all(Radius.circular(5))
- ),
- alignment: Alignment.center,
- child: Text('${_priceList[index]['time']} \n¥${_priceList[index]['price']}',
- style: TextStyle(fontSize: zsp(20),color: index==_selected?Colors.white:Color(0xFF8B8B8B)),textAlign: TextAlign.center,),
- ),
- if(_selected==index)Container(
- child: Text(timeTag('${_priceList[index]['time']}'),style: TextStyle(fontSize: zsp(16),color: Color(0xFF007EFF)),),
- height: hsp(30),
- padding: EdgeInsets.only(left: wsp(3),right: wsp(3)),
- decoration: BoxDecoration(
- color: Color(0xFFF7F7F7),
- borderRadius: BorderRadius.only(topLeft: Radius.circular(3),bottomRight: Radius.circular(5))
- ),
- alignment: Alignment.center,
- ),
- ],
- ),
- );
- },
- separatorBuilder: (context,index){
- return Container(width: hsp(15),color: Colors.white,);
- },
- itemCount: _priceList.length,
- padding: EdgeInsets.all(0),
- scrollDirection: Axis.horizontal,
- ),
- ),
- GestureDetector(
- onTap: (){
- showModalBottomSheet(
- context: context,
- builder: (context){
- return YSDatePicker(
- choose: (value){
- Map time = {'time':value.split(' ')[0],'price':_priceList[0]['price']};
- int index;
- for(int i=0;i<_priceList.length;i++){
- if(_priceList[i]['time']==time['time']){
- index = i;
- }
- }
- if(index!=null){
- _priceList.removeAt(index);
- }
- setState(() {
- _priceList.insert(0, time);
- });
- },
- );
- }
- );
- },
- behavior: HitTestBehavior.opaque,
- child: Container(
- height: hsp(120),
- width: hsp(140),
- alignment: Alignment.center,
- child: Text('更多\n日期',style: TextStyle(fontSize: zsp(26),color: Color(0xFF007EFF)),),
- ),
- )
- ],
- ),
- ),
- ],
- ),
- ),
- if(_dataArray[_index]['type']==2)Container(
- padding: EdgeInsets.all(hsp(30)),
- margin: EdgeInsets.only(top: hsp(10)),
- width: MediaQuery.of(context).size.width,
- color: Colors.white,
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Text('本次拼机截止时间:${_dataArray[_index]['deadlineTime']}',style: TextStyle(fontSize: zsp(26),color: Color(0xFF999999)),),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text('0吨',style: TextStyle(fontSize: zsp(22),color: Color(0xFF656565)),),
- Container(
- height: hsp(100),
- width: MediaQuery.of(context).size.width-hsp(200),
- child: Slider(
- value: double.parse('${_dataArray[_index]['nowWeight']}'),
- onChanged: (value){
- },
- activeColor: Color(0xFF0079FF),
- min: 0,
- max: 10,
- divisions: 4,
- ),
- ),
- Text('${_dataArray[_index]['totalWeight']}吨',style: TextStyle(fontSize: zsp(22),color: Color(0xFF656565)),),
- ],
- ),
- Container(
- width: MediaQuery.of(context).size.width,
- child: Text('目标${_dataArray[_index]['nowWeight']}吨',style: TextStyle(fontSize: zsp(24),color: Color(0xFF999999)),),
- alignment: Alignment.center,
- ),
- ],
- ),
- ),
- Container(
- padding: EdgeInsets.all(hsp(30)),
- margin: EdgeInsets.only(top: hsp(10)),
- color: Colors.white,
- child: Column(
- children: [
- Container(
- padding: EdgeInsets.only(bottom: hsp(30)),
- child: Column(
- children: [
- Row(
- children: [
- Text('${_dataArray[_index]['setoutInfo']['display']}',style: TextStyle(fontSize: zsp(40),fontWeight: FontWeight.bold,color: Colors.black),),
- Image(height: hsp(60),width: hsp(60),image: AssetImage('lib/images/plane.png'),),
- Text('${_dataArray[_index]['arriveInfo']['display']}',style: TextStyle(fontSize: zsp(40),fontWeight: FontWeight.bold,color: Colors.black),),
- ],
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- ),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text('${_dataArray[_index]['setoutInfo']['airplanename']}',style: TextStyle(fontSize: zsp(24),color: Color(0xFF999999)),),
- Text('${_dataArray[_index]['hour']}',style: TextStyle(fontSize: zsp(20),color: Color(0xFF343434)),),
- Text('${_dataArray[_index]['arriveInfo']['airplanename']}',style: TextStyle(fontSize: zsp(24),color: Color(0xFF999999)),),
- ],
- )
- ],
- ),
- ),
- Divider(height: 0.5,thickness: 0.5,color: Color(0xFFEAEAEA),),
- Container(
- height: hsp(70),
- child: Row(
- children: [
- Text('${_dataArray[_index]['flightTime']}',style: TextStyle(fontSize: zsp(28),color: Color(0xFF333333)),),
- Text('机型: ${_dataArray[_index]['dtFlightInformation']['model']}',style: TextStyle(fontSize: zsp(28),color: Color(0xFF333333)),),
- ],
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- ),
- ),
- Divider(height: 0.5,thickness: 0.5,color: Color(0xFFEAEAEA),),
- Container(
- height: hsp(90),
- alignment: Alignment.centerLeft,
- child: Row(
- children: [
- RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(24),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '类型: '
- ),
- TextSpan(
- text: '${_dataArray[_index]['type']==1?'整机':'拼机'}',
- style: TextStyle(color: Color(0xFF333333))
- ),
- TextSpan(
- text: '体积: '
- ),
- TextSpan(
- text: '${_dataArray[_index]['totalVolume']}立方米',
- style: TextStyle(color: Color(0xFF333333))
- ),
- TextSpan(
- text: '重量: '
- ),
- TextSpan(
- text: '${_dataArray[_index]['totalWeight']}吨',
- style: TextStyle(color: Color(0xFF333333))
- )
- ]
- ),
- ),
- Text('¥${_dataArray[_index]['discountPrice']}',style: TextStyle(fontSize: zsp(40),color: Color(0xFFEA413A),fontWeight: FontWeight.bold),),
- ],
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- ),
- ),
- Divider(height: 0.5,thickness: 0.5,color: Color(0xFFEAEAEA),),
- Container(
- height: hsp(90),
- alignment: Alignment.centerLeft,
- child: RichText(
- text: TextSpan(
- style: TextStyle(fontSize: zsp(24),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '说明: '
- ),
- TextSpan(
- text: '${_dataArray[_index]['explain']}',style: TextStyle(color: Color(0xFF333333))
- ),
- ]
- ),
- ),
- )
- ],
- ),
- ),
- ListView.separated(
- itemBuilder: (context,index){
- return Container(
- height: hsp(90),
- color: Colors.white,
- width: MediaQuery.of(context).size.width,
- padding: EdgeInsets.only(left: hsp(30),right: hsp(30)),
- alignment: Alignment.centerLeft,
- child: index==0?Text(
- '货物信息',style: TextStyle(fontSize: zsp(30),color: Color(0xFF333333),fontWeight: FontWeight.bold),
- ):Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Text(index==1?'名称':index==2?'类型':index==3?'体积':'重量',style: TextStyle(fontSize: zsp(30),color: Color(0xFF999999)),),
- Container(
- height: hsp(90),
- width: MediaQuery.of(context).size.width*0.7,
- alignment: Alignment.centerRight,
- child: index==2?GestureDetector(
- onTap: (){
- FocusScope.of(context).unfocus();
- showModalBottomSheet(
- context: context,
- builder: (context){
- return YSPicker(
- dataArray: _kinds,
- title: 'name',
- choose: (value){
- setState(() {
- _kind = value;
- });
- },
- );
- }
- );
- },
- child: Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- Text(_kind==null?'请选择类型':'${_kind['name']}',style: TextStyle(fontSize: zsp(30),color: Color(0xFF9A9A9A)),),
- Icon(Icons.keyboard_arrow_down,size: hsp(40),color: Color(0xFF9A9A9A))
- ],
- ),
- ):CupertinoTextField(
- placeholder: index==1?'请输入名称':index==3?'请输入体积':'请输入重量',
- placeholderStyle: TextStyle(fontSize: zsp(30),color: Color(0xFF9A9A9A)),
- style: TextStyle(fontSize: zsp(30),color: Color(0xFF9A9A9A)),
- decoration: BoxDecoration(),
- textAlign: TextAlign.right,
- suffix: Text(index==1?'':index==3?'立方米':'吨',style: TextStyle(fontSize: zsp(30),color: Colors.black)),
- controller: index==1?_name:index==3?_volume:_weight,
- keyboardType: index==1?TextInputType.text:TextInputType.numberWithOptions(),
- ),
- ),
- ],
- ),
- );
- },
- separatorBuilder: (context,index){
- return Divider(height: 0.5,thickness: 0.5,color: Color(0xFFEAEAEA),);
- },
- itemCount: 5,
- padding: EdgeInsets.only(top: hsp(10)),
- shrinkWrap: true,
- physics: NeverScrollableScrollPhysics(),
- ),
- if(_dataArray[_index]['type']==2)Container(
- padding: EdgeInsets.all(hsp(30)),
- margin: EdgeInsets.only(top: hsp(10),bottom: hsp(30)),
- color: Colors.white,
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Container(
- width: (MediaQuery.of(context).size.width-hsp(60))*0.6,
- child: SingleChildScrollView(
- child: Stack(
- children: [
- for(int i = 0;i<(_dataArray[_index]['dtAirplaneGoods']).length;i++)Container(
- height: hsp(70),
- width: hsp(70),
- margin: EdgeInsets.only(left: hsp(60)*i),
- decoration: BoxDecoration(
- color: Color(0xFFED5D57),
- borderRadius: BorderRadius.all(Radius.circular(50)),
- border: Border.all(color: Colors.white,width: 1),
- image: DecorationImage(
- image: NetworkImage('${_dataArray[_index]['dtAirplaneGoods'][i]['dtUsers']['avatar']}'),
- fit: BoxFit.fill,
- )
- ),
- )
- ],
- ),
- scrollDirection: Axis.horizontal,
- ),
- ),
- RichText(
- text: TextSpan(
- text: '已有',
- style: TextStyle(fontSize: zsp(30),color: Color(0xFF999999)),
- children: [
- TextSpan(
- text: '4',
- style: TextStyle(color: Color(0xFF007DFF))
- ),
- TextSpan(
- text: '个人在拼该机'
- )
- ]
- ),
- )
- ],
- ),
- )
- ],
- ),
- ),
- ),
- ],
- ),
- ),
- Container(
- height: hsp(120),
- width: MediaQuery.of(context).size.width,
- color: Colors.white,
- padding: EdgeInsets.only(left: wsp(30),right: wsp(30)),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- RichText(
- text: TextSpan(
- text: '参考价(¥)',
- style: TextStyle(fontSize: zsp(22),color: Color(0xFF181818)),
- children: [
- TextSpan(
- text: ' ${_dataArray[_index]['discountPrice']}',
- style: TextStyle(fontSize: zsp(40),color: Color(0xFFFF6600)),
- ),
- TextSpan(
- text: ' 元',
- )
- ]
- ),
- ),
- // GestureDetector(
- // child: Row(
- // children: [
- // Text('明细',style: TextStyle(fontSize: zsp(22),color: Color(0xFF181818)),),
- // Icon(Icons.keyboard_arrow_up,size: hsp(30),color: Color(0xFF007EFF),),
- // ],
- // ),
- // onTap: (){
- // setState(() {
- // _isDetail = !_isDetail;
- // });
- // },
- // ),
- GestureDetector(
- onTap: (){
- FocusScope.of(context).unfocus();
- _postOrderData();
- },
- child: Container(
- height: hsp(70),
- padding: EdgeInsets.only(left: wsp(50),right: wsp(50)),
- decoration: BoxDecoration(
- color: Color(0xFF007EFF),
- borderRadius: BorderRadius.all(Radius.circular(50))
- ),
- alignment: Alignment.center,
- child: Text('立即预约',style: TextStyle(fontSize: zsp(30),color: Colors.white,fontWeight: FontWeight.bold),),
- ),
- )
- ],
- ),
- )
- ],
- ),
- ),
- ),
- ),
- // if(_isDetail==true)GestureDetector(
- // onTap: (){
- // setState(() {
- // _isDetail = false;
- // });
- // },
- // child: Container(
- // height: MediaQuery.of(context).size.height-hsp(120),
- // color: Colors.black45,
- // child: Container(
- // margin: EdgeInsets.only(top: MediaQuery.of(context).size.height-hsp(120)-hsp(370)),
- // height: hsp(370),
- // decoration: BoxDecoration(
- // color: Colors.white,
- // borderRadius: BorderRadius.only(topLeft: Radius.circular(10),topRight: Radius.circular(10))
- // ),
- // child: GestureDetector(
- // onTap: (){},
- // behavior: HitTestBehavior.opaque,
- // child: Column(
- // children: [
- // Container(
- // height: hsp(100),
- // padding: EdgeInsets.only(left: 15,right: 15),
- // child: Row(
- // mainAxisAlignment: MainAxisAlignment.spaceBetween,
- // children: [
- // GestureDetector(
- // child: Text('关闭',style: TextStyle(fontSize: 15,color: Color(0xFF007EFF),decoration: TextDecoration.none),),
- // onTap: (){
- // setState(() {
- // _isDetail = false;
- // });
- // },
- // ),
- // Text('明细',style: TextStyle(fontSize: 15,color: Color(0xFF000000),decoration: TextDecoration.none,fontWeight: FontWeight.bold),),
- // Container(width: wsp(50),),
- // ],
- // ),
- // ),
- // Container(
- // height: hsp(100),
- // color: Color(0xFFF7F8F9),
- // padding: EdgeInsets.only(left: wsp(40),right: wsp(40),bottom: hsp(20),top: hsp(20)),
- // child: Row(
- // mainAxisAlignment: MainAxisAlignment.spaceBetween,
- // children: [
- // Text('VIP尊享座位',style: TextStyle(fontSize: zsp(32),color: Color(0xFF000000),decoration: TextDecoration.none),),
- // Text('¥ 780x 10人',style: TextStyle(fontSize: 15,color: Color(0xFF007EFF),decoration: TextDecoration.none),),
- // ],
- // ),
- // ),
- // Container(
- // color: Color(0xFFF7F8F9),
- // height: hsp(170),
- // child: ListView.builder(
- // padding: EdgeInsets.all(0),
- // itemBuilder: (context,index){
- // return Container(
- // padding: EdgeInsets.only(left: wsp(40),right: wsp(40),bottom: hsp(10)),
- // child: Row(
- // mainAxisAlignment: MainAxisAlignment.spaceBetween,
- // children: [
- // Text('票价',style: TextStyle(fontSize: zsp(28),color: Color(0xFF9A9A9A)),),
- // Text('¥ 770x 10人',style: TextStyle(fontSize: zsp(28),color: Color(0xFF9A9A9A)),),
- // ],
- // ),
- // );
- // },
- // itemCount: 3,
- // ),
- // )
- // ],
- // ),
- // ),
- // ),
- // ),
- // )
- ],
- ),
- ),
- );
- }
- _getBackImageData() async{
- Map dict = await ysRequestHttp(context,type: requestType.get,api: '/app/applets/wallconfigure/get',parameter: {'type':3},isLoading: false,isToken: false);
- if(dict!=null){
- setState(() {
- _msgDict = dict['data'];
- });
- }
- }
- Future<void> _refreshData() async{
- _page = 1;
- Map dict = await ysRequestHttp(context,type: requestType.get,api: '/app/applets/AirTour/list',parameter: {'category':_type==1?3:33,'pageNo':_page,'pageSize':10},isLoading: false,isToken: false);
- if(dict!=null){
- setState(() {
- _dataArray = dict['data']['resultList'];
- });
- }
- }
- Future<void> _loadMoreData() async{
- _page++;
- Map dict = await ysRequestHttp(context,type: requestType.get,api: '/app/applets/AirTour/list',parameter: {'category':_type==1?3:33,'pageNo':_page,'pageSize':10},isLoading: false,isToken: false);
- if(dict!=null){
- setState(() {
- _dataArray.add(dict['data']['resultList']);
- });
- }
- }
- _getPriceData() async{
- Map dict = await ysRequestHttp(context,type: requestType.get,api: '/app/applets/airplaneorder/getDateAndTime',
- parameter: {'time':_timeStr,'type':3,'id':_dataArray[_index]['id']},isLoading: true,isToken: true);
- if(dict!=null){
- _isOrder = true;
- _priceList = dict['data'];
- _getTypeData();
- }
- }
- _getTypeData() async{
- Map dict = await ysRequestHttp(context,type: requestType.get,api: '/app/applets/airplanegoods/type/get',parameter: {},isLoading: true,isToken: false);
- if(dict!=null){
- setState(() {
- _kinds = dict['data'];
- _kind = _kinds[0];
- });
- }
- }
- _postOrderData() async{
- if(_name.text.isEmpty){
- ysFlutterToast(context, '货物名称不能为空');
- return;
- }
- if(_volume.text.isEmpty){
- ysFlutterToast(context, '货物体积不能为空');
- return;
- }
- if(_weight.text.isEmpty){
- ysFlutterToast(context, '货物重量不能为空');
- return;
- }
- Map request = {};
- request['flightTime'] = '2020-10-07 17:59:27';
- request['type'] = 3;
- request['airplaneid'] = _dataArray[_index]['id'];
- request['airportidSetout'] = _dataArray[_index]['airportidSetout'];
- request['airportidArrive'] = _dataArray[_index]['airportidArrive'];
- request['airportidArrive'] = _dataArray[_index]['airportidArrive'];
- Map value = {};
- value['goodsName'] = _name.text;
- value['goodsNatureId'] = _kind['id'];
- value['goodsVolume'] = _volume.text;
- value['goodsWeight'] = _weight.text;
- value['contactPerson'] = '111';
- value['phone'] = '15829646496';
- value['goodsPlace'] = '西安小寨A座国际商务酒店';
- value['goodsLocation'] = '108.985463,34.30501';
- value['goodsUnloadingPlace'] = '上海酒店';
- value['goodsUnloadingLocation'] = '108.985463,34.30501';
- request['dtAirplaneGoods'] = value;
- request['sourceType'] = _dataArray[_index]['type'];
- Map dict = await ysRequestHttp(context,type: requestType.post,api: '/app/applets/airplaneorder/createOrder',parameter: request,isLoading: true,isToken: true);
- if(dict!=null){
- Navigator.of(context).push(
- CupertinoPageRoute(
- builder: (context){
- return YSPay(orderDict: dict['data'],type: payType.goods,);
- }
- )
- );
- }
- }
- }
|