first commit

This commit is contained in:
2026-08-26 14:25:17 +08:00
commit 06debfd1fc
10595 changed files with 1836924 additions and 0 deletions
@@ -0,0 +1,764 @@
<!--#
layout("/layouts/platform.html"){
#-->
<div id="app" v-cloak>
<guava :edit_scroll="false" ref="guava">
<template>
<el-card shadow="never">
<div class="search">
<div class="search-item">
<div class="search-item-label">年度:</div>
<div class="search-item-option">
<el-date-picker
@change="doSearch"
placeholder="请选择年度"
style="width: 100%"
type="year"
v-model="pageForm.year"
value-format="yyyy"
></el-date-picker>
</div>
</div>
<div class="search-query">
<el-button @click="doSearch" icon="el-icon-search" type="primary">搜索</el-button>
</div>
</div>
</el-card>
<el-card class="mt10" shadow="never">
<table-tool :app="this" label="福利项目">
<template #func></template>
</table-tool>
<el-table
:data="tableData"
:size="tableSize"
@sort-change="pageOrder"
ref="table"
row-key="id"
style="width: 100%"
v-loading="tableLoading"
>
<el-table-column
:index="indexMethod"
align="center"
header-align="center"
label="序号"
type="index"
width="80px"
></el-table-column>
<el-table-column
:key="column.prop"
:label="column.label"
:prop="column.prop"
:sortable="column.sortable"
:width="column.width"
align="center"
header-align="center"
min-width="100px"
show-overflow-tooltip
v-for="column in tableColumns"
>
<template scope="{row}" v-if="column.prop=='choiceTime'">
<i class="el-icon-time"></i>
&ensp; {{$moment(row.choiceTimeStart) .format('YYYY/MM/DD HH:mm')}}
<span>- {{$moment(row.choiceTimeEnd) .format('YYYY/MM/DD HH:mm')}}</span>
</template>
<template scope="{row}" v-else-if="column.prop=='isChoose'">
<span class="text-primary" v-if="row.isChoose">已选择</span>
<span class="text-danger" v-else>未选择</span>
</template>
<template scope="{row}" v-else-if="column.prop=='gist_list'">
<span v-if="row.gist_list">{{row.gist_list}}</span>
<span v-else>暂无</span>
</template>
<template scope="{row}" v-else-if="column.prop=='receiveAddress'">
<span v-if="row.receiveAddress">{{row.receiveAddress}}</span>
<span v-else>暂无</span>
</template>
</el-table-column>
<el-table-column align="center" header-align="center" label="操作" prop="userOnline" width="150px">
<template scope="{row}">
<el-button @click="openChoose(row)" size="mini" type="primary">{{confirmButtonInfo(row).text}}</el-button>
</template>
</el-table-column>
</el-table>
<!--#include("/layouts/pagination.html"){}#-->
</el-card>
</template>
<template #edit>
<option-select ref="optionSelectRef" @refresh="doSearch();$refs.guava.index();"></option-select>
</template>
</guava>
</div>
<script nonce="${cspNonce!}">
<!--#include("optionSelect.js"){}#-->
new Vue({
el: "#app",
mixins: [initTableMixins],
data() {
return {
tableColumns: [
{ prop: "year", label: "年度" },
{ prop: "name", label: "项目名称" },
{ prop: "choiceTime", label: "选择时间" },
{ prop: "isChoose", label: "是否选择" },
{ prop: "gist_list", label: "所选福利" }
// { prop: "receiveAddress", label: "收货地址" }
]
}
},
components: {
"option-select": optionSelect
},
methods: {
go_back() {
this.doSearch()
this.$refs.guava.index()
},
confirmButtonInfo(row) {
const { choiceTimeEnd, choiceTimeStart, overdueChoiceTimeEnd, isChoose, selectTime } = row
const now = this.$moment().valueOf()
if (overdueChoiceTimeEnd == null || overdueChoiceTimeEnd === "") {
if (now > this.$moment(choiceTimeStart).valueOf() && now < moment(choiceTimeEnd).valueOf()) {
return { text: isChoose ? "修改" : "确定选择", disabled: false }
} else if (now > this.$moment(choiceTimeEnd).valueOf()) {
return { text: "选择已结束", disabled: true }
} else if (now < this.$moment(choiceTimeStart).valueOf()) {
return { text: "选择未开始", disabled: true }
}
} else {
//已选择了不能再动了
if (isChoose) {
if (
this.$moment(selectTime).valueOf() > this.$moment(choiceTimeEnd).valueOf() &&
now < this.$moment(overdueChoiceTimeEnd).valueOf()
) {
return { text: "确定修改", disabled: false }
}
return { text: "选择已结束", disabled: true }
} else {
if (now > this.$moment(choiceTimeStart).valueOf() && now < this.$moment(overdueChoiceTimeEnd).valueOf()) {
return { text: isChoose ? "修改" : "确定选择", disabled: false }
} else if (now > this.$moment(overdueChoiceTimeEnd).valueOf()) {
return { text: "选择已结束", disabled: true }
} else if (now < this.$moment(choiceTimeStart).valueOf()) {
return { text: "选择未开始", disabled: true }
}
}
}
},
async openChoose(row) {
if (this.confirmButtonInfo(row).disabled) {
this.$message.warning("当前时间段无法选择")
return
}
this.$refs.guava.edit(() => {
this.$refs.optionSelectRef.onOpen(row.id)
})
}
},
async created() {
this.pageData()
}
})
</script>
<style>
/* 全局变量 */
:root {
--primary-color: #409EFF;
--primary-light: #ecf5ff;
--text-primary: #303133;
--text-secondary: #606266;
--text-light: #909399;
--border-color: #EBEEF5;
--success-color: #67c23a;
--warning-color: #e6a23c;
--danger-color: #f56c6c;
}
/* 主容器样式 */
.welfare-select-container {
background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
padding: 16px;
border-radius: 8px;
max-width: 1000px;
margin: 0 auto;
}
/* 截止时间提醒 */
.welfare-deadline {
background: linear-gradient(135deg, #fff7f7 0%, #fff 100%);
border-left: 3px solid var(--danger-color);
padding: 12px 16px;
margin-bottom: 16px;
border-radius: 6px;
display: flex;
align-items: center;
color: var(--danger-color);
box-shadow: 0 2px 8px rgba(245, 108, 108, 0.1);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.01);
}
100% {
transform: scale(1);
}
}
.welfare-deadline i {
margin-right: 8px;
font-size: 16px;
}
/* 选择提示 */
.welfare-notice {
margin-bottom: 16px;
}
.welfare-notice .el-alert {
border-radius: 6px;
padding: 12px 16px;
}
/* 内容区域 */
.welfare-content {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 16px;
}
/* 项目信息卡片 */
.welfare-info-card {
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
width: 100%;
overflow: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-cover {
height: 140px;
overflow: hidden;
position: relative;
margin: -10px -20px 16px;
}
.project-cover::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 40px;
background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.project-cover .el-image {
width: 100%;
height: 100%;
object-fit: cover;
}
.welfare-info-header {
padding: 14px 16px;
border-bottom: 1px solid var(--border-color);
font-size: 16px;
font-weight: 600;
color: var(--text-primary);
display: flex;
align-items: center;
background: linear-gradient(135deg, #f8f9fb 0%, #fff 100%);
}
.welfare-info-header i {
margin-right: 8px;
color: var(--primary-color);
font-size: 18px;
}
.info-item {
display: flex;
padding: 12px 16px;
border-bottom: 1px solid var(--border-color);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.info-item:hover {
background: var(--primary-light);
}
.info-item:last-child {
border-bottom: none;
}
.info-label {
width: 100px;
color: var(--text-secondary);
font-weight: 500;
flex-shrink: 0;
}
.info-value {
flex: 1;
color: var(--text-primary);
}
/* 福利选项卡片 */
.welfare-options-card {
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
width: 100%;
overflow: hidden;
}
.options-count {
font-size: 14px;
color: var(--text-light);
font-weight: normal;
margin-left: 8px;
opacity: 0.8;
}
/* 选项网格 */
.welfare-options-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 16px;
padding: 16px;
}
/* 选项卡片 */
.welfare-option {
position: relative;
border-radius: 6px;
overflow: hidden;
background: #fff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 2px solid transparent;
height: 100%;
display: flex;
flex-direction: column;
cursor: pointer;
animation: fadeIn 0.6s ease-out forwards;
}
.welfare-option:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
transform: translateY(-2px);
}
.welfare-option.selected {
border-color: var(--primary-color);
box-shadow: 0 4px 16px rgba(64, 158, 255, 0.15);
}
.welfare-option.selected::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary-color), #66b1ff);
z-index: 1;
}
/* 选项标签 */
.option-tag {
position: absolute;
top: 8px;
right: 8px;
z-index: 2;
border-radius: 12px;
font-size: 12px;
font-weight: 500;
box-shadow: 0 2px 6px rgba(64, 158, 255, 0.2);
}
/* 选项图片 */
.option-image {
width: 100%;
height: 160px;
overflow: hidden;
position: relative;
}
.option-image::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 40px;
background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}
.option-image .el-image {
width: 100%;
height: 100%;
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.welfare-option:hover .option-image .el-image {
transform: scale(1.06);
}
/* 选项内容 */
.option-content {
padding: 12px 16px;
flex: 1;
display: flex;
flex-direction: column;
position: relative;
background: linear-gradient(135deg, #fff 0%, #f8f9fb 100%);
}
.option-title {
font-size: 14px;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 8px;
line-height: 1.4;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
padding-right: 24px;
}
.option-detail-btn {
display: inline-flex;
align-items: center;
color: var(--primary-color);
font-size: 13px;
margin-top: 8px;
padding: 4px 8px;
border-radius: 4px;
background: var(--primary-light);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
}
.option-detail-btn i {
margin-right: 4px;
font-size: 14px;
}
.option-detail-btn:hover {
background: #dceeff;
transform: translateX(4px);
}
/* 选择控件 */
.option-radio {
position: absolute;
top: 12px;
right: 12px;
}
.option-stepper {
position: absolute;
bottom: 12px;
right: 12px;
}
.option-stepper .el-input-number {
width: 100px;
}
/* 底部按钮 */
.welfare-footer {
display: flex;
justify-content: center;
padding: 16px 0;
}
.welfare-footer .el-button {
min-width: 140px;
height: 40px;
font-size: 15px;
font-weight: 500;
border-radius: 20px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.welfare-footer .el-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(64, 158, 255, 0.25);
}
/* 确认弹窗样式 */
.welfare-confirm-dialog {
border-radius: 8px;
}
.confirm-content {
padding: 16px 0;
}
.confirm-section-title {
font-size: 15px;
color: var(--text-primary);
margin-bottom: 12px;
font-weight: 500;
position: relative;
padding-left: 10px;
}
.confirm-section-title::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 3px;
height: 14px;
background: var(--primary-color);
border-radius: 2px;
}
.confirm-mobile-section {
margin-bottom: 20px;
}
.selected-items {
background: #f8f9fb;
border-radius: 8px;
padding: 16px;
margin-bottom: 16px;
max-height: 300px;
overflow-y: auto;
}
.selected-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px;
background: #fff;
border-radius: 8px;
margin-bottom: 10px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.selected-item:last-child {
margin-bottom: 0;
}
.selected-item:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.selected-item-left {
display: flex;
align-items: center;
flex: 1;
min-width: 0;
}
.selected-item-image {
width: 60px;
height: 60px;
border-radius: 8px;
overflow: hidden;
margin-right: 12px;
flex-shrink: 0;
background: #f5f5f5;
border: 1px solid rgba(0, 0, 0, 0.06);
}
.selected-item-image .el-image {
width: 100%;
height: 100%;
display: block;
}
.image-slot {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
color: #909399;
font-size: 20px;
}
.selected-item-info {
flex: 1;
min-width: 0;
padding: 4px 0;
}
.selected-item-name {
color: var(--text-primary);
font-weight: 500;
font-size: 15px;
line-height: 1.4;
margin-bottom: 6px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.selected-item-quantity {
color: var(--text-secondary);
font-size: 13px;
display: flex;
align-items: center;
}
.selected-item-quantity i {
margin-right: 4px;
font-size: 14px;
color: var(--primary-color);
}
.selected-item-right {
flex-shrink: 0;
margin-left: 16px;
}
.selected-item-right .el-tag {
font-size: 13px;
font-weight: 600;
padding: 0 10px;
height: 24px;
line-height: 22px;
border-radius: 12px;
}
.confirm-total {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px;
background: #f8f9fb;
border-radius: 6px;
margin-top: 16px;
}
.total-label {
color: var(--text-secondary);
font-weight: 500;
font-size: 14px;
}
.total-value {
color: var(--primary-color);
font-weight: 600;
font-size: 15px;
}
.confirm-warning {
margin-top: 16px;
padding: 10px 14px;
background: #fff7e6;
border-radius: 6px;
color: var(--warning-color);
display: flex;
align-items: center;
font-size: 13px;
}
.confirm-warning.warning {
background: #fef0f0;
color: var(--danger-color);
}
.confirm-warning i {
margin-right: 6px;
font-size: 16px;
}
.deadline-info {
margin-top: 12px;
padding: 10px 14px;
background: var(--primary-light);
border-radius: 6px;
color: var(--primary-color);
display: flex;
align-items: center;
font-size: 13px;
}
.deadline-info i {
margin-right: 6px;
font-size: 16px;
}
/* 详情弹窗 */
.welfare-detail-dialog {
border-radius: 8px;
}
.welfare-detail-popup {
padding: 16px;
min-height: 200px;
}
.welfare-detail-title {
font-size: 18px;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 16px;
padding-bottom: 12px;
border-bottom: 1px solid var(--border-color);
text-align: center;
}
.welfare-detail-content {
color: var(--text-secondary);
line-height: 1.6;
font-size: 14px;
}
/* 加载状态 */
.welfare-loading {
min-height: 300px;
display: flex;
align-items: center;
justify-content: center;
}
/* 动画 */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.welfare-select-container > * {
animation: fadeIn 0.5s ease-out forwards;
}
</style>
<!--#
}
#-->
File diff suppressed because it is too large Load Diff