diff --git a/ZR.Vue/src/assets/image/qrcode.jpg b/ZR.Vue/src/assets/image/qrcode.jpg new file mode 100644 index 00000000..3261850d Binary files /dev/null and b/ZR.Vue/src/assets/image/qrcode.jpg differ diff --git a/ZR.Vue/src/assets/image/qrcodeH5.png b/ZR.Vue/src/assets/image/qrcodeH5.png new file mode 100644 index 00000000..2b4cb322 Binary files /dev/null and b/ZR.Vue/src/assets/image/qrcodeH5.png differ diff --git a/ZR.Vue/src/views/index.vue b/ZR.Vue/src/views/index.vue index 5a646e08..b7f4f155 100644 --- a/ZR.Vue/src/views/index.vue +++ b/ZR.Vue/src/views/index.vue @@ -12,40 +12,113 @@ -
- - - {{ userInfo.welcomeMessage }},{{ userInfo.nickName }},{{ userInfo.welcomeContent }} - - -
昵称:
-
{{ userInfo.nickName }}
-
- -
身份:
-
- {{ item.roleName }} -
-
-
- - -
IP:
-
{{ userInfo.loginIP }}
-
- -
时间:
-
{{ currentTime }}
-
-
- - - 修改信息 - - - -
-
+ 【腾讯云限时秒杀活动】 + ☛☛点我进入☚☚ +
+ + 【华为特惠专区,多款产品限时特价】 + + ☛☛点我进入☚☚ + +
+ 【领取七牛云通用云产品优惠券】 + ☛☛点我进入☚☚ +
+ 【Gitee 企业版优惠专区】 + ☛☛点我进入☚☚ +
+

云产品通用红包,可叠加官网常规优惠使用。(仅限新用户)

+ + + + + +

ZRAdmin.NET后台管理框架

+

+ ZRAdmin.NET借鉴了很多开源项目的优点,让你开发Web管理系统更简单,所以我也把它给开源了(前端 + vue页面主要参考若依,在此表示感谢.) +

+

代码完全免费开源,易读易懂、界面简洁美观,给你的项目多一种选择与参考。

+

+ 当前版本: v{{ version }} + 更新日志 + +

+

+ 访问码云 + + Github + +

+

+

如果觉得不错欢迎给个⭐Star⭐收藏一下 ,这样作者才有继续免费下去的动力,谢谢!

+
+ + +

技术选型

+ +

后端技术

+
    +
  • NET5
  • +
  • JWT
  • +
  • SqlSugar
  • +
  • Quartz.Net
  • +
  • MySql
  • +
  • Mapster
  • +
  • Epplus
  • +
  • Signalr
  • +
  • ...
  • +
+
+ +

前端技术

+
    +
  • Vue
  • +
  • Vuex
  • +
  • Element-ui
  • +
  • Axios
  • +
  • Sass
  • +
  • Quill
  • +
  • ...
  • +
+
+
+
+
+ + + + +
+ 联系信息 +
+
+

+ 官网: + http://www.izhaorui.cn/doc +

+
+
+

+ QQ群:191349103 +

@@ -67,28 +140,12 @@ -
- - - - - - - - -
- -
-
- -
- -
-
- -
- -
+ +
diff --git a/ZR.Vue/src/views/index_v1.vue b/ZR.Vue/src/views/index_v1.vue new file mode 100644 index 00000000..e8b4340e --- /dev/null +++ b/ZR.Vue/src/views/index_v1.vue @@ -0,0 +1,368 @@ + + + + + diff --git a/ZR.Vue/src/views/system/dept/index.vue b/ZR.Vue/src/views/system/dept/index.vue index ce222675..ac851d4e 100644 --- a/ZR.Vue/src/views/system/dept/index.vue +++ b/ZR.Vue/src/views/system/dept/index.vue @@ -219,7 +219,7 @@ export default { leader: undefined, phone: undefined, email: undefined, - status: '0', + status: 0, } this.resetForm('form') }, diff --git a/ZR.Vue/src/views/system/role/index.vue b/ZR.Vue/src/views/system/role/index.vue index 984c0613..edd8a44c 100644 --- a/ZR.Vue/src/views/system/role/index.vue +++ b/ZR.Vue/src/views/system/role/index.vue @@ -330,7 +330,7 @@ export default { }, // 角色状态修改 handleStatusChange(row) { - const text = row.status === '0' ? '启用' : '停用' + const text = row.status == 0 ? '启用' : '停用' console.log(JSON.stringify(row), text) this.$confirm('确认要"' + text + '""' + row.roleName + '"角色吗?', '警告', { @@ -345,7 +345,7 @@ export default { this.msgSuccess(text + '成功') }) .catch(function () { - row.status = row.status === '0' ? '1' : '0' + row.status = row.status == 0 ? 1 : 0 }) }, // 取消按钮 diff --git a/ZR.Vue/src/views/system/user/index.vue b/ZR.Vue/src/views/system/user/index.vue index bba518cf..6bda765c 100644 --- a/ZR.Vue/src/views/system/user/index.vue +++ b/ZR.Vue/src/views/system/user/index.vue @@ -51,7 +51,7 @@ - + @@ -418,7 +418,7 @@ export default { }, // 用户状态修改 handleStatusChange(row) { - let text = row.status === '0' ? '启用' : '停用' + let text = row.status == 0 ? '启用' : '停用' this.$confirm('确认要"' + text + '""' + row.userName + '"用户吗?', '警告', { confirmButtonText: '确定', cancelButtonText: '取消', @@ -431,7 +431,7 @@ export default { this.msgSuccess(text + '成功') }) .catch(function () { - row.status = row.status === '0' ? '1' : '0' + row.status = row.status == 0 ? 1 : 0 }) }, // 取消按钮