index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. <template>
  2. <div class="msaContainer">
  3. <!-- 搜索框 -->
  4. <el-input v-model="search" placeholder="输入关键字" :maxlength="20" />
  5. <el-select v-model="msaTyp" placeholder="关卡类型" @change="tableData" class="searchButton">
  6. <el-option v-for="option in msaOptions" :key="option.value" :label="option.label"
  7. :value="option.value"></el-option>
  8. </el-select>
  9. <el-button class="searchButton" @click="tableData()" type="primary">搜索</el-button>
  10. <el-button class="addButton" @click="showModal = true" type="primary">添加关卡</el-button>
  11. </div>
  12. <el-table :data="tableData()" class="table-container" :border="true">
  13. <el-table-column prop="id" label="ID" class="centered-content" align="center" />
  14. <el-table-column prop="msIc" label="关卡通过" class="centered-content" align="center">
  15. <template #default="scope">
  16. <span v-if="scope.row.msIc === true">通关</span>
  17. <span v-else>未通关</span>
  18. </template>
  19. </el-table-column>
  20. <el-table-column prop="msLc" label="关卡生命次数" class="centered-content" align="center" />
  21. <el-table-column prop="sty" label="关卡类型" class="centered-content" align="center">
  22. <template #default="scope">
  23. <span v-if="scope.row.sty === 1">主线关卡</span>
  24. <span v-else-if="scope.row.sty === 2">支线关卡</span>
  25. <span v-else-if="scope.row.sty === 10">藏宝图</span>
  26. <span v-else-if="scope.row.sty === 11">RogueLike</span>
  27. <span v-else>支线关卡</span>
  28. </template>
  29. </el-table-column>
  30. <el-table-column prop="msi" label="关卡道具" class="centered-content" align="center">
  31. <template #default="scope">
  32. <span v-if="scope.column.property === 'msi'">
  33. {{ JSON.stringify(scope.row[scope.column.property]) }}
  34. </span>
  35. <span v-else>{{ scope.row[scope.column.property] }}</span>
  36. </template>
  37. </el-table-column>
  38. <el-table-column label="操作" width="280" align="center">
  39. <template #default="scope" class="con">
  40. <el-button @click="completeMsa(scope.row)" type="success" :icon="Check" class="button-container"
  41. @mouseenter="showText" @mouseleave="hideText">
  42. <i class="ic, resultPropson"></i>
  43. <span class="text">完成关卡</span>
  44. </el-button>
  45. <el-button @click="resetMsa(scope.row)" @mouseenter="showText" @mouseleave="hideText" type="primary"
  46. :icon="Refresh" class="button-container">
  47. <i class="icon"></i>
  48. <span class="text">重置关卡</span>
  49. </el-button>
  50. <el-button @click="delMsa(scope.row)" type="danger" :icon="Delete" class="button-container"
  51. @mouseenter="showText" @mouseleave="hideText">
  52. <i class="ic, resultPropson"></i>
  53. <span class="text">删除关卡</span>
  54. </el-button>
  55. </template>
  56. </el-table-column>
  57. </el-table>
  58. <el-pagination style="margin: auto;" class="pagination-container" background layout="prev, pager, next ,total,sizes"
  59. :total="state.total" @current-change="handleCurrentChange" @size-change="handleSizeChange" />
  60. <!-- 模态框 -->
  61. <el-dialog title="添加关卡" v-model="showModal" @close="closeModal" width="350px">
  62. <el-form-item label="关卡ID">
  63. <el-input v-model="msaId" placeholder="输入关卡ID" :maxlength="5"
  64. style="width: 200px;position: relative; left: 41.219px;" />
  65. </el-form-item>
  66. <span slot="footer" class="dialog-footer" style="position: absolute; right: 20px; bottom: 10px;">
  67. <el-button type="primary" @click="addUsa">保存</el-button>
  68. <el-button @click="closeModal">关闭</el-button>
  69. </span>
  70. </el-dialog>
  71. </template>
  72. <script lang="ts" setup>
  73. import { ElMessageBox, ElMessage } from 'element-plus';
  74. import { reactive, ref, toRefs, defineComponent, defineEmits, computed } from 'vue'
  75. import { Edit, Check, Close, Delete, Refresh } from '@element-plus/icons-vue'
  76. import playerApi from '@/api/player'
  77. const props = defineProps({
  78. msa: Array,
  79. ruleForm: Object,
  80. callback: {
  81. type: Function,
  82. required: true
  83. },
  84. callback1: {
  85. type: Function,
  86. required: true
  87. }
  88. });
  89. const showModal = ref<Boolean>(false);
  90. const msaTyp = ref(0);
  91. const msaOptions = [{
  92. 'label': "未选择",
  93. 'value': 0
  94. }, {
  95. 'label': "主线关卡",
  96. 'value': 1
  97. }, {
  98. 'label': "支线关卡",
  99. 'value': 2
  100. },{
  101. 'label': "藏宝图",
  102. 'value': 10
  103. },{
  104. 'label': "Rogue",
  105. 'value': 11
  106. }];
  107. const search = ref("");
  108. const msaId = ref("");
  109. const state = reactive({
  110. page: 1,
  111. limit: 10,
  112. total: props.msa.length
  113. });
  114. const tableData = () => {
  115. let msa: any = [];
  116. let checkTyp = msaTyp.value;
  117. if (search.value == "" && checkTyp == 0) {
  118. state.total = props.msa.length;
  119. msa = props.msa;
  120. } else if (search.value == "" && checkTyp != 0) {
  121. const regex = new RegExp(`^${checkTyp}$`, 'i');
  122. msa = props.msa.filter(
  123. (item: { id: string, sty: string }, index) => {
  124. return regex.test(item.sty);
  125. }
  126. );
  127. state.total = msa.length;
  128. } else if (search.value != "" && checkTyp == 0) {
  129. const regex = new RegExp(search.value, 'i');
  130. msa = props.msa.filter(
  131. (item: { id: string, sty: string }, index) => {
  132. return regex.test(item.id);
  133. }
  134. );
  135. state.total = msa.length;
  136. } else {
  137. const regex = new RegExp(search.value, 'i');
  138. msa = props.msa.filter(
  139. (item: { id: string, sty: string }, index) => {
  140. return regex.test(item.id) && (item.sty == checkTyp + "");
  141. }
  142. );
  143. state.total = msa.length;
  144. }
  145. return msa.filter(
  146. (item, index) =>
  147. index < state.page * state.limit &&
  148. index >= state.limit * (state.page - 1)
  149. );
  150. };
  151. const showText = (event) => {
  152. const button = event.target;
  153. const text = button.querySelector('.text');
  154. text.style.display = 'block';
  155. }
  156. const hideText = (event) => {
  157. const button = event.target;
  158. const text = button.querySelector('.text');
  159. text.style.display = 'none';
  160. }
  161. const closeModal = () => {
  162. msaId.value = null
  163. showModal.value = false;
  164. }
  165. const addUsa = () => {
  166. let uhs = msaId.value;
  167. if (uhs != "" || uhs != null) {
  168. let data = {
  169. playerId: props.ruleForm.id,
  170. uhs: uhs,
  171. srvId:props.ruleForm.gId
  172. }
  173. playerApi.addMsa(data).then((resp) => {
  174. let data = resp.data.result;
  175. props.callback(data);
  176. });
  177. ElMessage({
  178. message: "添加成功",
  179. type: 'success',
  180. duration: 3000
  181. });
  182. msaId.value = null
  183. showModal.value = false;
  184. }
  185. }
  186. // 完成关卡
  187. const completeMsa = (row: any) => {
  188. ElMessageBox.confirm('确定要完成该关卡吗?', '提示', {
  189. confirmButtonText: '确定',
  190. cancelButtonText: '取消'
  191. }).then(() => {
  192. let data = {
  193. playerId: props.ruleForm.id,
  194. msaId: row.id,
  195. srvId:props.ruleForm.gId
  196. }
  197. let resp = playerApi.completeMsa(data);
  198. props.callback1(row);
  199. ElMessage({
  200. message: "完成关卡成功",
  201. type: 'success',
  202. duration: 3000
  203. });
  204. // let index = props.msa.indexOf(row);
  205. // props.msa.splice(index, 1);
  206. }).catch(() => { });
  207. }
  208. // 分页
  209. // 重置关卡
  210. const resetMsa = (row: any) => {
  211. ElMessageBox.confirm('确定要重置该关卡吗?', '提示', {
  212. confirmButtonText: '确定',
  213. cancelButtonText: '取消'
  214. }).then(() => {
  215. let data = {
  216. playerId: props.ruleForm.id,
  217. uhs: row.id,
  218. srvId:props.ruleForm.gId
  219. }
  220. let resp = playerApi.resetMsa(data);
  221. props.callback1(row);
  222. ElMessage({
  223. message: "重置成功",
  224. type: 'success',
  225. duration: 3000
  226. });
  227. // let index = props.msa.indexOf(row);
  228. // props.msa.splice(index, 1);
  229. }).catch(() => { });
  230. }
  231. // 删除关卡
  232. const delMsa = (row: any) => {
  233. ElMessageBox.confirm('确定要删除该关卡吗?', '提示', {
  234. confirmButtonText: '确定',
  235. cancelButtonText: '取消'
  236. }).then(() => {
  237. let data = {
  238. playerId: props.ruleForm.id,
  239. index: row.id,
  240. srvId:props.ruleForm.gId
  241. }
  242. let resp = playerApi.delMsa(data);
  243. ElMessage({
  244. message: "删除成功",
  245. type: 'success',
  246. duration: 3000
  247. });
  248. let index = props.msa.indexOf(row);
  249. props.msa.splice(index, 1);
  250. }).catch(() => { });
  251. }
  252. const handleCurrentChange = (e) => {
  253. state.page = e;
  254. };
  255. const handleSizeChange = (e) => {
  256. state.limit = e;
  257. };
  258. </script>
  259. <style>
  260. .con {
  261. display: flex;
  262. align-items: center;
  263. }
  264. .button-container {
  265. position: relative;
  266. left: 10px;
  267. transform: translateY(1%);
  268. border-radius: 50%;
  269. width: 30px;
  270. height: 28px;
  271. }
  272. .input-container {
  273. display: flex;
  274. align-items: center;
  275. }
  276. .addButton {
  277. position: absolute;
  278. right: 5%;
  279. }
  280. .searchButton {
  281. margin-right: 10px;
  282. margin-left: 10px;
  283. /* 调整搜索按钮的右侧间距 */
  284. }
  285. .button-container:hover {
  286. border-radius: 10px;
  287. width: 100px;
  288. }
  289. .button-container el-button {
  290. margin-right: 10px;
  291. }
  292. .button-container el-button:last-child {
  293. margin-right: 0;
  294. }
  295. .msaContainer {
  296. display: flex;
  297. align-items: center;
  298. width: 400px;
  299. justify-content: space-between;
  300. align-items: center;
  301. margin-bottom: 10px; /* 设置向下间距为 10 像素 */
  302. }
  303. .edit-button {
  304. position: absolute;
  305. top: 50%;
  306. left: 120px;
  307. transform: translateY(-50%);
  308. }
  309. .table-container {
  310. text-alugn: center;
  311. display: grid;
  312. grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  313. }
  314. .pagination-container {
  315. display: flex;
  316. justify-content: center;
  317. }
  318. .centered-content {
  319. text-align: center;
  320. }
  321. .text {
  322. display: none;
  323. }
  324. </style>