Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
R
rsbuild-vue3-template
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
曾哲
rsbuild-vue3-template
Commits
5fdae1b0
提交
5fdae1b0
authored
12月 11, 2024
作者:
万潇逸
浏览文件
操作
浏览文件
下载
差异文件
合并分支 'feature_xiejiang_0.1' 到 'master'
修改页面缓存没有加载 以及表格样式问题 查看合并请求 iep/web-platform!3
上级
3628465a
3ad02190
显示空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
32 行增加
和
8 行删除
+32
-8
edit.vue
src/views/customer/institution/edit.vue
+2
-2
index.vue
src/views/customer/institution/index.vue
+4
-1
dictionary-subset.vue
src/views/sys-config/dictionary/dictionary-subset.vue
+3
-1
index.vue
src/views/sys-config/dictionary/index.vue
+4
-0
index.vue
src/views/sys-config/menu/index.vue
+4
-1
index.vue
src/views/sys-config/version/index.vue
+4
-1
capabilities.vue
src/views/sys-permissions/authority/page/capabilities.vue
+4
-1
index.vue
src/views/sys-permissions/role/index.vue
+3
-0
index.vue
src/views/sys-permissions/user/index.vue
+4
-1
没有找到文件。
src/views/customer/institution/edit.vue
浏览文件 @
5fdae1b0
...
...
@@ -2,7 +2,7 @@
* @Author: xiejiang
* @Date: 2024-12-01 10:26:11
* @LastEditors: xiejiang
* @LastEditTime: 2024-12-11 2
1:56:56
* @LastEditTime: 2024-12-11 2
3:10:28
* @Description: 新增编辑角色
* Copyright(c)2024 by 好老师教育科技有限公司 All right Reserved.
-->
...
...
@@ -41,7 +41,7 @@
<t-form-item
label=
"机构服务结束时间"
name=
"serviceTerminationTime"
class=
"position-relative"
>
<template
#
label
>
<div
style=
"display: inline-flex"
>
<span>
自定义标签
</span>
<span>
机构服务结束时间
</span>
<p
class=
"text-[var(--td-warning-color-6)] m-[0] text-[12px] ml-[8px]"
>
(机构服务的结束时间为该日期当日23:59:59)
</p>
...
...
src/views/customer/institution/index.vue
浏览文件 @
5fdae1b0
...
...
@@ -2,7 +2,7 @@
* @Author: xiejiang
* @Date: 2024-11-28 15:01:02
* @LastEditors: xiejiang
* @LastEditTime: 2024-12-11 2
0:19:1
9
* @LastEditTime: 2024-12-11 2
3:13:3
9
* @Description: 机构管理
* Copyright(c)2024 by 好老师教育科技有限公司 All right Reserved.
-->
...
...
@@ -84,6 +84,9 @@ onMounted(() => {
title
:
'机构管理'
}
])
})
onActivated
(()
=>
{
getDictData
()
getData
()
})
...
...
src/views/sys-config/dictionary/dictionary-subset.vue
浏览文件 @
5fdae1b0
...
...
@@ -2,7 +2,7 @@
* @Author: xiejiang
* @Date: 2024-11-11 09:38:40
* @LastEditors: xiejiang
* @LastEditTime: 2024-12-11
11:31
:32
* @LastEditTime: 2024-12-11
23:23
:32
* @Description: 系统字典-管理子集
* Copyright(c)2024 by 好老师教育科技有限公司 All right Reserved.
-->
...
...
@@ -17,6 +17,7 @@
<DetailTable
label=
"字典名称"
:value=
"dataInfo.dictName"
/>
<DetailTable
label=
"字典编码"
:value=
"dataInfo.dictCode"
/>
<DetailTable
label=
"字典属性"
>
<div
class=
"flex flex-wrap"
>
<span
v-for=
"v in dictionarys"
:key=
"v.value"
...
...
@@ -24,6 +25,7 @@
>
{{
dictionaryAttributeTxt
(
dataInfo
[
v
.
value
]
?
v
.
allow
:
v
.
noAllow
)?.
label
}}
</span>
</div>
</DetailTable>
<DetailTable
label=
"字典说明"
width=
"100%"
:value=
"dataInfo.remark"
/>
</div>
...
...
src/views/sys-config/dictionary/index.vue
浏览文件 @
5fdae1b0
...
...
@@ -89,6 +89,10 @@ onMounted(() => {
getData
()
})
onActivated
(()
=>
{
getData
()
})
const
dictionaryEditRef
=
ref
()
// 加载状态
...
...
src/views/sys-config/menu/index.vue
浏览文件 @
5fdae1b0
...
...
@@ -2,7 +2,7 @@
* @Author: xiejiang
* @Date: 2024-11-11 09:38:40
* @LastEditors: xiejiang
* @LastEditTime: 2024-12-11 2
1:51:44
* @LastEditTime: 2024-12-11 2
3:13:08
* @Description: 菜单管理
* Copyright(c)2024 by 好老师教育科技有限公司 All right Reserved.
-->
...
...
@@ -117,6 +117,9 @@ onMounted(() => {
title
:
'菜单管理'
}
])
})
onActivated
(()
=>
{
getData
()
GetAllMenuGroup
()
})
...
...
src/views/sys-config/version/index.vue
浏览文件 @
5fdae1b0
...
...
@@ -2,7 +2,7 @@
* @Author: xiejiang
* @Date: 2024-11-11 09:38:40
* @LastEditors: xiejiang
* @LastEditTime: 2024-12-11 2
1:51:06
* @LastEditTime: 2024-12-11 2
3:12:57
* @Description: 版本管理
* Copyright(c)2024 by 好老师教育科技有限公司 All right Reserved.
-->
...
...
@@ -102,6 +102,9 @@ onMounted(() => {
title
:
'版本管理'
}
])
})
onActivated
(()
=>
{
getData
()
})
// 搜索参数类型
...
...
src/views/sys-permissions/authority/page/capabilities.vue
浏览文件 @
5fdae1b0
...
...
@@ -2,7 +2,7 @@
* @Author: xiejiang
* @Date: 2024-12-05 17:16:22
* @LastEditors: xiejiang
* @LastEditTime: 2024-12-11 2
2:31:51
* @LastEditTime: 2024-12-11 2
3:14:14
* @Description: 功能权限
* Copyright(c)2024 by 好老师教育科技有限公司 All right Reserved.
-->
...
...
@@ -163,6 +163,7 @@ defineExpose({
width: 230px;
box-sizing: border-box;
align-items: center;
min-height: 48px;
:deep(.t-checkbox) {
width: 100%;
...
...
@@ -192,6 +193,8 @@ defineExpose({
.t-collapse-panel__header {
padding: 8px;
margin-top: -1px;
min-height: 48px;
box-sizing: border-box;
background: var(--td-brand-color-12) !important;
border: 1px solid var(--td-border) !important;
}
...
...
src/views/sys-permissions/role/index.vue
浏览文件 @
5fdae1b0
...
...
@@ -81,6 +81,9 @@ onMounted(() => {
name
:
'role'
}
])
})
onActivated
(()
=>
{
getData
()
})
...
...
src/views/sys-permissions/user/index.vue
浏览文件 @
5fdae1b0
...
...
@@ -37,7 +37,7 @@
</template>
<
template
#
operation=
"{ row }"
>
<template
v-if=
"row.userType === 2"
>
-
</
template
>
<template
v-if=
"row.userType === 2"
>
<div
class=
"min-h-[32px]"
>
-
</div>
</
template
>
<
template
v-else
><operate-btn
v-if=
"row.status != 2"
content=
"启用"
@
click=
"handelStatus(row, 2)"
>
</operate-btn>
<operate-btn
v-if=
"row.status != 1"
content=
"详情"
@
click=
"handelDetail(row)"
>
</operate-btn>
...
...
@@ -83,6 +83,9 @@ onMounted(() => {
title
:
'用户管理'
}
])
})
onActivated
(()
=>
{
getData
()
})
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论