detail.wxml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <!--pages/ticketWaiting/detail.wxml-->
  2. <view class="divide" />
  3. <!-- 发票种类 -->
  4. <view class="formArea">
  5. <view class="lineGroup gray">
  6. <view class="lineInner">
  7. <view class="label small">发票抬头</view>
  8. <view class="content">
  9. <view class="diyInput left">{{buyer.customerName}}</view>
  10. </view>
  11. </view>
  12. </view>
  13. <view class="lineGroup gray">
  14. <view class="lineInner">
  15. <view class="label small">税号</view>
  16. <view class="content">
  17. <view class="diyInput left">{{buyer.customerEntTaxId}}</view>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="lineGroup gray">
  22. <view class="lineInner">
  23. <view class="label small">地址和电话</view>
  24. <view class="content">
  25. <view class="diyInput left">{{buyer.address === null ? '' : buyer.address}} {{buyer.contactPhone === null ? '' : buyer.contactPhone}}</view>
  26. </view>
  27. </view>
  28. </view>
  29. <view class="lineGroup gray">
  30. <view class="lineInner">
  31. <view class="label small">开户行及账号</view>
  32. <view class="content">
  33. <view class="diyInput left">{{buyer.bankName === null ? '' : buyer.bankName}} {{buyer.bankAccountNo === null ? '' : buyer.bankAccountNo}}</view>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="lineGroup">
  38. <view class="lineInner">
  39. <view class="label small">备注说明</view>
  40. <view class="content">
  41. <input
  42. bindtap="getremark"
  43. class="input padding"
  44. value="{{buyer.remark}}"
  45. type="text"
  46. placeholder="请填写备注"
  47. placeholder-class="placeholderStyle"
  48. />
  49. </view>
  50. </view>
  51. </view>
  52. <picker
  53. bindchange="setPayees"
  54. value="{{payeesIndex}}"
  55. range="{{payees}}"
  56. class="lineGroup"
  57. >
  58. <view class="lineInner">
  59. <view class="label middle">
  60. <text class="star">*</text>
  61. 收款人
  62. </view>
  63. <view class="content">
  64. <view class="diyInput nopadding left">
  65. <text wx:if="{{payeesIndex!==''}}">{{payees[payeesIndex]}}</text>
  66. <text wx:else class="placeholderStyle">请选择收款人</text>
  67. </view>
  68. </view>
  69. </view>
  70. </picker>
  71. <view wx:if="{{payeesIndex===0}}" class="lineGroup">
  72. <view class="lineInner">
  73. <view class="label middle" />
  74. <view class="content">
  75. <input
  76. bindinput="getPayees"
  77. value="{{payeesText}}"
  78. class="input"
  79. maxlength="8"
  80. placeholder="请输入收款人"
  81. placeholder-class="placeholderStyle"
  82. />
  83. </view>
  84. </view>
  85. </view>
  86. <picker
  87. bindchange="setReviewers"
  88. value="{{reviewersIndex}}"
  89. range="{{reviewers}}"
  90. class="lineGroup"
  91. >
  92. <view class="lineInner">
  93. <view class="label middle">
  94. <text class="star">*</text>
  95. 复核人
  96. </view>
  97. <view class="content">
  98. <view class="diyInput nopadding left">
  99. <text wx:if="{{reviewersIndex!==''}}">{{reviewers[reviewersIndex]}}</text>
  100. <text wx:else class="placeholderStyle">请选择复核人</text>
  101. </view>
  102. </view>
  103. </view>
  104. </picker>
  105. <view wx:if="{{reviewersIndex===0}}" class="lineGroup">
  106. <view class="lineInner">
  107. <view class="label middle" />
  108. <view class="content">
  109. <input
  110. bindinput="getReviewers"
  111. value="{{reviewersText}}"
  112. class="input"
  113. maxlength="8"
  114. placeholder="请输入复核人"
  115. placeholder-class="placeholderStyle"
  116. />
  117. </view>
  118. </view>
  119. </view>
  120. <picker
  121. bindchange="setDrawers"
  122. value="{{drawersIndex}}"
  123. range="{{drawers}}"
  124. class="lineGroup"
  125. >
  126. <view class="lineInner">
  127. <view class="label middle">
  128. <text class="star">*</text>
  129. 开票人
  130. </view>
  131. <view class="content">
  132. <view class="diyInput nopadding left">
  133. <text wx:if="{{drawersIndex!==''}}">{{drawers[drawersIndex]}}</text>
  134. <text wx:else class="placeholderStyle">请选择开票人</text>
  135. </view>
  136. </view>
  137. </view>
  138. </picker>
  139. <view wx:if="{{drawersIndex===0}}" class="lineGroup">
  140. <view class="lineInner">
  141. <view class="label middle" />
  142. <view class="content">
  143. <input
  144. bindinput="getDrawers"
  145. value="{{drawersText}}"
  146. class="input"
  147. maxlength="8"
  148. placeholder="请输入开票人"
  149. placeholder-class="placeholderStyle"
  150. />
  151. </view>
  152. </view>
  153. </view>
  154. </view>
  155. <view class="formArea noMargin">
  156. <view class="lineGroup">
  157. <view class="lineInner">
  158. <view class="label">总金额</view>
  159. <view class="totalMoney">
  160. <text class="orange">{{cmdParamObject.REQUEST_COMMON_FPKJ.HJJE}}</text>
  161. <text>元</text>
  162. </view>
  163. <view class="content">
  164. <view bindtap="toDetail" class="diyInput right hasArrow">
  165. <text wx:if="{{cmdParamObject.REQUEST_COMMON_FPKJ.COMMON_FPKJ_XMXXS.COMMON_FPKJ_XMXX.length===1}}" class="grayText">查看详情</text>
  166. <text wx:if="{{cmdParamObject.REQUEST_COMMON_FPKJ.COMMON_FPKJ_XMXXS.COMMON_FPKJ_XMXX.length>1}}" class="grayText">共{{cmdParamObject.REQUEST_COMMON_FPKJ.COMMON_FPKJ_XMXXS.COMMON_FPKJ_XMXX.length}}张,查看详情</text>
  167. <i class="iconfont icon-arrowr arrow" />
  168. </view>
  169. </view>
  170. </view>
  171. </view>
  172. </view>
  173. <!-- 接收方式 -->
  174. <view class="formTitle">
  175. <text class="label">接收方式</text>
  176. </view>
  177. <receive bindselect="selectType" />
  178. <view class="formArea">
  179. <view wx:if="{{curValue===1}}" class="lineGroup">
  180. <view class="lineInner">
  181. <view class="label mr">
  182. <text class="star">*</text>
  183. 邮箱
  184. </view>
  185. <view class="content">
  186. <input
  187. bindinput="getDetail"
  188. value="{{interactTypeDetail}}"
  189. class="input"
  190. maxlength="-1"
  191. placeholder="请填写邮箱"
  192. placeholder-class="placeholderStyle"
  193. />
  194. </view>
  195. </view>
  196. </view>
  197. <view wx:if="{{curValue===2}}" class="lineGroup">
  198. <view class="lineInner">
  199. <view class="label mr">
  200. <text class="star">*</text>
  201. 手机号码
  202. </view>
  203. <view class="content">
  204. <input
  205. bindinput="getDetail"
  206. value="{{interactTypeDetail}}"
  207. class="input"
  208. maxlength="-1"
  209. placeholder="请填写手机号码"
  210. placeholder-class="placeholderStyle"
  211. />
  212. </view>
  213. </view>
  214. </view>
  215. </view>
  216. <view class="placeholderBtn" />
  217. <customer-bottom>
  218. <view class="fixedBottom">
  219. <button bindtap="submitData" class="btn">确定</button>
  220. </view>
  221. </customer-bottom>