Compare commits

...

2 Commits
master ... dev

Author SHA1 Message Date
34701892@qq.com 308e74d37f feat: 添加转发量列并更新本地API地址
- 在jnh页面表格中添加转发量(shareCount)列
- 将开发环境API地址切换为本地localhost地址
2026-02-10 16:26:07 +08:00
34701892@qq.com 69ace4cece feat(richedit): 添加评分下拉选项6-10
添加6-10分的评分选项,扩展评分范围以满足更多需求
2026-02-10 16:05:34 +08:00
3 changed files with 8 additions and 2 deletions

View File

@ -3,11 +3,11 @@ ENV = development
# 本地环境接口地址
# VITE_API_URL = http://4155gf93ll13.vicp.fun/admin
# VITE_API_URL = http://localhost:13579/admin
VITE_API_URL = http://localhost:13579/admin
# VITE_API_URL = https://cankao.cs.com.cn/admin
# VITE_API_URL = http://127.0.0.1:13579/admin
VITE_API_URL = http://123.60.153.169:8040/admin
# VITE_API_URL = http://123.60.153.169:8040/admin
# VITE_API_URL = /api

View File

@ -40,6 +40,7 @@
<el-table-column prop="department" label="部门" align="center" />
<el-table-column prop="createTime" label="创建时间" align="center" />
<el-table-column prop="updateTime" label="更新时间" align="center" />
<el-table-column prop="shareCount" label="转发量" align="center" />
<el-table-column prop="status" label="账号状态" align="center">
<template #default="scope">

View File

@ -484,6 +484,11 @@
<el-dropdown-menu>
<el-dropdown-item :command="null">全部</el-dropdown-item>
<el-dropdown-item :command="0">无评分</el-dropdown-item>
<el-dropdown-item :command="10">10</el-dropdown-item>
<el-dropdown-item :command="9">9</el-dropdown-item>
<el-dropdown-item :command="8">8</el-dropdown-item>
<el-dropdown-item :command="7">7</el-dropdown-item>
<el-dropdown-item :command="6">6</el-dropdown-item>
<el-dropdown-item :command="5">5</el-dropdown-item>
<el-dropdown-item :command="4">4</el-dropdown-item>
<el-dropdown-item :command="3">3</el-dropdown-item>