monthlyDrawCarousel.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>转盘抽奖</title>
  7. <style>
  8. .el-overlay {
  9. background-color:rgba(0, 0, 0, 0.8);
  10. }
  11. ::-webkit-scrollbar {
  12. width: 6px;
  13. height: 6px;
  14. }
  15. ::-webkit-scrollbar-track {
  16. width: 3px;
  17. background: rgba(#101F1C, 0.1);
  18. -webkit-border-radius: 2em;
  19. -moz-border-radius: 2em;
  20. border-radius: 2em;
  21. }
  22. ::-webkit-scrollbar-thumb {
  23. background-color: rgba(144,147,153,.5);
  24. background-clip: padding-box;
  25. min-height: 28px;
  26. -webkit-border-radius: 2em;
  27. -moz-border-radius: 2em;
  28. border-radius: 2em;
  29. transition: background-color .3s;
  30. cursor: pointer;
  31. }
  32. ::-webkit-scrollbar-thumb:hover {
  33. background-color: rgba(144,147,153,.3);
  34. }
  35. * {
  36. margin: 0;
  37. padding: 0;
  38. box-sizing: border-box;
  39. }
  40. #app {
  41. background: url('https://xiaoyou.dgtis.com/images/image/2023/09/12/5opx47olb1unf4po3vxt.png') no-repeat;
  42. /* background: url('https://xiaoyou.dgtis.com/images/image/2023/09/19/y5epqefrpodtfzyw0qd9.png') no-repeat; */
  43. background-size: 100% 100%;
  44. width: 640px;
  45. height: 680px;
  46. margin: 0 auto;
  47. margin-top: 20px;
  48. }
  49. .el-dialog__body{
  50. padding-top: 0px !important;
  51. }
  52. [v-cloak] {
  53. display: none;
  54. }
  55. .rules{
  56. cursor: pointer;
  57. position: absolute;
  58. width: 50px;
  59. height: 50px;
  60. background: #fff;
  61. border-radius: 50%;
  62. display: flex;
  63. justify-content: center;
  64. align-items: center;
  65. font-size: 14px;
  66. font-weight: 600;
  67. left: 8%;
  68. top: 22%;
  69. }
  70. .recordBtn {
  71. cursor: pointer;
  72. position: absolute;
  73. width: 50px;
  74. height: 50px;
  75. background: #fff;
  76. border-radius: 50%;
  77. display: flex;
  78. justify-content: center;
  79. align-items: center;
  80. font-size: 14px;
  81. font-weight: 600;
  82. right: 8%;
  83. top: 22%;
  84. }
  85. .recordBtn>img {
  86. width: 80px;
  87. height: auto;
  88. }
  89. .container {
  90. overflow: hidden;
  91. width: 500px;
  92. height: 500px;
  93. margin: 0 auto;
  94. position: relative;
  95. top: 22%;
  96. }
  97. .prize-list {
  98. width: 100%;
  99. height: 100%;
  100. border-radius: 50%;
  101. border: 10px solid #98d3fc;
  102. overflow: hidden;
  103. }
  104. .prize-item {
  105. /*border: 2px solid red;*/
  106. position: absolute;
  107. left: 0;
  108. right: 0;
  109. top: -10px;
  110. margin: auto;
  111. }
  112. .prize-item img {
  113. width: 35%;
  114. /* height: 25%; */
  115. margin: 35px auto 10px;
  116. display: block;
  117. }
  118. .prize-item p {
  119. color: #fff;
  120. font-size: 12px;
  121. text-align: center;
  122. line-height: 20px;
  123. }
  124. .btn {
  125. width: 80px;
  126. height: 110px;
  127. background: url('https://xiaoyou.dgtis.com/images/image/2023/09/12/xvtwunkntyc65fngc9pb.png') no-repeat center / 100% 100%;
  128. position: absolute;
  129. left: 0;
  130. right: 0;
  131. top: -5%;
  132. bottom: 0;
  133. margin: auto;
  134. cursor: pointer;
  135. }
  136. /* .btn::before {
  137. content: "";
  138. width: 41px;
  139. height: 39px;
  140. background: url('https://xiaoyou.dgtis.com/images/image/2023/08/15/2vac6uuqd3gpbl35l8e1.png') no-repeat center / 100% 100%;
  141. position: absolute;
  142. left: 0;
  143. right: 0;
  144. top: -30px;
  145. margin: auto;
  146. -webkit-transform: rotate(-5deg);
  147. transform: rotate(-5deg);
  148. } */
  149. .recordListBox{
  150. max-height: 200px;
  151. overflow: auto;
  152. }
  153. .title{
  154. font-size: 15px;
  155. font-weight: 600;
  156. }
  157. .recordItem{
  158. display: flex;
  159. justify-content: space-around;
  160. align-items: center;
  161. margin: 10px 0;
  162. }
  163. </style>
  164. </head>
  165. <body>
  166. <div id="app" v-cloak class="app">
  167. <div class="rules" @click="showRules">
  168. 抽奖<br>规则
  169. </div>
  170. <!-- <div class="recordBtn" @click="showRecordList">
  171. 获奖<br>名单
  172. </div> -->
  173. <!-- <div class="recordBtn" @click="showRecordList">
  174. <img src="https://xiaoyou.dgtis.com/images/image/2023/09/06/lt1vbg426idwq725ysdm.png" alt="抽奖记录">
  175. </div> -->
  176. <div class="container">
  177. <div class="prize-list" ref="prizeWrap" :style="bgColor">
  178. <div class="prize-item" v-for="(item, index) in prizeList" :style="prizeStyle(index)">
  179. <img :src="item.imgUrl" alt="">
  180. <p>{{ item.prizeName }}</p>
  181. </div>
  182. </div>
  183. <div class="btn" @click="start"></div>
  184. </div>
  185. <el-dialog
  186. v-model="dialogVisible"
  187. title="抽奖规则"
  188. width="80%"
  189. center
  190. >
  191. <div style="max-height: 200px;overflow: auto;" v-html="rule"></div>
  192. </el-dialog>
  193. <el-dialog
  194. v-model="dialogRecordList"
  195. title="获奖名单"
  196. width="80%"
  197. center
  198. >
  199. <div class="recordListBox">
  200. <div class="recordItem title">
  201. <div style="width: 30%;text-align: center;">姓名</div>
  202. <div style="width: 30%;text-align: center;">奖品</div>
  203. <div style="width: 40%;text-align: center;">获奖时间</div>
  204. </div>
  205. <el-empty description="暂无数据" v-if="recordList.length==0" :image-size="20"></el-empty>
  206. <div class="recordItem" v-for="(item, index) in recordList">
  207. <div style="width: 30%;text-align: center;">{{item.userName}}</div>
  208. <div style="width: 30%;text-align: center;">{{item.prizeName}}</div>
  209. <div style="width: 40%;text-align: center;">{{item.createTime}}</div>
  210. </div>
  211. </div>
  212. </el-dialog>
  213. </div>
  214. </body>
  215. <script src="./js/vue.global.js"></script>
  216. <link href="./css/index.css" rel="stylesheet">
  217. <script src="./js/index.full.min.js"></script>
  218. <script src="./js/jquery.js"></script>
  219. <script>
  220. const {
  221. createApp,
  222. onBeforeMount,
  223. onMounted,
  224. onUnmounted,
  225. ref,
  226. reactive,
  227. toRefs,
  228. computed,
  229. nextTick
  230. } = Vue
  231. createApp({
  232. setup() {
  233. const state = reactive({
  234. recordList:[],
  235. dialogRecordList:false,
  236. dialogVisible:false,
  237. rule:'',
  238. token: '',
  239. actId: '',
  240. prizeList: [
  241. ], // 后台配置的奖品数据
  242. isRunning: false, // 是否正在抽奖
  243. baseRunAngle: 360 * 5, // 总共转动角度 至少5圈
  244. prizeId: 0, // 中奖id
  245. })
  246. const prizeWrap = ref(null)
  247. // 平均每个奖品角度
  248. const rotateAngle = computed(() => {
  249. const _degree = 360 / state.prizeList.length
  250. return _degree
  251. })
  252. // 要执行总角度数
  253. const totalRunAngle = computed(() => {
  254. return state.baseRunAngle + 360 - state.prizeId * rotateAngle.value - rotateAngle.value / 2
  255. })
  256. // 计算绘制转盘背景
  257. const bgColor = computed(() => {
  258. const _len = state.prizeList.length
  259. const colorList = ['#5352b3', '#363589']
  260. let colorVal = ''
  261. for (let i = 0; i < _len; i++) {
  262. colorVal += `${colorList[i % 2]} ${rotateAngle.value * i}deg ${rotateAngle.value * (i + 1)}deg,`
  263. }
  264. return `
  265. background: conic-gradient(${colorVal.slice(0, -1)});
  266. `
  267. })
  268. // 每个奖品布局
  269. const prizeStyle = computed(() => {
  270. const _degree = rotateAngle.value
  271. return (i) => {
  272. return `
  273. width: ${2 * 250 * Math.sin(_degree / 2 * Math.PI / 180)}px;
  274. height: 250px;
  275. transform: rotate(${_degree * i + _degree / 2}deg);
  276. transform-origin: 50% 100%;
  277. `
  278. }
  279. })
  280. onBeforeMount(()=>{
  281. debugger
  282. window.addEventListener('message', function (e) {
  283. console.log("接收值:", e.data)
  284. state.token = e.data.token;
  285. state.actId = e.data.actId;
  286. ElementPlus.ElLoading.service();
  287. getTurntableInfo();
  288. ElementPlus.ElLoading.service().close();
  289. })
  290. })
  291. onMounted(() => {
  292. prizeWrap.value.style = `${bgColor.value} transform: rotate(-${rotateAngle.value / 2}deg)`;
  293. })
  294. onUnmounted(() => {
  295. prizeWrap.value.removeEventListener('transitionend', stopRun)
  296. })
  297. // 获取大转盘信息
  298. async function getTurntableInfo() {
  299. debugger
  300. const postData = {
  301. actId: state.actId,
  302. };
  303. let res = await httpAjax('get', '/mall-prize/prize/info', postData)
  304. if (res.errno === 0) {
  305. console.log('获取大转盘信息',res.data);
  306. state.prizeList = res.data.pool;
  307. state.rule = res.data.content;
  308. } else {
  309. ElementPlus.ElMessage({
  310. showClose: true,
  311. message: res.errmsg,
  312. type: 'error',
  313. });
  314. }
  315. };
  316. // 大转盘抽奖按钮
  317. async function starDraw() {
  318. const postData = {
  319. actId: state.actId,
  320. };
  321. let res = await httpAjax('post', '/mall-prize/prize', getFormData(postData));
  322. if (res.errno === 0) {
  323. console.log('抽奖',res.data);
  324. state.prizeId = res.data.index;
  325. startRun();
  326. } else {
  327. state.isRunning = false;
  328. ElementPlus.ElMessage({
  329. showClose: true,
  330. message: res.errmsg,
  331. type: 'error',
  332. });
  333. }
  334. };
  335. //抽奖记录
  336. // async function getRecordList() {
  337. // const postData = {
  338. // actId: state.actId,
  339. // };
  340. // let res = await httpAjax('get', '/mall-prize/prize/user/list', postData);
  341. // if (res.errno === 0) {
  342. // console.log('抽奖记录',res.data);
  343. // state.recordList = res.data;
  344. // } else {
  345. // state.isRunning = false;
  346. // ElementPlus.ElMessage({
  347. // showClose: true,
  348. // message: res.errmsg,
  349. // type: 'error',
  350. // });
  351. // }
  352. // };
  353. //获奖名单
  354. async function getRecordList() {
  355. const postData = {
  356. actId: state.actId,
  357. };
  358. let res = await httpAjax('get', '/mall-prize/prize/winners', postData);
  359. if (res.errno === 0) {
  360. state.recordList = res.data;
  361. } else {
  362. state.isRunning = false;
  363. ElementPlus.ElMessage({
  364. showClose: true,
  365. message: res.errmsg,
  366. type: 'error',
  367. });
  368. }
  369. };
  370. // 简单封装ajax
  371. const httpAjax = (type, url, data) => {
  372. ajaxHeaders = {
  373. "Authorization": state.token
  374. }
  375. return new Promise((resolve, reject) => {
  376. $.ajax({
  377. type: type,
  378. // url: 'http://192.168.100.208:9083/admin' + url, //本地
  379. // url: "http://47.103.79.143:9085/admin" + url,//测试环境
  380. url:"https://xiaoyou.dgtis.com/admin"+ url,//正式环境
  381. data: data,
  382. contentType: type === 'post' ? false : true,
  383. processData: type === 'post' ? false : true,
  384. headers: ajaxHeaders,
  385. success: function (res) {
  386. if (res.errno == 503) {
  387. window.location.href = 'https://dgt.dgtis.com/oneportal/login'
  388. } else {
  389. resolve(res);
  390. }
  391. },
  392. error: function (error) {
  393. reject(error);
  394. ElementPlus.ElMessage({
  395. showClose: true,
  396. message: '网络错误,请稍后再试!',
  397. type: 'error',
  398. });
  399. }
  400. })
  401. })
  402. }
  403. // 处理formData数据格式
  404. const getFormData = (datas) => {
  405. let formData = new FormData();
  406. for (let key in datas) {
  407. formData.append(key, datas[key]);
  408. }
  409. return formData;
  410. }
  411. // 获取随机数
  412. const getRandomNum = () => {
  413. const num = Math.floor(Math.random() * state.prizeList.length)
  414. return num
  415. }
  416. const showRules = () =>{
  417. state.dialogVisible = true;
  418. }
  419. const showRecordList = () =>{
  420. getRecordList();
  421. state.dialogRecordList = true;
  422. }
  423. const start = () => {
  424. debugger
  425. // ElementPlus.ElMessage({
  426. // showClose: true,
  427. // message: '已无抽奖次数!',
  428. // type: 'warning',
  429. // })
  430. // return
  431. if (!state.isRunning) {
  432. state.isRunning = true;
  433. starDraw();
  434. // console.log('开始抽奖,后台请求中奖奖品')
  435. // // 请求返回的奖品编号 这里使用随机数
  436. // const prizeId = getRandomNum()
  437. // console.log('中奖ID>>>', prizeId, state.prizeList[prizeId])
  438. // state.prizeId = prizeId
  439. }
  440. }
  441. const startRun = () => {
  442. console.log(state.isRunning, totalRunAngle.value)
  443. // 设置动效
  444. prizeWrap.value.style = `
  445. ${bgColor.value}
  446. transform: rotate(${totalRunAngle.value}deg);
  447. transition: all 4s ease;
  448. `
  449. // 监听transition动效停止事件
  450. prizeWrap.value.addEventListener('transitionend', stopRun)
  451. }
  452. const stopRun = (e) => {
  453. console.log(e)
  454. state.isRunning = false
  455. prizeWrap.value.style = `
  456. ${bgColor.value}
  457. transform: rotate(${totalRunAngle.value - state.baseRunAngle}deg);
  458. `
  459. if(state.prizeList[state.prizeId].prizeType!='40'){
  460. ElementPlus.ElMessageBox.alert("恭喜,您中了" + state.prizeList[state.prizeId].prizeName + "," + "可在“个人中心”我的礼品券中查看,在礼品兑换中兑换相应物品。", {
  461. showClose:false,
  462. center:true,
  463. confirmButtonText: '确定',
  464. })
  465. // ElementPlus.ElMessage({
  466. // offset:window.screen.height / 2,
  467. // duration:3000,
  468. // showClose: true,
  469. // message: "恭喜,您中了" + state.prizeList[state.prizeId].prizeName + "," + "可在“个人中心”我的礼品券中查看,在礼品兑换中兑换响应物品。",
  470. // type: 'success',
  471. // })
  472. }else{
  473. ElementPlus.ElMessageBox.alert("很遗憾,您未中奖。", {
  474. showClose:false,
  475. center:true,
  476. confirmButtonText: '确认',
  477. })
  478. // ElementPlus.ElMessage({
  479. // offset:window.screen.height / 4,
  480. // duration:10000,
  481. // showClose: true,
  482. // message: "很遗憾,您未中奖。",
  483. // type: 'error',
  484. // })
  485. }
  486. }
  487. return {
  488. ...toRefs(state),
  489. bgColor,
  490. prizeStyle,
  491. prizeWrap,
  492. start,
  493. showRules,
  494. showRecordList
  495. }
  496. }
  497. }).use(ElementPlus).mount('#app')
  498. </script>
  499. </html>