detail.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <ion-view view-title="货源信息" cache-view="false">
  2. <ion-content>
  3. <div class="list">
  4. <img ng-src="{{vm.picUrl}}" style="width:100%;"/>
  5. <div class="list" >
  6. <div class="item item-avatar" style="border-width:0">
  7. <img ng-src="{{user.data.avatar | avator}}" />
  8. <h2 style="white-space:normal">【{{vm.begin_address | fullAddress}}】-【{{vm.end_address | fullAddress}}】的货源信息</h2>
  9. <p>价格:<b style="color:red">¥{{vm.price}}</b></p>
  10. </div>
  11. <div class="item item-body">
  12. <p>
  13. 发布时间:{{vm.created_at}}
  14. </p>
  15. <p>出发地:{{vm.begin_address | fullAddress}}</p>
  16. <p>途经:{{vm.midway_address | fullAddress}}</p>
  17. <p>目的地:{{vm.end_address | fullAddress}}</p>
  18. <p>货物名称:{{vm.title}}</p>
  19. <p>
  20. {{vm.detail}}
  21. </p>
  22. </div>
  23. <div class="item item-body">
  24. <p>联系人:{{vm.contact_name}}</p>
  25. <p>联系电话:{{vm.contact_phone}}</p>
  26. <p>信息有效期:{{vm.expiry_date}}</p>
  27. </div>
  28. </div>
  29. <div class="row padding">
  30. <div class="col-50">
  31. <button type="button" ng-click="bill()" class="button button-full button-positive">立马拍单</button>
  32. </div>
  33. <div class="col-50">
  34. <a ng-href="tel:{{vm.contact_phone}}" class="button button-full button-energized">拨打电话</a>
  35. </div>
  36. </div>
  37. </div>
  38. </ion-content>
  39. </ion-view>