yuyue-vip.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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">
  23. <view class="label">拍摄预算</view>
  24. <u-input placeholder="请输入您的预算资金" v-model="price" border="none"> </u-input>
  25. </view>
  26. <view class="cell hflex acenter jbetween" @click="show_youhui = true">
  27. <view class="label">优惠券</view>
  28. <!-- <u-input placeholder="不使用" v-model="coupon.name || '不使用'" border="none" :disabled="true"
  29. disabledColor="#FFFFFF"> </u-input> -->
  30. <view class="coupon" :style="coupon.coupon.name ? '' : 'color:#222'">
  31. {{coupon.coupon.name || '不使用'}}
  32. </view>
  33. <image src="static/down.png" mode="aspectFill"></image>
  34. </view>
  35. </view>
  36. <view class="bottom hflex acenter jcenter">
  37. <view class="btn" @click="submit">提交表单</view>
  38. </view>
  39. <u-popup :show="show_time" mode="bottom" :round="14" @close="toclose">
  40. <time-box :list="timelist" @sure="selecttime" @close="toclose"></time-box>
  41. </u-popup>
  42. <u-popup :show="show_youhui" @close="toclose" mode="bottom" :round="13">
  43. <youhui :list="youhui_list" @close="toclose" @select="selectyouhui"></youhui>
  44. </u-popup>
  45. </view>
  46. </template>
  47. <script>
  48. import timeBox from './components/time-box.vue'
  49. import youhui from './components/youhui.vue'
  50. import $api from '@/static/js/api.js'
  51. export default {
  52. components: {
  53. timeBox,
  54. youhui
  55. },
  56. data() {
  57. return {
  58. name: '',
  59. mobile: '',
  60. time: '',
  61. date: '',
  62. address: '',
  63. price: '',
  64. youhui: '',
  65. show_time: false,
  66. show_youhui: false,
  67. youhui_list: [],
  68. timelist: [],
  69. coupon: {
  70. coupon: {
  71. name: ''
  72. }
  73. },
  74. }
  75. },
  76. onLoad() {
  77. this.getlist()
  78. },
  79. onShow() {
  80. },
  81. onPullDownRefresh() {
  82. },
  83. onReachBottom() {
  84. },
  85. methods: {
  86. submit() {
  87. var _this = this
  88. $api.req({
  89. url: 'shoot-appointment',
  90. method: 'POST',
  91. data: {
  92. name: _this.name,
  93. mobile: _this.mobile,
  94. date: _this.date,
  95. address: _this.address,
  96. price: _this.price,
  97. coupon_id: _this.coupon.id ? _this.coupon.id : '0',
  98. }
  99. }, function(res) {
  100. $api.info(res.msg)
  101. if (res.code == 10000) {
  102. uni.navigateBack()
  103. }
  104. })
  105. },
  106. selectyouhui(e) {
  107. console.log(e);
  108. if(e != -1) {
  109. this.coupon = this.youhui_list[e]
  110. }
  111. this.toclose()
  112. },
  113. getlist() {
  114. var _this = this
  115. $api.req({
  116. url: 'user/coupon',
  117. data: {
  118. is_page: 0,
  119. is_expire: 0,
  120. is_use: 0,
  121. type: 'shoot'
  122. }
  123. }, function(res) {
  124. if (res.code == 10000) {
  125. _this.youhui_list = res.data
  126. }
  127. })
  128. const days = 7; // 近7天
  129. const week = ['日', '一', '二', '三', '四', '五', '六']; // 星期
  130. const dateList = Array.from({
  131. length: days
  132. }, (v, i) => i).map(day => {
  133. const date = new Date();
  134. date.setDate(date.getDate() + day);
  135. let month = date.getMonth() + 1
  136. if (month < 10) {
  137. month = '0' + month
  138. }
  139. let today = date.getDate()
  140. if (today < 10) {
  141. today = '0' + today
  142. }
  143. return date.getFullYear() + '-' + month + '-' + today + ' 星期' + week[date.getDay()];
  144. });
  145. for (var i = 0; i < dateList.length; i++) {
  146. this.timelist.push({
  147. id: i + 1,
  148. name: dateList[i],
  149. value: dateList[i].slice(0, 10)
  150. })
  151. }
  152. },
  153. selecttime(e) {
  154. console.log(e);
  155. this.time = this.timelist[e].name
  156. this.date = this.timelist[e].value
  157. this.toclose()
  158. },
  159. toclose() {
  160. this.show_time = false
  161. this.show_youhui = false
  162. },
  163. }
  164. }
  165. </script>
  166. <style lang="scss">
  167. .content {
  168. padding: 20rpx 28rpx;
  169. .box {
  170. background: #FFFFFF;
  171. border-radius: 20rpx;
  172. .cell {
  173. padding: 32rpx 20rpx;
  174. border-bottom: 1px solid #F5F5F5;
  175. .label {
  176. font-size: 30rpx;
  177. font-family: PingFangSC, PingFang SC;
  178. font-weight: 400;
  179. color: #222222;
  180. width: 170rpx;
  181. padding-right: 16rpx;
  182. }
  183. .coupon {
  184. width: calc(100% - 220rpx);
  185. color: rgb(192, 196, 204);
  186. }
  187. image {
  188. width: 30rpx;
  189. height: 30rpx;
  190. }
  191. }
  192. .cell:last-child {
  193. border: none;
  194. }
  195. }
  196. .bottom {
  197. position: fixed;
  198. bottom: 0;
  199. left: 0;
  200. width: 750rpx;
  201. height: 166rpx;
  202. background: #FFFFFF;
  203. box-sizing: border-box;
  204. padding: 16rpx 24rpx 66rpx;
  205. .btn {
  206. width: 694rpx;
  207. height: 84rpx;
  208. background: #00B0B0;
  209. border-radius: 42rpx;
  210. font-size: 32rpx;
  211. font-family: PingFangSC, PingFang SC;
  212. font-weight: 500;
  213. color: #FFFFFF;
  214. line-height: 84rpx;
  215. text-align: center;
  216. }
  217. }
  218. }
  219. </style>