zulin-add.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="cell hflex acenter">
  5. <view class="label">姓名</view>
  6. <u-input placeholder="请输入您的姓名" v-model="name" border="none"> </u-input>
  7. </view>
  8. <view class="cell hflex acenter">
  9. <view class="label">手机号</view>
  10. <u-input placeholder="请输入您的手机号" v-model="mobile" border="none"> </u-input>
  11. </view>
  12. <view class="cell hflex acenter jbetween" @click="show_time = true">
  13. <view class="label">租赁时间</view>
  14. <u-input placeholder="请输入您的租赁时间" v-model="time" border="none" :disabled="true" disabledColor="#FFFFFF">
  15. </u-input>
  16. <image src="static/down.png" mode="aspectFill"></image>
  17. </view>
  18. <view class="cell hflex acenter">
  19. <view class="label">收货地址</view>
  20. <u-input placeholder="请输入您的收货地址" v-model="address" border="none"> </u-input>
  21. </view>
  22. <view class="cell hflex acenter jbetween" @click="show_youhui = true">
  23. <view class="label">优惠券</view>
  24. <!-- <u-input placeholder="不使用" v-model="youhui" border="none" :disabled="true" disabledColor="#FFFFFF" > </u-input> -->
  25. <view class="coupon" :style="coupon.coupon.name == '' ? '' : 'color:#222'">
  26. {{coupon.coupon.name || '不使用'}}
  27. </view>
  28. <image src="static/down.png" mode="aspectFill"></image>
  29. </view>
  30. </view>
  31. <view class="texts vflex">
  32. <text>租赁说明</text>
  33. <text>{{content}}</text>
  34. </view>
  35. <view class="bottom hflex acenter jcenter">
  36. <view class="btn" @click="submit">提交表单</view>
  37. </view>
  38. <u-popup :show="show_time" mode="bottom" :round="14" @close="toclose">
  39. <time-box :list="timelist" @sure="selecttime" @close="toclose"></time-box>
  40. </u-popup>
  41. <u-popup :show="show_youhui" @close="toclose" mode="bottom" :round="13">
  42. <youhui :list="youhui_list" @close="toclose" @select="selectyouhui"></youhui>
  43. </u-popup>
  44. </view>
  45. </template>
  46. <script>
  47. import timeBox from './components/time-box.vue'
  48. import youhui from './components/youhui.vue'
  49. import $api from '@/static/js/api.js'
  50. export default {
  51. components: {
  52. timeBox,
  53. youhui
  54. },
  55. data() {
  56. return {
  57. name: '',
  58. mobile: '',
  59. time: '',
  60. date: '',
  61. address: '',
  62. money: '',
  63. coupon: {
  64. coupon: {
  65. name: ''
  66. }
  67. },
  68. show_time: false,
  69. show_youhui: false,
  70. youhui_list: [],
  71. timelist: [],
  72. content: `1、负责境外上市公司的研究与分析,对重点公司进行调研、跟踪与经营预测,并撰写研究报告,提供投资建议;
  73. 2、结合国家和地方相关经济政策,对行业发展进行前瞻性研究,准确判断行业发展趋势,提供行业研究报告和投资策略;
  74. `
  75. }
  76. },
  77. onLoad() {
  78. this.getlist()
  79. },
  80. onShow() {
  81. },
  82. onPullDownRefresh() {
  83. },
  84. onReachBottom() {
  85. },
  86. methods: {
  87. submit() {
  88. var _this = this
  89. $api.req({
  90. url: 'shoot-equipment-lease',
  91. method: 'POST',
  92. data: {
  93. name: _this.name,
  94. mobile: _this.mobile,
  95. date: _this.date,
  96. address: _this.address,
  97. coupon_id: _this.coupon.id ? _this.coupon.id : '0',
  98. }
  99. }, function(res) {
  100. if (res.code == 10000) {
  101. $api.info(res.msg)
  102. uni.navigateBack()
  103. }
  104. })
  105. },
  106. selectyouhui(e) {
  107. if(e != -1) {
  108. this.coupon = this.youhui_list[e]
  109. }
  110. this.toclose()
  111. },
  112. getlist() {
  113. var _this = this
  114. $api.req({
  115. url: 'user/coupon',
  116. data: {
  117. is_page: 0,
  118. is_expire: 0,
  119. is_use: 0,
  120. type: 'shoot'
  121. }
  122. }, function(res) {
  123. if (res.code == 10000) {
  124. _this.youhui_list = res.data
  125. }
  126. })
  127. const days = 7; // 近7天
  128. const week = ['日', '一', '二', '三', '四', '五', '六']; // 星期
  129. const dateList = Array.from({
  130. length: days
  131. }, (v, i) => i).map(day => {
  132. const date = new Date();
  133. date.setDate(date.getDate() + day);
  134. let month = date.getMonth() + 1
  135. if (month < 10) {
  136. month = '0' + month
  137. }
  138. let today = date.getDate()
  139. if (today < 10) {
  140. today = '0' + today
  141. }
  142. return date.getFullYear() + '-' + month + '-' + today + ' 星期' + week[date.getDay()];
  143. });
  144. for (var i = 0; i < dateList.length; i++) {
  145. this.timelist.push({
  146. id: i + 1,
  147. name: dateList[i],
  148. value: dateList[i].slice(0, 10)
  149. })
  150. }
  151. },
  152. selecttime(e) {
  153. console.log(e);
  154. this.time = this.timelist[e].name
  155. this.date = this.timelist[e].value
  156. this.toclose()
  157. },
  158. toclose() {
  159. this.show_time = false
  160. this.show_youhui = false
  161. },
  162. }
  163. }
  164. </script>
  165. <style lang="scss">
  166. .content {
  167. padding: 20rpx 28rpx;
  168. .box {
  169. background: #FFFFFF;
  170. border-radius: 20rpx;
  171. .cell {
  172. padding: 32rpx 20rpx;
  173. border-bottom: 1px solid #F5F5F5;
  174. .label {
  175. font-size: 30rpx;
  176. font-family: PingFangSC, PingFang SC;
  177. font-weight: 400;
  178. color: #222222;
  179. width: 170rpx;
  180. padding-right: 16rpx;
  181. }
  182. .coupon {
  183. width: calc(100% - 220rpx);
  184. color: rgb(192, 196, 204);
  185. }
  186. image {
  187. width: 30rpx;
  188. height: 30rpx;
  189. }
  190. }
  191. .cell:last-child {
  192. border: none;
  193. }
  194. }
  195. .texts {
  196. text:first-child {
  197. font-size: 26rpx;
  198. font-family: PingFangSC, PingFang SC;
  199. font-weight: 400;
  200. color: #222222;
  201. padding: 28rpx 0 20rpx;
  202. }
  203. text:last-child {
  204. font-size: 24rpx;
  205. font-family: PingFangSC, PingFang SC;
  206. font-weight: 400;
  207. color: #666666;
  208. }
  209. }
  210. .bottom {
  211. position: fixed;
  212. bottom: 0;
  213. left: 0;
  214. width: 750rpx;
  215. height: 166rpx;
  216. background: #FFFFFF;
  217. box-sizing: border-box;
  218. padding: 16rpx 24rpx 66rpx;
  219. .btn {
  220. width: 694rpx;
  221. height: 84rpx;
  222. background: #00B0B0;
  223. border-radius: 42rpx;
  224. font-size: 32rpx;
  225. font-family: PingFangSC, PingFang SC;
  226. font-weight: 500;
  227. color: #FFFFFF;
  228. line-height: 84rpx;
  229. text-align: center;
  230. }
  231. }
  232. }
  233. </style>