index.wxml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!--pages/order/invoicingDetail/index.wxml-->
  2. <view>
  3. <!-- 开票信息顶部 -->
  4. <view class="detailTop">
  5. <view class='subtitleColor'></view>
  6. <view class="invoicing">开票信息</view>
  7. </view>
  8. <!-- 开票中 -->
  9. <image class='invoicImg' src="{{editInvoicImg}}"></image>
  10. <!-- 开票详情 -->
  11. <!-- 开票中 -->
  12. <view class="invoicDetail">
  13. <!-- 发票类型 -->
  14. <view class="invoicType">
  15. <view class="type">发票类型</view>
  16. <view class="typeInfo">电子普通发票</view>
  17. </view>
  18. <!-- 开票信息 -->
  19. <view class="{{attendantNamesList.length<=2?'invoicTypeInfoOne':'invoicTypeInfo'}}">
  20. <view class="type">开票信息</view>
  21. <view class="typeInfoTitle">
  22. <text wx:for="{{attendantNamesList}}" wx:key="index" class="{{attendantNamesList.length==1?'typeInfoOne':'typeInfo'}}">{{item.attendantNames}}({{item.password}})
  23. </text>
  24. </view>
  25. </view>
  26. <!-- 开票金额 -->
  27. <view class="invoicType">
  28. <view class="type">开票金额</view>
  29. <view class="typeInfo">共{{orderPassword[0].price}}元</view>
  30. </view>
  31. <!-- 公司名称 -->
  32. <view class="invoicType">
  33. <view class="type">公司名称</view>
  34. <input bindinput="bindinput" data-type="company" class="typeInput" type="text" value="{{company}}" placeholder="请输入公司名称" placeholder-style="font-size:22rpx;color: #959595;" />
  35. </view>
  36. <!-- 税号 -->
  37. <view class="invoicType">
  38. <view class="type">税号</view>
  39. <input bindinput="bindinput" data-type="dutyNumber" class="typeInput" type="text" value="{{dutyNumber}}" placeholder="请输入税号" placeholder-style="font-size:22rpx;color: #959595;" />
  40. </view>
  41. <!-- 接收邮箱 -->
  42. <view class="invoicEmail">
  43. <view class="type">接收邮箱</view>
  44. <input bindinput="bindinput" data-type="email" class="typeInput" type="text" value="{{email}}" placeholder="请填写电子邮箱" placeholder-style="font-size:22rpx;color: #959595;" />
  45. </view>
  46. </view>
  47. <!-- 底部提交 -->
  48. <view>
  49. <view class="editInfo">
  50. <!-- 修改开票信息按钮 -->
  51. <view class="infobtn" bindtap="submit">提交</view>
  52. </view>
  53. </view>
  54. </view>