coupon.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. <template>
  2. <view class="content">
  3. <view class="scroll">
  4. <view class="title">
  5. 选择优惠券种类
  6. </view>
  7. <view class="card row">
  8. <view :class="checkIndex === 1?'type type-color':'type'" @click="checkIndex = 1">
  9. 代金券
  10. </view>
  11. <view :class="checkIndex === 2?'type type-color':'type'" @click="checkIndex = 2">
  12. 满减券
  13. </view>
  14. <view :class="checkIndex === 3?'type type-color':'type'" @click="checkIndex = 3">
  15. 折扣券
  16. </view>
  17. <view :class="checkIndex === 4?'type type-color':'type'" @click="checkIndex = 4">
  18. 新用户下单券
  19. </view>
  20. </view>
  21. <!-- 代金券 -->
  22. <view class="" v-if="checkIndex === 1">
  23. <input type="digit" placeholder="请输入代金券金额" class="input-card" v-model="amount" />
  24. <view class="row">
  25. <input placeholder="请设置起始时间" :disabled="true" class="input-card half" disable @click="showStart = true"
  26. v-model="startTime" />
  27. -
  28. <input placeholder="请设置截止时间" :disabled="true" class="input-card half" disabled @click="showEnd = true"
  29. v-model="endTime" />
  30. </view>
  31. <input type="digit" placeholder="请输入优惠券数量" class="input-card" v-model="num" />
  32. </view>
  33. <!-- 满减券 -->
  34. <view class="" v-if="checkIndex === 2">
  35. <input type="digit" placeholder="请输入满多少元" class="input-card" v-model="max" />
  36. <input type="digit" placeholder="请输入减多少元" class="input-card" v-model="amount" />
  37. <view class="row">
  38. <input placeholder="请设置起始时间" :disabled="true" class="input-card half" disabled @click="showStart = true"
  39. v-model="startTime" />
  40. -
  41. <input placeholder="请设置截止时间" :disabled="true" class="input-card half" disabled @click="showEnd = true"
  42. v-model="endTime" />
  43. </view>
  44. <input type="digit" placeholder="请输入优惠券数量" class="input-card" v-model="num" />
  45. </view>
  46. <!-- 折扣券 -->
  47. <view class="" v-if="checkIndex === 3">
  48. <input type="digit" placeholder="请输入折扣 例:0.8" class="input-card" v-model="amount" />
  49. <view class="row">
  50. <input placeholder="请设置起始时间" :disabled="true" class="input-card half" disabled @click="showStart = true"
  51. v-model="startTime" />
  52. -
  53. <input placeholder="请设置截止时间" :disabled="true" class="input-card half" disabled @click="showEnd = true"
  54. v-model="endTime" />
  55. </view>
  56. <input type="digit" placeholder="请输入优惠券数量" class="input-card" v-model="num" />
  57. </view>
  58. </view>
  59. <view class="bottom-btn">
  60. <view class="button-dom" @click="push">
  61. 设置优惠券
  62. </view>
  63. </view>
  64. <!-- 日营业额 查询日期选择 -->
  65. <u-picker v-model="showStart" mode="time" start-year="2020" :params="dateParams" @confirm="startConfirm">
  66. </u-picker>
  67. <!-- 日营业额 查询日期选择 -->
  68. <u-picker v-model="showEnd" mode="time" start-year="2020" :params="dateParams" @confirm="endConfirm"></u-picker>
  69. </view>
  70. </template>
  71. <script>
  72. export default {
  73. data() {
  74. return {
  75. // 当前选择的优惠券类型
  76. checkIndex: 1,
  77. // 设置开始时间
  78. showStart: false,
  79. // 设置结束时间
  80. showEnd: false,
  81. // 时间格式化
  82. dateParams: {
  83. year: true,
  84. month: true,
  85. day: true,
  86. hour: false,
  87. minute: false,
  88. second: false
  89. },
  90. // 满多少金额
  91. max: "",
  92. // 开始时间
  93. startTime: "",
  94. // 结束时间
  95. endTime: "",
  96. // 金额 折扣
  97. amount: "",
  98. // 数量
  99. num: "",
  100. }
  101. },
  102. methods: {
  103. // 提交数据
  104. push() {
  105. let _this = this;
  106. if (this.startTime === "") {
  107. this.$u.toast('请选择开始时间')
  108. return false;
  109. }
  110. if (this.endTime === "") {
  111. this.$u.toast('请选择结束时间')
  112. return false;
  113. }
  114. if (this.num === "") {
  115. this.$u.toast('请输入优惠券数量')
  116. return false;
  117. }
  118. if (this.checkIndex === 1) {
  119. if (this.amount === "") {
  120. this.$u.toast('请输入代金券金额')
  121. return false;
  122. }
  123. this.request("/admin_coupon/set", {
  124. type: 1,
  125. max: '',
  126. amount: this.amount,
  127. start_time: this.startTime,
  128. end_time: this.endTime,
  129. num: this.num
  130. }, "GET").then(res => {
  131. console.log(res)
  132. if (res.code === 1) {
  133. _this.$u.toast('添加成功')
  134. // 开始时间
  135. _this.startTime = ""
  136. // 结束时间
  137. _this.endTime = ""
  138. // 金额 折扣
  139. _this.amount = ""
  140. // 数量
  141. _this.num = ""
  142. }
  143. })
  144. }
  145. if (this.checkIndex === 2) {
  146. if (this.max === "") {
  147. this.$u.toast('请输入条件金额')
  148. return false;
  149. }
  150. if (this.amount === "") {
  151. this.$u.toast('请输入满减的金额')
  152. return false;
  153. }
  154. this.request("/admin_coupon/set", {
  155. type: 2,
  156. max: this.max,
  157. amount: this.amount,
  158. start_time: this.startTime,
  159. end_time: this.endTime,
  160. num: this.num
  161. }, "GET").then(res => {
  162. console.log(res)
  163. if (res.code === 1) {
  164. _this.$u.toast('添加成功')
  165. // 开始时间
  166. _this.startTime = ""
  167. // 结束时间
  168. _this.endTime = ""
  169. // 金额 折扣
  170. _this.amount = ""
  171. // 数量
  172. _this.num = ""
  173. // 满
  174. _this.max = ""
  175. }
  176. })
  177. }
  178. if (this.checkIndex === 3) {
  179. if (this.amount === "") {
  180. this.$u.toast('请输入折扣')
  181. return false;
  182. }
  183. this.request("/admin_coupon/set", {
  184. type: 3,
  185. amount: this.amount,
  186. start_time: this.startTime,
  187. end_time: this.endTime,
  188. num: this.num
  189. }, "GET").then(res => {
  190. console.log(res)
  191. if (res.code === 1) {
  192. _this.$u.toast('添加成功')
  193. // 开始时间
  194. _this.startTime = ""
  195. // 结束时间
  196. _this.endTime = ""
  197. // 金额 折扣
  198. _this.amount = ""
  199. // 数量
  200. _this.num = ""
  201. }
  202. })
  203. }
  204. if (this.checkIndex === 4) {
  205. }
  206. },
  207. // 开始时间
  208. startConfirm(e) {
  209. console.log(e)
  210. this.startTime = e.year + "-" + e.month + "-" + e.day
  211. },
  212. // 结束时间
  213. endConfirm(e) {
  214. console.log(e)
  215. this.endTime = e.year + "-" + e.month + "-" + e.day
  216. },
  217. }
  218. }
  219. </script>
  220. <style lang="scss">
  221. .title {
  222. font-size: 36rpx;
  223. width: 93%;
  224. margin: 0 auto;
  225. padding: 20rpx 0;
  226. }
  227. .scroll {
  228. height: 90vh;
  229. overflow-y: scroll;
  230. }
  231. .bottom-btn {
  232. height: 10vh;
  233. display: flex;
  234. flex-direction: column;
  235. align-items: center;
  236. justify-content: center;
  237. .button-dom {
  238. background-color: #F6B301;
  239. color: #FFFFFF;
  240. border-radius: 50rpx;
  241. height: 80rpx;
  242. width: 93%;
  243. text-align: center;
  244. line-height: 80rpx;
  245. }
  246. }
  247. .card {
  248. background-color: #FFFFFF;
  249. width: 93%;
  250. margin: 0 auto;
  251. padding: 30rpx;
  252. flex-wrap: wrap;
  253. padding: 30rpx;
  254. height: 240rpx;
  255. border-radius: 30rpx;
  256. .type {
  257. width: 45%;
  258. background-color: #FFE3A0;
  259. padding: 20rpx;
  260. color: #E68500;
  261. margin-bottom: 20rpx;
  262. text-align: center;
  263. border-radius: 20rpx;
  264. }
  265. .type-color {
  266. background-color: #F6B301;
  267. color: #FFFFFF;
  268. }
  269. }
  270. .input-card {
  271. background-color: #fff;
  272. width: 93%;
  273. height: 80rpx;
  274. border-radius: 20rpx;
  275. margin: 0 auto;
  276. margin-top: 30rpx;
  277. text-indent: 1em;
  278. }
  279. .row {
  280. width: 93%;
  281. margin: 0 auto;
  282. }
  283. .half {
  284. width: 40%;
  285. padding: 0;
  286. margin: 0;
  287. margin-top: 30rpx;
  288. }
  289. </style>