score.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <template>
  2. <div class="index">
  3. <el-row>
  4. <el-col :span="24" class="main" v-loading="loading">
  5. <el-row justify="center">
  6. <el-col :span="16">
  7. <el-steps style="max-width: 600px" :active="active" finish-status="success">
  8. <el-step v-for="(item, index) in matchPathList" :key="index" :title="item.name" />
  9. </el-steps>
  10. </el-col>
  11. </el-row>
  12. <el-col :span="24" class="one" v-if="matchPathList.value && matchPathList.value.length > 0">
  13. <div class="one_left" @click="toAdd">添加分数</div>
  14. </el-col>
  15. <div class="table">
  16. <el-table :data="list" border>
  17. <el-table-column type="index" label="序号" width="80" align="center" />
  18. <el-table-column prop="matchPath_name" label="流程" align="center" />
  19. <el-table-column prop="sign_name" label="选手" align="center" />
  20. <el-table-column prop="score" label="分数" align="center">
  21. <template #default="scope">
  22. <el-input v-model="scope.row.score" type="number" placeholder="请输入分数" />
  23. </template>
  24. </el-table-column>
  25. <el-table-column label="操作" align="center" width="100">
  26. <template #default="scope">
  27. <el-link :underline="false" type="primary" size="mini" @click="onSave(scope.row)" style="margin-right: 10px">保存</el-link>
  28. <el-link :underline="false" type="danger" size="mini" @click="onDelete(scope.row)"> 删除 </el-link>
  29. </template>
  30. </el-table-column>
  31. </el-table>
  32. <el-col :span="24" class="thr">
  33. <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
  34. </el-col>
  35. </div>
  36. <div class="button" v-if="matchPathList.value && matchPathList.value.length > 0">
  37. <el-button @click="back">上一步</el-button>
  38. <el-button @click="next">下一步</el-button>
  39. </div>
  40. </el-col>
  41. </el-row>
  42. <el-dialog v-model="dialog.show" :title="dialog.title" :destroy-on-close="false" @close="toClose">
  43. <el-row>
  44. <el-col :span="24" v-if="dialog.type == '1'">
  45. <custom-form v-model="form" :fields="formFields" :rules="rules" @save="toSave" :DraftSave="false" submitText="保存">
  46. <template #matchPath>
  47. <el-option v-for="i in matchPathList" disabled :key="i.id" :label="i.name" :value="i.id"></el-option>
  48. </template>
  49. <template #sign>
  50. <el-option v-for="i in signList" :key="i.id" :label="i.name" :value="i.id">
  51. <span style="float: left">{{ i.name }}</span>
  52. <span style="float: right; font-size: 13px" v-if="i.card">身份证号码:{{ i.card }} </span>
  53. </el-option>
  54. </template>
  55. </custom-form>
  56. </el-col>
  57. </el-row>
  58. </el-dialog>
  59. </div>
  60. </template>
  61. <script setup>
  62. import moment from 'moment'
  63. import { cloneDeep, get } from 'lodash-es'
  64. const $checkRes = inject('$checkRes')
  65. // 接口
  66. import { ScoreStore } from '@/store/api/platform/score'
  67. import { SignStore } from '@/store/api/platform/sign'
  68. import { ProcessStore } from '@/store/api/platform/process'
  69. const store = ScoreStore()
  70. const processStore = ProcessStore()
  71. const signStore = SignStore()
  72. // 路由
  73. const searchForm = ref({})
  74. // 列表
  75. const list = ref([])
  76. let skip = 0
  77. let limit = inject('limit')
  78. const total = ref(0)
  79. const currentPage = ref(1)
  80. const props = defineProps({
  81. matchForm: { type: Object, default: () => {} }
  82. })
  83. const { matchForm } = toRefs(props)
  84. const formFields = ref([
  85. { label: '流程', model: 'matchPath', type: 'select' },
  86. { label: '选手', model: 'sign', type: 'select' },
  87. { label: '分数', model: 'score', type: 'number' }
  88. ])
  89. const rules = reactive({
  90. sign: [{ required: true, message: '请选择选手', trigger: 'blur' }],
  91. score: [{ required: true, message: '请填写分数', trigger: 'blur' }]
  92. })
  93. const dialog = ref({ type: '1', show: false, title: '维护分数' })
  94. const form = ref({})
  95. // 字典表
  96. const matchPathList = ref([])
  97. const signList = ref([])
  98. // 加载中
  99. const loading = ref(false)
  100. // 请求
  101. onMounted(async () => {
  102. loading.value = true
  103. await searchOther()
  104. if (matchPathList.value && matchPathList.value.length > 0) await search({ skip, limit })
  105. loading.value = false
  106. })
  107. const searchOther = async () => {
  108. let result
  109. // 流程
  110. result = await processStore.query({ match: matchForm.value.id, is_use: '0' })
  111. if ($checkRes(result)) matchPathList.value = result.data
  112. // 选手
  113. result = await signStore.query({ match: matchForm.value.id, status: '1' })
  114. if ($checkRes(result)) signList.value = result.data
  115. }
  116. const search = async (query = { skip, limit }) => {
  117. skip = query.skip
  118. limit = query.limit
  119. const info = { skip: query.skip, limit: query.limit, ...searchForm.value, match: matchForm.value.id, matchPath: matchPathList.value[active.value].id }
  120. const res = await store.list(info)
  121. if (res.errcode == '0') {
  122. list.value = res.data
  123. total.value = res.total
  124. }
  125. }
  126. // 添加
  127. const toAdd = () => {
  128. form.value = { matchPath: matchPathList.value[active.value].id }
  129. dialog.value = { type: '1', show: true, title: '添加分数' }
  130. }
  131. // 删除
  132. const onDelete = async (data) => {
  133. const res = await store.del(data.id)
  134. if ($checkRes(res, true)) {
  135. search({ skip, limit })
  136. }
  137. }
  138. const onSave = async (data) => {
  139. let res
  140. const other = { time: moment().format('YYYY-MM-DD'), match: matchForm.value.id }
  141. if (get(data, 'id')) res = await store.update({ ...data, ...other })
  142. else res = await store.create({ ...data, ...other })
  143. if ($checkRes(res, true)) {
  144. search({ skip, limit })
  145. }
  146. }
  147. const toSave = async () => {
  148. const data = cloneDeep(form.value)
  149. const other = { time: moment().format('YYYY-MM-DD'), match: matchForm.value.id }
  150. let res
  151. if (get(data, 'id')) res = await store.update({ ...data, ...other })
  152. else res = await store.create({ ...data, ...other })
  153. if ($checkRes(res, true)) {
  154. search({ skip, limit })
  155. toClose()
  156. }
  157. }
  158. const toClose = () => {
  159. form.value = {}
  160. dialog.value = { show: false }
  161. }
  162. const active = ref(0)
  163. // 上一步
  164. const back = async () => {
  165. if (active.value > 0) active.value = active.value - 1
  166. else active.value = 0
  167. await search({ skip, limit })
  168. }
  169. // 下一步
  170. const next = async () => {
  171. if (active.value < matchPathList.value.length - 1) active.value = active.value + 1
  172. else active.value = 0
  173. await search({ skip, limit })
  174. }
  175. // 分页
  176. const changePage = (page = currentPage.value) => {
  177. search({ skip: (page - 1) * limit, limit: limit })
  178. }
  179. const sizeChange = (limits) => {
  180. limit = limits
  181. currentPage.value = 1
  182. search({ skip: 0, limit: limit })
  183. }
  184. </script>
  185. <style scoped lang="scss">
  186. .main {
  187. .one {
  188. height: 50px;
  189. display: flex;
  190. justify-content: space-between;
  191. align-items: center;
  192. margin: 0 0 10px 0;
  193. .one_left {
  194. background: #1875df;
  195. padding: 0 10px;
  196. height: 30px;
  197. color: #fff;
  198. line-height: 30px;
  199. text-align: center;
  200. font-size: 16px;
  201. cursor: default;
  202. }
  203. }
  204. .button {
  205. text-align: center;
  206. margin: 12px 0 0 0;
  207. }
  208. .thr {
  209. display: flex;
  210. justify-content: center;
  211. margin: 20px 0 0 0;
  212. }
  213. }
  214. </style>