index.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
  4. <el-form-item label="游戏" prop="gameId">
  5. <el-select v-model="queryParams.gameId" placeholder="请选择" @change="initGameItemList">
  6. <el-option
  7. v-for="item in typeList"
  8. :key="item.value"
  9. :label="item.label"
  10. :value="item.value"
  11. ></el-option>
  12. </el-select>
  13. </el-form-item>
  14. <el-form-item label="开奖选项" prop="gameLotterySucc">
  15. <el-select v-model="queryParams.gameLotterySuccItem" placeholder="请选择" clearable>
  16. <el-option
  17. v-for="dict in gameItemShowList"
  18. :key="dict.value"
  19. :label="dict.label"
  20. :value="dict.value"
  21. />
  22. </el-select>
  23. </el-form-item>
  24. <el-form-item label="游戏期号" prop="gameDate">
  25. <el-input
  26. v-model="queryParams.gameDate"
  27. placeholder="请输入游戏期号"
  28. clearable
  29. @keyup.enter.native="handleQuery"
  30. />
  31. </el-form-item>
  32. <el-form-item label="是否开奖" prop="isLottery">
  33. <el-select v-model="queryParams.isLottery" placeholder="请选择是否开奖" clearable>
  34. <el-option
  35. v-for="dict in dict.type.app_game_is_open"
  36. :key="dict.value"
  37. :label="dict.label"
  38. :value="dict.value"
  39. />
  40. </el-select>
  41. </el-form-item>
  42. <!-- <el-form-item label="记录时间" prop="gameRecordDate">
  43. <el-date-picker clearable
  44. v-model="queryParams.gameRecordDate"
  45. type="date"
  46. value-format="yyyy-MM-dd"
  47. placeholder="请选择记录时间">
  48. </el-date-picker>
  49. </el-form-item>-->
  50. <el-form-item>
  51. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  52. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  53. </el-form-item>
  54. </el-form>
  55. <el-row :gutter="10" class="mb8">
  56. <el-col :span="1.5">
  57. <el-button
  58. type="primary"
  59. plain
  60. icon="el-icon-plus"
  61. size="mini"
  62. @click="handleKj"
  63. >手动开奖</el-button>
  64. </el-col>
  65. <el-col :span="1.5">
  66. <el-button
  67. type="primary"
  68. plain
  69. icon="el-icon-plus"
  70. size="mini"
  71. @click="handLeakLottery"
  72. >修补开奖数据(10分钟之前的数据)</el-button>
  73. </el-col>
  74. <el-col :span="1.5">
  75. <el-button
  76. type="primary"
  77. plain
  78. icon="el-icon-plus"
  79. size="mini"
  80. @click="handleAdd"
  81. v-hasPermi="['business:lottery:add']"
  82. >新增</el-button>
  83. </el-col>
  84. <el-col :span="1.5">
  85. <el-button
  86. type="success"
  87. plain
  88. icon="el-icon-edit"
  89. size="mini"
  90. :disabled="single"
  91. @click="handleUpdate"
  92. v-hasPermi="['business:lottery:edit']"
  93. >修改</el-button>
  94. </el-col>
  95. <el-col :span="1.5">
  96. <el-button
  97. type="danger"
  98. plain
  99. icon="el-icon-delete"
  100. size="mini"
  101. :disabled="multiple"
  102. @click="handleDelete"
  103. v-hasPermi="['business:lottery:remove']"
  104. >删除</el-button>
  105. </el-col>
  106. <el-col :span="1.5">
  107. <el-button
  108. type="warning"
  109. plain
  110. icon="el-icon-download"
  111. size="mini"
  112. @click="handleExport"
  113. v-hasPermi="['business:lottery:export']"
  114. >导出</el-button>
  115. </el-col>
  116. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  117. </el-row>
  118. <el-table v-loading="loading" :data="lotteryList" @selection-change="handleSelectionChange">
  119. <el-table-column type="selection" width="55" align="center" />
  120. <el-table-column label="主键ID" align="center" prop="id" />
  121. <el-table-column label="游戏" align="center" prop="gameId">
  122. <template slot-scope="scope">
  123. <span style="color: red" v-if="scope.row.isLottery == 0">{{ getTypeName(scope.row.gameId) }}</span>
  124. <span v-if="scope.row.isLottery != 0">{{ getTypeName(scope.row.gameId) }}</span>
  125. </template>
  126. </el-table-column>
  127. <el-table-column label="游戏期号" align="center" prop="gameDate">
  128. <template slot-scope="scope">
  129. <span style="color: red" v-if="scope.row.isLottery == 0">{{scope.row.gameDate}}</span>
  130. <span v-if="scope.row.isLottery != 0">{{scope.row.gameDate}}</span>
  131. </template>
  132. </el-table-column>
  133. <el-table-column label="是否开奖" align="center" prop="isLottery">
  134. <template slot-scope="scope">
  135. <dict-tag :options="dict.type.app_game_is_open" :value="scope.row.isLottery"/>
  136. </template>
  137. </el-table-column>
  138. <el-table-column label="开奖选项" align="center" prop="gameLotterySucc">
  139. <template slot-scope="scope">
  140. <span>{{ getItemName(scope.row.gameLotterySucc,scope.row.gameId) }}</span>
  141. </template>
  142. </el-table-column>
  143. <el-table-column label="记录时间" align="center" prop="gameRecordDate" width="180">
  144. <template slot-scope="scope">
  145. <span>{{ parseTime(scope.row.gameRecordDate, '{y}-{m}-{d}') }}</span>
  146. </template>
  147. </el-table-column>
  148. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  149. <template slot-scope="scope">
  150. <el-button
  151. size="mini"
  152. type="text"
  153. icon="el-icon-edit"
  154. @click="handleLeakInfo(scope.row)"
  155. >开奖</el-button>
  156. <el-button
  157. size="mini"
  158. type="text"
  159. icon="el-icon-edit"
  160. @click="handleUpdate(scope.row)"
  161. v-hasPermi="['business:lottery:edit']"
  162. >修改</el-button>
  163. <el-button
  164. size="mini"
  165. type="text"
  166. icon="el-icon-delete"
  167. @click="handleDelete(scope.row)"
  168. v-hasPermi="['business:lottery:remove']"
  169. >删除</el-button>
  170. </template>
  171. </el-table-column>
  172. </el-table>
  173. <pagination
  174. v-show="total>0"
  175. :total="total"
  176. :page.sync="queryParams.pageNum"
  177. :limit.sync="queryParams.pageSize"
  178. @pagination="getList"
  179. />
  180. <!-- 添加或修改游戏开奖记录对话框 -->
  181. <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
  182. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  183. <el-form-item label="游戏类型" prop="classId">
  184. <el-select v-model="form.classId" placeholder="请选择">
  185. <el-option
  186. v-for="item in gameClassifyList"
  187. :key="item.value"
  188. :label="item.label"
  189. :value="item.value"
  190. ></el-option>
  191. </el-select>
  192. </el-form-item>
  193. <el-form-item label="游戏ID" prop="gameId">
  194. <el-select v-model="form.gameId" placeholder="请选择">
  195. <el-option
  196. v-for="item in typeList"
  197. :key="item.value"
  198. :label="item.label"
  199. :value="item.value"
  200. ></el-option>
  201. </el-select>
  202. </el-form-item>
  203. <el-form-item label="游戏期号" prop="gameDate">
  204. <el-input v-model="form.gameDate" placeholder="请输入游戏期号" />
  205. </el-form-item>
  206. <el-form-item label="是否开奖 0 否 1 是" prop="isLottery">
  207. <el-select v-model="form.isLottery" placeholder="请选择是否开奖 0 否 1 是">
  208. <el-option
  209. v-for="dict in dict.type.app_game_is_open"
  210. :key="dict.value"
  211. :label="dict.label"
  212. :value="dict.value"
  213. ></el-option>
  214. </el-select>
  215. </el-form-item>
  216. <el-form-item label="开奖选项" prop="gameLotterySucc">
  217. <el-input v-model="form.gameLotterySucc" placeholder="请输入开奖选项" />
  218. </el-form-item>
  219. <el-form-item label="记录时间" prop="gameRecordDate">
  220. <el-date-picker clearable
  221. v-model="form.gameRecordDate"
  222. type="date"
  223. value-format="yyyy-MM-dd"
  224. placeholder="请选择记录时间">
  225. </el-date-picker>
  226. </el-form-item>
  227. </el-form>
  228. <div slot="footer" class="dialog-footer">
  229. <el-button type="primary" @click="submitForm">确 定</el-button>
  230. <el-button @click="cancel">取 消</el-button>
  231. </div>
  232. </el-dialog>
  233. <!-- 手动开奖 -->
  234. <el-dialog :title="title" :visible.sync="kjOpen" width="500px" append-to-body>
  235. <el-form ref="kjForm" :model="kjForm" :rules="kjRules" label-width="80px">
  236. <el-form-item label="游戏类型" prop="classId">
  237. <el-select v-model="kjForm.classId" placeholder="请选择" @change="changeClass">
  238. <el-option
  239. v-for="item in gameClassifyList"
  240. :key="item.value"
  241. :label="item.label"
  242. :value="item.value"
  243. ></el-option>
  244. </el-select>
  245. </el-form-item>
  246. <el-form-item label="游戏" prop="gameId" >
  247. <el-select v-model="kjForm.gameId" placeholder="请选择" @change="changeGame">
  248. <el-option
  249. v-for="item in kjGamelist"
  250. :key="item.value"
  251. :label="item.label"
  252. :value="item.value"
  253. ></el-option>
  254. </el-select>
  255. </el-form-item>
  256. <el-form-item label="开奖选项" prop="gameLotterySuccItem">
  257. <el-select v-model="kjForm.gameLotterySuccItem" multiple placeholder="请选择">
  258. <el-option
  259. v-for="dict in kjGameItemList"
  260. :key="dict.value"
  261. :label="dict.label"
  262. :value="dict.value"
  263. ></el-option>
  264. </el-select>
  265. </el-form-item>
  266. <el-form-item label="游戏期号" prop="gameDate">
  267. <el-input v-model="kjForm.gameDate" placeholder="请输入游戏期号" />
  268. </el-form-item>
  269. <el-form-item label="是否开奖" prop="isLottery">
  270. <el-select v-model="kjForm.isLottery" placeholder="请选择">
  271. <el-option
  272. v-for="dict in dict.type.app_game_is_open"
  273. :key="dict.value"
  274. :label="dict.label"
  275. :value="dict.value"
  276. ></el-option>
  277. </el-select>
  278. </el-form-item>
  279. </el-form>
  280. <div slot="footer" class="dialog-footer">
  281. <el-button type="primary" @click="submitKjForm">确 定</el-button>
  282. <el-button @click="cancel">取 消</el-button>
  283. </div>
  284. </el-dialog>
  285. </div>
  286. </template>
  287. <script>
  288. import { listLottery, getLottery, delLottery, addLottery, updateLottery,allList,kjLottery,leakLottery,lotteryInfo } from "@/api/business/lottery";
  289. import {allGameList } from "@/api/business/game_item";
  290. import {listClassifyGame } from "@/api/business/game";
  291. export default {
  292. name: "Lottery",
  293. dicts: ['app_game_is_open'],
  294. data() {
  295. return {
  296. // 遮罩层
  297. loading: true,
  298. // 选中数组
  299. ids: [],
  300. // 非单个禁用
  301. single: true,
  302. // 非多个禁用
  303. multiple: true,
  304. // 显示搜索条件
  305. showSearch: true,
  306. // 总条数
  307. total: 0,
  308. // 游戏开奖记录表格数据
  309. lotteryList: [],
  310. // 弹出层标题
  311. title: "",
  312. // 是否显示弹出层
  313. open: false,
  314. kjOpen:false,
  315. typeMap:{},
  316. typeList:[],
  317. gameItemMap:{},
  318. gameItemList:[],
  319. gameItemShowList:[],
  320. gameClassifyList:[],
  321. kjGamelist:[],
  322. kjGameItemList:[],
  323. // 查询参数
  324. queryParams: {
  325. pageNum: 1,
  326. pageSize: 10,
  327. classId: null,
  328. gameId: null,
  329. gameDate: null,
  330. isLottery: null,
  331. gameLotterySucc: null,
  332. gameLotterySuccItem: null,
  333. gameRecordDate: null
  334. },
  335. // 表单参数
  336. form: {},
  337. kjForm:{},
  338. // 表单校验
  339. rules: {
  340. classId: [
  341. { required: true, message: "游戏类型ID不能为空", trigger: "blur" }
  342. ],
  343. gameId: [
  344. { required: true, message: "游戏ID不能为空", trigger: "blur" }
  345. ],
  346. },
  347. // 表单校验
  348. kjRules: {
  349. classId: [
  350. { required: true, message: "游戏类型不能为空", trigger: "blur" }
  351. ],
  352. gameId: [
  353. { required: true, message: "游戏不能为空", trigger: "blur" }
  354. ],
  355. gameLotterySuccItem: [
  356. { required: true, message: "游戏选项不能为空", trigger: "blur" }
  357. ],
  358. gameDate: [
  359. { required: true, message: "游戏期号不能为空", trigger: "blur" }
  360. ],
  361. isLottery: [
  362. { required: true, message: "是否开奖不能为空", trigger: "blur" }
  363. ],
  364. }
  365. };
  366. },
  367. created() {
  368. var that = this;
  369. allList().then(response => {
  370. if(response.data){
  371. for(var i in response.data){
  372. var item = response.data[i];
  373. that.gameItemMap[item.itemLocation.toString() + "_" + item.gameId] = item.itemName+ "("+(parseInt(item.itemLocation) + 1)+")";
  374. that.gameItemList.push({
  375. value:item.itemLocation+"_"+item.gameId,
  376. label:item.itemName + "("+(parseInt(item.itemLocation) + 1)+")",
  377. gameId:item.gameId
  378. })
  379. }
  380. }
  381. });
  382. listClassifyGame().then(response => {
  383. if(response.data){
  384. for(var i in response.data){
  385. var item = response.data[i];
  386. that.gameClassifyList.push({
  387. value:item.id,
  388. label:item.name
  389. })
  390. }
  391. }
  392. });
  393. allGameList().then(response => {
  394. if(response.data){
  395. for(var i in response.data){
  396. var item = response.data[i];
  397. that.typeMap[item.id.toString()] = item.name;
  398. that.typeList.push({
  399. value:item.id,
  400. label:item.name,
  401. classId:item.classifyId
  402. })
  403. }
  404. }
  405. this.getList();
  406. })
  407. },
  408. methods: {
  409. initGameItemList(val){
  410. this.gameItemShowList = [];
  411. for(var i in this.gameItemList){
  412. var item = this.gameItemList[i];
  413. if(item.gameId == val){
  414. this.gameItemShowList.push(item);
  415. }
  416. }
  417. },
  418. changeClass(val){
  419. var that = this;
  420. that.kjGamelist = [];
  421. that.kjForm.gameId = null;
  422. that.kjForm.gameLotterySucc = null;
  423. for(var i in that.typeList){
  424. var item = that.typeList[i];
  425. if(item["classId"] == val){
  426. that.kjGamelist.push(item);
  427. }
  428. }
  429. },
  430. changeGame(val){
  431. var that = this;
  432. that.kjGameItemList = [];
  433. that.kjForm.gameLotterySucc = null;
  434. for(var i in that.gameItemList){
  435. var item = that.gameItemList[i];
  436. if(item["gameId"] == val){
  437. that.kjGameItemList.push({
  438. value:item["value"].split("_")[0],
  439. label:item["label"],
  440. gameId:item["gameId"],
  441. isLottery: item["isLottery"],
  442. });
  443. }
  444. }
  445. },
  446. getTypeName(id) {
  447. return this.typeMap[id.toString()];
  448. },
  449. getItemName(id,gameId) {
  450. if(!id){
  451. return "-";
  452. }
  453. let that = this;
  454. let val = "";
  455. let arr = id.split(",")
  456. for(var i in arr){
  457. var item = arr[i];
  458. if(val != ""){
  459. val += ",";
  460. }
  461. val += that.gameItemMap[item+"_"+gameId]
  462. }
  463. return val;
  464. },
  465. /** 查询游戏开奖记录列表 */
  466. getList() {
  467. this.loading = true;
  468. listLottery(this.queryParams).then(response => {
  469. this.lotteryList = response.rows;
  470. this.total = response.total;
  471. this.loading = false;
  472. });
  473. },
  474. // 取消按钮
  475. cancel() {
  476. this.open = false;
  477. this.kjOpen = false;
  478. this.reset();
  479. this.resetKj();
  480. },
  481. // 表单重置
  482. reset() {
  483. this.form = {
  484. id: null,
  485. classId: null,
  486. gameId: null,
  487. gameDate: null,
  488. isLottery: null,
  489. gameLotterySucc: null,
  490. gameRecordDate: null
  491. };
  492. this.resetForm("form");
  493. },
  494. resetKj() {
  495. this.kjForm = {
  496. id: null,
  497. classId: null,
  498. gameId: null,
  499. gameDate: null,
  500. isLottery: null,
  501. gameLotterySucc: null,
  502. gameRecordDate: null
  503. };
  504. this.resetForm("form");
  505. },
  506. /** 搜索按钮操作 */
  507. handleQuery() {
  508. if(this.queryParams.gameLotterySuccItem){
  509. this.queryParams.gameLotterySucc = this.queryParams.gameLotterySuccItem.split("_")[0];
  510. }
  511. this.queryParams.pageNum = 1;
  512. this.getList();
  513. },
  514. /** 重置按钮操作 */
  515. resetQuery() {
  516. this.queryParams.gameLotterySuccItem = null;
  517. this.resetForm("queryForm");
  518. this.handleQuery();
  519. },
  520. // 多选框选中数据
  521. handleSelectionChange(selection) {
  522. this.ids = selection.map(item => item.id)
  523. this.single = selection.length!==1
  524. this.multiple = !selection.length
  525. },
  526. /** 新增按钮操作 */
  527. handleAdd() {
  528. this.reset();
  529. this.open = true;
  530. this.title = "添加游戏开奖记录";
  531. },
  532. /** 新增按钮操作 */
  533. handleKj() {
  534. this.resetKj();
  535. this.kjOpen = true;
  536. this.title = "手动开奖";
  537. },
  538. /** 新增按钮操作 */
  539. handLeakLottery() {
  540. this.$confirm('是否开始修补10分钟之前的开奖数据', '提示', {
  541. confirmButtonText: '确定',
  542. cancelButtonText: '取消',
  543. type: 'warning'
  544. }).then(() => {
  545. /*this.$message({
  546. type: 'success',
  547. message: '删除成功!'
  548. });*/
  549. leakLottery().then(()=>{
  550. this.$message({
  551. type: 'success',
  552. message: '修补成功!'
  553. });
  554. })
  555. }).catch(() => {
  556. });
  557. },
  558. /** 修改按钮操作 */
  559. handleUpdate(row) {
  560. this.reset();
  561. const id = row.id || this.ids
  562. getLottery(id).then(response => {
  563. this.form = response.data;
  564. this.open = true;
  565. this.title = "修改游戏开奖记录";
  566. });
  567. },
  568. /** 修改按钮操作 */
  569. handleLeakInfo(row) {
  570. this.reset();
  571. const id = row.id || this.ids
  572. lotteryInfo(id).then(response => {
  573. let item = response.data;
  574. this.resetKj();
  575. this.changeClass(item.classId);
  576. this.changeGame(item.gameId)
  577. let arr = [];
  578. if(undefined != item["gameLotterySucc"] && null != item["gameLotterySucc"] && "" != item["gameLotterySucc"]){
  579. let gameLotterySucc = item["gameLotterySucc"].split(",");
  580. for(var i in gameLotterySucc){
  581. arr.push(gameLotterySucc[i]);
  582. }
  583. }
  584. this.kjForm = {
  585. classId: item.classId,
  586. gameId: item.gameId,
  587. gameDate: item.gameDate,
  588. isLottery:"1",
  589. gameLotterySuccItem:arr
  590. }
  591. this.kjOpen = true;
  592. this.title = "手动开奖";
  593. });
  594. },
  595. /** 提交按钮 */
  596. submitForm() {
  597. this.$refs["form"].validate(valid => {
  598. if (valid) {
  599. if (this.form.id != null) {
  600. updateLottery(this.form).then(response => {
  601. this.$modal.msgSuccess("修改成功");
  602. this.open = false;
  603. this.getList();
  604. });
  605. } else {
  606. addLottery(this.form).then(response => {
  607. this.$modal.msgSuccess("新增成功");
  608. this.open = false;
  609. this.getList();
  610. });
  611. }
  612. }
  613. });
  614. },
  615. /** 提交按钮 */
  616. submitKjForm() {
  617. let that = this;
  618. this.$refs["kjForm"].validate(valid => {
  619. if (valid) {
  620. if(that.kjForm["gameDate"] != undefined && that.kjForm["gameDate"] != null){
  621. that.kjForm["gameDate"] = that.kjForm["gameDate"].trimStart().trimEnd();
  622. }
  623. if(that.kjForm.gameLotterySuccItem != undefined){
  624. that.kjForm.gameLotterySucc = that.kjForm.gameLotterySuccItem.join(',');
  625. }
  626. kjLottery(this.kjForm).then(response => {
  627. this.$modal.msgSuccess(response.msg);
  628. this.kjOpen = false;
  629. this.getList();
  630. });
  631. }
  632. });
  633. },
  634. /** 删除按钮操作 */
  635. handleDelete(row) {
  636. const ids = row.id || this.ids;
  637. this.$modal.confirm('是否确认删除游戏开奖记录编号为"' + ids + '"的数据项?').then(function() {
  638. return delLottery(ids);
  639. }).then(() => {
  640. this.getList();
  641. this.$modal.msgSuccess("删除成功");
  642. }).catch(() => {});
  643. },
  644. /** 导出按钮操作 */
  645. handleExport() {
  646. this.download('business/lottery/export', {
  647. ...this.queryParams
  648. }, `lottery_${new Date().getTime()}.xlsx`)
  649. }
  650. }
  651. };
  652. </script>