index.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. <template>
  2. <div class="container">
  3. <!-- 搜索框 -->
  4. <el-input v-model="search" placeholder="输入关键字" :maxlength="20" />
  5. <el-button class="searchButton" @Click="tableData()" type="primary">搜索</el-button>
  6. <el-button class="addButton" @click="addItem()" type="primary">添加道具</el-button>
  7. </div>
  8. <el-table :data="tableData()" class="table-container" :border="true">
  9. <el-table-column prop="id" label="ID" align="center" />
  10. <el-table-column prop="bagTab" label="道具类型" align="center" />
  11. <el-table-column prop="name" label="道具名称" align="center" />
  12. <el-table-column prop="count" label="数量" align="center">
  13. <template #default="scope">
  14. <template v-if="!scope.row.editing">
  15. <span>{{ scope.row.count }}</span>
  16. <el-button @click="handlEditClick(scope.row)" type="primary" :icon="Edit" circle class="edit-button" />
  17. </template>
  18. <template v-else>
  19. <div class="con">
  20. <div class="input-container">
  21. <el-input v-model="scope.row.count" placeholder="count" />
  22. </div>
  23. <div class="button-container">
  24. <el-button @click="handleSaveClick(scope.row)" type="success" :icon="Check" circle />
  25. <el-button @click="handleCancelClick(scope.row)" type="danger" :icon="Close" circle />
  26. </div>
  27. </div>
  28. </template>
  29. </template>
  30. </el-table-column>
  31. <el-table-column label="操作" width="180" align="center">
  32. <template #default="scope">
  33. <el-button @click="editItem(scope.row)" type="danger" :icon="Delete">删除道具</el-button>
  34. </template>
  35. </el-table-column>
  36. </el-table>
  37. <el-pagination style="margin: auto;" class="pagination-container" background layout="prev, pager, next ,total,sizes"
  38. :total="state.total" @current-change="handleCurrentChange" @size-change="handleSizeChange" />
  39. <!-- 模态框 -->
  40. <el-dialog :title="dialogTitle" v-model="showModal" @close="closeModal" width="350px">
  41. <el-form-item label="道具ID">
  42. <el-input v-model="itemId" placeholder="输入道具ID" :maxlength="5"
  43. style="width: 200px;position: relative; left: 41.219px;" />
  44. </el-form-item>
  45. <el-form-item label="道具数量">
  46. <el-input v-model="itemNum" placeholder="请输入道具数量" :maxlength="5"
  47. style="width: 200px;position: relative; left: 28px;" />
  48. </el-form-item>
  49. <span slot="footer" class="dialog-footer" style="position: absolute; right: 20px; bottom: 10px;">
  50. <el-button type="primary" @click="saveItem">保存</el-button>
  51. <el-button @click="closeModal">关闭</el-button>
  52. </span>
  53. </el-dialog>
  54. </template>
  55. <script lang="ts" setup>
  56. import { ElMessageBox, ElMessage } from 'element-plus';
  57. import { reactive, ref, toRefs, defineComponent } from 'vue'
  58. import { Edit, Check, Close, Delete } from '@element-plus/icons-vue'
  59. import playerApi from '@/api/player'
  60. const props = defineProps({
  61. its: Array,
  62. ruleForm: Object,
  63. callback: {
  64. type: Function,
  65. required: true
  66. }
  67. });
  68. let dialogTitle = ref<string>('');
  69. const showModal = ref<Boolean>(false);
  70. const itemId = ref("");
  71. const itemNum = ref<Number>(1);
  72. const search = ref("");
  73. const state = reactive({
  74. page: 1,
  75. limit: 10,
  76. total: props.its.length
  77. });
  78. const tableData = () => {
  79. let its: any = [];
  80. if (search.value == "") {
  81. state.total = props.its.length;
  82. its = props.its;
  83. } else {
  84. const regex = new RegExp(search.value, 'i');
  85. its = props.its.filter(
  86. (item: { id: string, name: string }, index) => {
  87. return regex.test(item.id) || regex.test(item.name);
  88. }
  89. );
  90. state.total = its.length;
  91. }
  92. return its.filter(
  93. (item, index) =>
  94. index < state.page * state.limit &&
  95. index >= state.limit * (state.page - 1)
  96. );
  97. };
  98. // 分页
  99. // 删除道具
  100. const editItem = (row: any) => {
  101. ElMessageBox.confirm('确定要删除该道具吗?', '提示', {
  102. confirmButtonText: '确定',
  103. cancelButtonText: '取消'
  104. }).then(() => {
  105. let data = {
  106. playerId: props.ruleForm.id,
  107. itemId: row.id,
  108. itemNum: row.count
  109. }
  110. let resp = playerApi.delPlayerItem(data);
  111. ElMessage({
  112. message: "删除成功",
  113. type: 'info',
  114. duration: 3000
  115. });
  116. let index = props.its.indexOf(row);
  117. props.its.splice(index, 1);
  118. }).catch(() => { });
  119. }
  120. const addItem = () => {
  121. dialogTitle.value = "添加道具";
  122. showModal.value = true;
  123. }
  124. const closeModal = () => {
  125. itemId.value = null;
  126. itemNum.value = 1;
  127. showModal.value = false;
  128. dialogTitle.value = "添加图纸";
  129. }
  130. // 保存
  131. const saveItem = () => {
  132. let data = {
  133. playerId: props.ruleForm.id,
  134. itemId: itemId.value,
  135. itemNum: itemNum.value
  136. }
  137. playerApi.addPlayerItem(data).then((resp) => {
  138. let data = resp.data.result;
  139. if (data === '道具添加失败') {
  140. ElMessage({
  141. message: "道具添加失败",
  142. type: 'error',
  143. duration: 3000
  144. });
  145. } else {
  146. props.callback(data)
  147. }
  148. });
  149. showModal.value = false;
  150. }
  151. const handleCurrentChange = (e) => {
  152. state.page = e;
  153. };
  154. const handleSizeChange = (e) => {
  155. state.limit = e;
  156. };
  157. // 道具修改
  158. const handlEditClick = (row: any) => {
  159. row.editing = true;
  160. };
  161. const handleSaveClick = (row: any) => {
  162. // row.editing = false;
  163. ElMessageBox.confirm('确定要修改道具数量吗?', '提示', {
  164. confirmButtonText: '确定',
  165. cancelButtonText: '取消'
  166. }).then(() => {
  167. row.editing = false;
  168. let data = {
  169. playerId: props.ruleForm.id,
  170. itemId: row.id,
  171. itemNum: row.count
  172. }
  173. let resp = playerApi.editPlayerItem(data);
  174. ElMessage({
  175. message: "修改成功",
  176. type: 'info',
  177. duration: 3000
  178. });
  179. }).catch(() => { });
  180. };
  181. const handleCancelClick = (row: any) => {
  182. row.editing = false;
  183. };
  184. </script>
  185. <style>
  186. .con {
  187. display: flex;
  188. align-items: center;
  189. }
  190. .input-container {
  191. align-items: center;
  192. width: 200px;
  193. }
  194. .searchButton {
  195. margin-right: 10px;
  196. }
  197. .button-container {
  198. position: relative;
  199. left: 10px;
  200. transform: translateY(-8%);
  201. }
  202. .container {
  203. display: flex;
  204. align-items: center;
  205. width: 200px;
  206. margin-bottom: 20px;
  207. }
  208. .edit-button {
  209. position: absolute;
  210. top: 50%;
  211. left: 400px;
  212. transform: translateY(-50%);
  213. }
  214. .table-container {
  215. display: grid;
  216. grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  217. }
  218. .pagination-container {
  219. display: flex;
  220. justify-content: center;
  221. }
  222. </style>