|
@@ -1,33 +1,42 @@
|
|
<template>
|
|
<template>
|
|
<div class="index">
|
|
<div class="index">
|
|
<el-row>
|
|
<el-row>
|
|
- <el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
|
|
|
|
|
|
+ <el-col :span="24" class="main" v-loading="loading">
|
|
|
|
+ <el-row justify="center">
|
|
|
|
+ <el-col :span="16">
|
|
|
|
+ <el-steps style="max-width: 600px" :active="active" finish-status="success">
|
|
|
|
+ <el-step v-for="(item, index) in matchPathList" :key="index" :title="item.name" />
|
|
|
|
+ </el-steps>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
<el-col :span="24" class="one">
|
|
<el-col :span="24" class="one">
|
|
<div class="one_left" @click="toAdd">添加分数</div>
|
|
<div class="one_left" @click="toAdd">添加分数</div>
|
|
- <div class="one_right">
|
|
|
|
- <el-input v-model="searchForm.matchPath_name" style="width: 250px" size="large" placeholder="搜索" @change="search" :suffix-icon="Search" />
|
|
|
|
- </div>
|
|
|
|
</el-col>
|
|
</el-col>
|
|
- <el-col :span="24" class="two">
|
|
|
|
- <el-table :data="list" style="width: 100%" size="large" :header-cell-style="{ backgroundColor: '#edf3ff' }">
|
|
|
|
- <template #empty>
|
|
|
|
- <el-empty description="暂无数据" />
|
|
|
|
- </template>
|
|
|
|
- <el-table-column prop="matchPath_name" align="center" label="流程名称" />
|
|
|
|
- <el-table-column prop="sign_name" align="center" label="选手" />
|
|
|
|
- <el-table-column prop="score" align="center" label="分数" width="180" />
|
|
|
|
- <el-table-column prop="time" align="center" label="时间" width="180" />
|
|
|
|
- <el-table-column align="center" label="操作" width="180">
|
|
|
|
- <template #default="{ row }">
|
|
|
|
- <el-link :underline="false" type="primary" size="mini" @click="toEdit(row)" style="margin-right: 10px">修改</el-link>
|
|
|
|
- <el-link :underline="false" type="danger" size="mini" @click="toDelete(row)"> 删除 </el-link>
|
|
|
|
|
|
+ <div class="table">
|
|
|
|
+ <el-table :data="list" border>
|
|
|
|
+ <el-table-column type="index" label="序号" width="80" align="center" />
|
|
|
|
+ <el-table-column prop="matchPath_name" label="流程" align="center" />
|
|
|
|
+ <el-table-column prop="sign_name" label="选手" align="center" />
|
|
|
|
+ <el-table-column prop="score" label="分数" align="center">
|
|
|
|
+ <template #default="scope">
|
|
|
|
+ <el-input v-model="scope.row.score" type="number" placeholder="请输入分数" />
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="操作" align="center" width="100">
|
|
|
|
+ <template #default="scope">
|
|
|
|
+ <el-link :underline="false" type="primary" size="mini" @click="onSave(scope.row)" style="margin-right: 10px">保存</el-link>
|
|
|
|
+ <el-link :underline="false" type="danger" size="mini" @click="onDelete(scope.row)"> 删除 </el-link>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
- </el-col>
|
|
|
|
- <el-col :span="24" class="thr">
|
|
|
|
- <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
|
|
|
|
- </el-col>
|
|
|
|
|
|
+ <el-col :span="24" class="thr">
|
|
|
|
+ <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
|
|
|
|
+ </el-col>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="button">
|
|
|
|
+ <el-button @click="back">上一步</el-button>
|
|
|
|
+ <el-button @click="next">下一步</el-button>
|
|
|
|
+ </div>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
<el-dialog v-model="dialog.show" :title="dialog.title" :destroy-on-close="false" @close="toClose">
|
|
<el-dialog v-model="dialog.show" :title="dialog.title" :destroy-on-close="false" @close="toClose">
|
|
@@ -35,10 +44,13 @@
|
|
<el-col :span="24" v-if="dialog.type == '1'">
|
|
<el-col :span="24" v-if="dialog.type == '1'">
|
|
<custom-form v-model="form" :fields="formFields" :rules="rules" @save="toSave" :DraftSave="false" submitText="保存">
|
|
<custom-form v-model="form" :fields="formFields" :rules="rules" @save="toSave" :DraftSave="false" submitText="保存">
|
|
<template #matchPath>
|
|
<template #matchPath>
|
|
- <el-option v-for="i in matchPathList" :key="i.id" :label="i.name" :value="i.id"></el-option>
|
|
|
|
|
|
+ <el-option v-for="i in matchPathList" disabled :key="i.id" :label="i.name" :value="i.id"></el-option>
|
|
</template>
|
|
</template>
|
|
<template #sign>
|
|
<template #sign>
|
|
- <el-option v-for="i in signList" :key="i.id" :label="i.name" :value="i.id"></el-option>
|
|
|
|
|
|
+ <el-option v-for="i in signList" :key="i.id" :label="i.name" :value="i.id">
|
|
|
|
+ <span style="float: left">{{ i.name }}</span>
|
|
|
|
+ <span style="float: right; font-size: 13px" v-if="i.card">身份证号码:{{ i.card }} </span>
|
|
|
|
+ </el-option>
|
|
</template>
|
|
</template>
|
|
</custom-form>
|
|
</custom-form>
|
|
</el-col>
|
|
</el-col>
|
|
@@ -73,7 +85,6 @@ const props = defineProps({
|
|
})
|
|
})
|
|
|
|
|
|
const { matchForm } = toRefs(props)
|
|
const { matchForm } = toRefs(props)
|
|
-
|
|
|
|
const formFields = ref([
|
|
const formFields = ref([
|
|
{ label: '流程', model: 'matchPath', type: 'select' },
|
|
{ label: '流程', model: 'matchPath', type: 'select' },
|
|
{ label: '选手', model: 'sign', type: 'select' },
|
|
{ label: '选手', model: 'sign', type: 'select' },
|
|
@@ -109,7 +120,7 @@ const searchOther = async () => {
|
|
const search = async (query = { skip, limit }) => {
|
|
const search = async (query = { skip, limit }) => {
|
|
skip = query.skip
|
|
skip = query.skip
|
|
limit = query.limit
|
|
limit = query.limit
|
|
- const info = { skip: query.skip, limit: query.limit, ...searchForm.value, match: matchForm.value.id }
|
|
|
|
|
|
+ const info = { skip: query.skip, limit: query.limit, ...searchForm.value, match: matchForm.value.id, matchPath: matchPathList.value[active.value].id }
|
|
const res = await store.list(info)
|
|
const res = await store.list(info)
|
|
if (res.errcode == '0') {
|
|
if (res.errcode == '0') {
|
|
list.value = res.data
|
|
list.value = res.data
|
|
@@ -118,20 +129,25 @@ const search = async (query = { skip, limit }) => {
|
|
}
|
|
}
|
|
// 添加
|
|
// 添加
|
|
const toAdd = () => {
|
|
const toAdd = () => {
|
|
|
|
+ form.value = { matchPath: matchPathList.value[active.value].id }
|
|
dialog.value = { type: '1', show: true, title: '添加分数' }
|
|
dialog.value = { type: '1', show: true, title: '添加分数' }
|
|
}
|
|
}
|
|
-// 修改
|
|
|
|
-const toEdit = (data) => {
|
|
|
|
- form.value = data
|
|
|
|
- dialog.value = { type: '1', show: true, title: '修改分数' }
|
|
|
|
-}
|
|
|
|
// 删除
|
|
// 删除
|
|
-const toDelete = async (data) => {
|
|
|
|
|
|
+const onDelete = async (data) => {
|
|
const res = await store.del(data.id)
|
|
const res = await store.del(data.id)
|
|
if ($checkRes(res, true)) {
|
|
if ($checkRes(res, true)) {
|
|
search({ skip, limit })
|
|
search({ skip, limit })
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+const onSave = async (data) => {
|
|
|
|
+ let res
|
|
|
|
+ const other = { time: moment().format('YYYY-MM-DD'), match: matchForm.value.id }
|
|
|
|
+ if (get(data, 'id')) res = await store.update({ ...data, ...other })
|
|
|
|
+ else res = await store.create({ ...data, ...other })
|
|
|
|
+ if ($checkRes(res, true)) {
|
|
|
|
+ search({ skip, limit })
|
|
|
|
+ }
|
|
|
|
+}
|
|
const toSave = async () => {
|
|
const toSave = async () => {
|
|
const data = cloneDeep(form.value)
|
|
const data = cloneDeep(form.value)
|
|
const other = { time: moment().format('YYYY-MM-DD'), match: matchForm.value.id }
|
|
const other = { time: moment().format('YYYY-MM-DD'), match: matchForm.value.id }
|
|
@@ -147,6 +163,19 @@ const toClose = () => {
|
|
form.value = {}
|
|
form.value = {}
|
|
dialog.value = { show: false }
|
|
dialog.value = { show: false }
|
|
}
|
|
}
|
|
|
|
+const active = ref(0)
|
|
|
|
+// 上一步
|
|
|
|
+const back = async () => {
|
|
|
|
+ if (active.value > 0) active.value = active.value - 1
|
|
|
|
+ else active.value = 0
|
|
|
|
+ await search({ skip, limit })
|
|
|
|
+}
|
|
|
|
+// 下一步
|
|
|
|
+const next = async () => {
|
|
|
|
+ if (active.value < matchPathList.value.length - 1) active.value = active.value + 1
|
|
|
|
+ else active.value = 0
|
|
|
|
+ await search({ skip, limit })
|
|
|
|
+}
|
|
// 分页
|
|
// 分页
|
|
const changePage = (page = currentPage.value) => {
|
|
const changePage = (page = currentPage.value) => {
|
|
search({ skip: (page - 1) * limit, limit: limit })
|
|
search({ skip: (page - 1) * limit, limit: limit })
|
|
@@ -176,6 +205,10 @@ const sizeChange = (limits) => {
|
|
cursor: default;
|
|
cursor: default;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ .button {
|
|
|
|
+ text-align: center;
|
|
|
|
+ margin: 12px 0 0 0;
|
|
|
|
+ }
|
|
.thr {
|
|
.thr {
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: center;
|
|
justify-content: center;
|