index.wxml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <!--pages/index/index.wxml-->
  2. <view class='Theglobalbackground'>
  3. <view class='time_information'>
  4. <view class='thecurrenttime'>
  5. <text>当前时间:{{Y}}-{{M}}-{{D}}</text>
  6. <text>最终缔结人:{{user_name}}</text>
  7. </view>
  8. <view class='information'>
  9. <view class='guitarinformation '>
  10. <text decode="nbsp">校&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 区:</text>
  11. <view bindtap="showPicker_campusName" class='xrgx'>
  12. {{campusNameList[0][campusNameListIndex]}}</view>
  13. <picker isShowPicker="{{isShow_campusName}}" bindsure="sureCallBack_campusName" bindcancle="cancleCallBack_campusName" scrollType="normal" listData="{{campusNameList}}" chooseItemTextStyle="font-size:20rpx" titleText="校区"></picker>
  14. </view>
  15. <view class='guitarinformation jiafeir'>
  16. <text decode="nbsp">缴&nbsp; 费&nbsp;人:</text>
  17. <input type="text" placeholder='输入姓名后请选择学员情况' bindinput='inputStudentName' value='{{jiaofeiren}}'></input>
  18. <radio-group class="radio-group" bindchange="radioChange">
  19. <label class="radio" wx:for-items="{{items}}" wx:key="{{items}}">
  20. <radio value="{{item.value}}" checked="{{qkong?'':item.checked}}" />{{item.value}}
  21. </label>
  22. </radio-group>
  23. </view>
  24. <view class='goods'>
  25. <text decode="nbsp">商&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 品:</text>
  26. <view bindtap="showPicker_goodsTypeList" class="picker">
  27. <image class="picker_img" src='/images/xia.png'></image>{{goodsType[0][goodsTypeIndex]}}</view>
  28. <picker isShowPicker="{{isShow_goodsType}}" bindsure="sureCallBack_goodsType" bindcancle="cancleCallBack_goodsType" scrollType="normal" listData="{{goodsType}}" chooseItemTextStyle="font-size:20rpx" titleText="商品"></picker>
  29. <view bindtap="showPicker_goodsList" class="picker">
  30. <image class="picker_img" src='/images/xia.png'></image>{{goodsList[0][goodsListIndex]}}</view>
  31. <picker isShowPicker="{{isShow_goods}}" bindsure="sureCallBack_goods" bindcancle="cancleCallBack_goods" scrollType="normal" listData="{{goodsList}}" chooseItemTextStyle="font-size:20rpx" titleText="商品"></picker>
  32. </view>
  33. <!-- <view class='guitarinformation' wx:if="{{selectType}}"> -->
  34. <view class='num_input' wx:if="{{selectType}}">
  35. <text decode="nbsp">数&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 量:</text>
  36. <!-- <input type="number" placeholder='' disabled="{{isDelivery=='未交付'}}" bindinput='numberInput' value='{{num}}'></input>
  37. <checkbox-group wx:if="{{selectType}}"> -->
  38. <input class="num_picker" type="number" placeholder='' disabled="{{isDelivery=='未交付'}}" bindinput='numberInput' value='{{num}}'></input>
  39. <checkbox-group wx:if="{{selectType}}">
  40. <text decode="nbsp" class='checkboxx'>未交付: &nbsp;</text>
  41. <checkbox class='checkbox' bindtap='delivery' disabled="{{deliverys}}" checked="{{isDelivery=='未交付'?true:false}}"></checkbox>
  42. </checkbox-group>
  43. </view>
  44. <view class='thetotalamountof '>
  45. <text decode="nbsp">销售金额:</text>
  46. <view class='thetotalamountof_text'>{{sellPrice}} 元</view>
  47. </view>
  48. <view class='pay' wx:if="{{selectType}}">
  49. <text decode="nbsp">预收金额:</text>
  50. <view class='prePrice'>{{prePrice}}</view>
  51. <text>元</text>
  52. </view>
  53. <view class='pay'>
  54. <text decode="nbsp">微信支付:</text>
  55. <input type="digit" placeholder='' bindinput='weichatPayInput' value='{{weichatPay}}'></input>
  56. <text>元</text>
  57. </view>
  58. <view class='pay'>
  59. <text decode="nbsp">口碑支付:</text>
  60. <input type="digit" placeholder='' bindinput='aliPayInput' value='{{aliPay}}'></input>
  61. <text>元</text>
  62. </view>
  63. <view class='pay'>
  64. <text decode="nbsp">现金支付:</text>
  65. <input type="digit" placeholder='' bindinput='cashPayInput' value='{{cashPay}}'></input>
  66. <text>元</text>
  67. </view>
  68. <view class='pay'>
  69. <text decode="nbsp">微店支付:</text>
  70. <input type="digit" placeholder='' bindinput='weidianPayInput' value='{{weidianPay}}'></input>
  71. <text>元</text>
  72. </view>
  73. <view class='pay'>
  74. <text decode="nbsp">押金抵扣:</text>
  75. <input type="digit" placeholder='' bindinput='pledgeDeductionInput' value='{{pledgeDeduction}}'></input>
  76. <text>元</text>
  77. </view>
  78. <view class='pay'>
  79. <text decode="nbsp">合作校前台支付:</text>
  80. <input class='cooperation' type="digit" placeholder='' bindinput='campusPayInput' value='{{campusPay}}'></input>
  81. <text>元</text>
  82. </view>
  83. <view class='guitarinformation '>
  84. <text decode="nbsp">备 &nbsp;&nbsp; &nbsp; 注:</text>
  85. <input type="text" placeholder='' bindinput='commentInput' value='{{comment}}'></input>
  86. </view>
  87. </view>
  88. </view>
  89. <view class='submit'>
  90. <button bindtap='submit'>提交</button>
  91. </view>
  92. </view>