From 9bb3efea9b27473e05afa92fcf85837a5796014f Mon Sep 17 00:00:00 2001 From: jscyl13849007907 <13849007907@163.com> Date: Mon, 8 Dec 2025 17:23:52 +0800 Subject: [PATCH 1/2] no message --- uni_modules/rh-ui/changelog.md | 36 ++ .../rh-ui/components/rh-button/rh-button.vue | 364 +++++++++++++++++++++ uni_modules/rh-ui/components/rh-empty/rh-empty.vue | 47 +++ uni_modules/rh-ui/components/rh-image/rh-image.vue | 64 ++++ .../rh-ui/components/rh-loading/rh-loading.vue | 62 ++++ .../rh-login-false-list/rh-login-false-list.vue | 47 +++ .../components/rh-quickconfirm/rh-quickconfirm.vue | 86 +++++ .../components/rh-quicklogin/rh-quicklogin.vue | 266 +++++++++++++++ .../components/rh-serverpopup/rh-serverpopup.vue | 243 ++++++++++++++ .../components/rh-unlogininfo/rh-unlogininfo.vue | 83 +++++ uni_modules/rh-ui/package.json | 107 ++++++ uni_modules/rh-ui/readme.md | 4 + 12 files changed, 1409 insertions(+) create mode 100644 uni_modules/rh-ui/changelog.md create mode 100644 uni_modules/rh-ui/components/rh-button/rh-button.vue create mode 100644 uni_modules/rh-ui/components/rh-empty/rh-empty.vue create mode 100644 uni_modules/rh-ui/components/rh-image/rh-image.vue create mode 100644 uni_modules/rh-ui/components/rh-loading/rh-loading.vue create mode 100644 uni_modules/rh-ui/components/rh-login-false-list/rh-login-false-list.vue create mode 100644 uni_modules/rh-ui/components/rh-quickconfirm/rh-quickconfirm.vue create mode 100644 uni_modules/rh-ui/components/rh-quicklogin/rh-quicklogin.vue create mode 100644 uni_modules/rh-ui/components/rh-serverpopup/rh-serverpopup.vue create mode 100644 uni_modules/rh-ui/components/rh-unlogininfo/rh-unlogininfo.vue create mode 100644 uni_modules/rh-ui/package.json create mode 100644 uni_modules/rh-ui/readme.md diff --git a/uni_modules/rh-ui/changelog.md b/uni_modules/rh-ui/changelog.md new file mode 100644 index 0000000..fa0dc43 --- /dev/null +++ b/uni_modules/rh-ui/changelog.md @@ -0,0 +1,36 @@ +## 1.0.908(2025-12-08) +迭代 +## 1.0.907(2025-12-08) +新增【rh-login-false-list】 +## 1.0.906(2025-12-05) +button 支持渐变色 +## 1.0.905(2025-12-04) +优化包体大小 +## 1.0.904(2025-12-02) +优化快捷登录 +## 1.0.903(2025-12-01) +新增【quicklogin】 +## 1.0.902(2025-12-01) +新增【rh-quickconfirm】 +## 1.0.901(2025-12-01) +新增【rh-quickconfirm】 +## 1.0.9(2025-12-01) +新增【rh-serverpopup】【rh-unlogininfo】联系客服 +## 1.0.8(2025-12-01) +新增【image】 +## 1.0.7(2025-12-01) +新增【loading】组件 +## 1.0.6(2025-11-26) +新增【empty】 +## 1.0.5(2025-11-26) +【button】优化 +## 1.0.4(2025-11-26) +调整【button】组件 +## 1.0.3(2025-11-25) +新增【button】组件 +## 1.0.2(2025-11-25) +版本迭代 +## 1.0.1(2025-11-24) +版本迭代更新 +## 1.0.0(2025-11-24) +初版上线 diff --git a/uni_modules/rh-ui/components/rh-button/rh-button.vue b/uni_modules/rh-ui/components/rh-button/rh-button.vue new file mode 100644 index 0000000..35f6e84 --- /dev/null +++ b/uni_modules/rh-ui/components/rh-button/rh-button.vue @@ -0,0 +1,364 @@ + + + + + diff --git a/uni_modules/rh-ui/components/rh-empty/rh-empty.vue b/uni_modules/rh-ui/components/rh-empty/rh-empty.vue new file mode 100644 index 0000000..93765a1 --- /dev/null +++ b/uni_modules/rh-ui/components/rh-empty/rh-empty.vue @@ -0,0 +1,47 @@ + + + + + \ No newline at end of file diff --git a/uni_modules/rh-ui/components/rh-image/rh-image.vue b/uni_modules/rh-ui/components/rh-image/rh-image.vue new file mode 100644 index 0000000..3b96591 --- /dev/null +++ b/uni_modules/rh-ui/components/rh-image/rh-image.vue @@ -0,0 +1,64 @@ + + + + + \ No newline at end of file diff --git a/uni_modules/rh-ui/components/rh-loading/rh-loading.vue b/uni_modules/rh-ui/components/rh-loading/rh-loading.vue new file mode 100644 index 0000000..bd29115 --- /dev/null +++ b/uni_modules/rh-ui/components/rh-loading/rh-loading.vue @@ -0,0 +1,62 @@ + + + + + diff --git a/uni_modules/rh-ui/components/rh-login-false-list/rh-login-false-list.vue b/uni_modules/rh-ui/components/rh-login-false-list/rh-login-false-list.vue new file mode 100644 index 0000000..5cc1f25 --- /dev/null +++ b/uni_modules/rh-ui/components/rh-login-false-list/rh-login-false-list.vue @@ -0,0 +1,47 @@ + + + + + \ No newline at end of file diff --git a/uni_modules/rh-ui/components/rh-quickconfirm/rh-quickconfirm.vue b/uni_modules/rh-ui/components/rh-quickconfirm/rh-quickconfirm.vue new file mode 100644 index 0000000..03be9cd --- /dev/null +++ b/uni_modules/rh-ui/components/rh-quickconfirm/rh-quickconfirm.vue @@ -0,0 +1,86 @@ + + + + + diff --git a/uni_modules/rh-ui/components/rh-quicklogin/rh-quicklogin.vue b/uni_modules/rh-ui/components/rh-quicklogin/rh-quicklogin.vue new file mode 100644 index 0000000..29a6f7d --- /dev/null +++ b/uni_modules/rh-ui/components/rh-quicklogin/rh-quicklogin.vue @@ -0,0 +1,266 @@ + + + + + diff --git a/uni_modules/rh-ui/components/rh-serverpopup/rh-serverpopup.vue b/uni_modules/rh-ui/components/rh-serverpopup/rh-serverpopup.vue new file mode 100644 index 0000000..35cdbaa --- /dev/null +++ b/uni_modules/rh-ui/components/rh-serverpopup/rh-serverpopup.vue @@ -0,0 +1,243 @@ + + + + + \ No newline at end of file diff --git a/uni_modules/rh-ui/components/rh-unlogininfo/rh-unlogininfo.vue b/uni_modules/rh-ui/components/rh-unlogininfo/rh-unlogininfo.vue new file mode 100644 index 0000000..fb3a0c0 --- /dev/null +++ b/uni_modules/rh-ui/components/rh-unlogininfo/rh-unlogininfo.vue @@ -0,0 +1,83 @@ + + + + + diff --git a/uni_modules/rh-ui/package.json b/uni_modules/rh-ui/package.json new file mode 100644 index 0000000..3907620 --- /dev/null +++ b/uni_modules/rh-ui/package.json @@ -0,0 +1,107 @@ +{ + "id": "rh-ui", + "displayName": "rh-ui", + "version": "1.0.908", + "description": "公司内部UI框架", + "keywords": [ + "ui框架" + ], + "repository": "", + "engines": { + "HBuilderX": "^3.1.0", + "uni-app": "^4.86", + "uni-app-x": "" + }, + "dcloudext": { + "type": "component-vue", + "sale": { + "regular": { + "price": "0.00" + }, + "sourcecode": { + "price": "0.00" + } + }, + "contact": { + "qq": "3355927980@qq.com" + }, + "declaration": { + "ads": "无", + "data": "插件不采集任何数据", + "permissions": "无" + }, + "npmurl": "", + "darkmode": "x", + "i18n": "x", + "widescreen": "x" + }, + "uni_modules": { + "dependencies": [], + "encrypt": [], + "platforms": { + "cloud": { + "tcb": "x", + "aliyun": "√", + "alipay": "x" + }, + "client": { + "uni-app": { + "vue": { + "vue2": { + }, + "vue3": { + } + }, + "web": { + "safari": "-", + "chrome": "-" + }, + "app": { + "vue": { + }, + "nvue": "-", + "android": { + "extVersion": "1.0.908", + "minVersion": "19" + }, + "ios": { + "extVersion": "1.0.908", + "minVersion": "12" + }, + "harmony": "-" + }, + "mp": { + "weixin": { + }, + "alipay": "-", + "toutiao": "-", + "baidu": "-", + "kuaishou": "-", + "jd": "-", + "harmony": "-", + "qq": "-", + "lark": "-" + }, + "quickapp": { + "huawei": "-", + "union": "-" + } + }, + "uni-app-x": { + "web": { + "safari": "-", + "chrome": "-" + }, + "app": { + "android": "-", + "ios": "-", + "harmony": "-" + }, + "mp": { + "weixin": "-" + } + } + } + } + } +} \ No newline at end of file diff --git a/uni_modules/rh-ui/readme.md b/uni_modules/rh-ui/readme.md new file mode 100644 index 0000000..ce81087 --- /dev/null +++ b/uni_modules/rh-ui/readme.md @@ -0,0 +1,4 @@ +# rh-ui +``` +人海公司规范性UI框架,提供内部项目使用,如需商用,请联系作者 +``` \ No newline at end of file From c90ff7155a527472d994e701c325562935650ff1 Mon Sep 17 00:00:00 2001 From: jscyl13849007907 <13849007907@163.com> Date: Mon, 8 Dec 2025 17:39:56 +0800 Subject: [PATCH 2/2] no message --- App.vue | 8 ++++++++ components/list/apply.vue | 7 +------ components/list/job.vue | 13 ++----------- pages/home/order.vue | 5 +---- pages/message/index.vue | 7 +------ 5 files changed, 13 insertions(+), 27 deletions(-) diff --git a/App.vue b/App.vue index 650edd8..bb3d74d 100644 --- a/App.vue +++ b/App.vue @@ -550,4 +550,12 @@ page { .g_pt_90 { padding-top: 90px; } + +.g-rh-login-false-list{ + .bocai_btn_type_primary{ + background-color: #00b666 !important; + border: 1px solid #00b666 !important; + } +} + diff --git a/components/list/apply.vue b/components/list/apply.vue index af869e3..086ab87 100644 --- a/components/list/apply.vue +++ b/components/list/apply.vue @@ -11,12 +11,7 @@ - - - - - - + diff --git a/components/list/job.vue b/components/list/job.vue index b959482..20a8618 100644 --- a/components/list/job.vue +++ b/components/list/job.vue @@ -5,18 +5,9 @@ - - - - - + diff --git a/pages/home/order.vue b/pages/home/order.vue index acff6b7..971aaa1 100644 --- a/pages/home/order.vue +++ b/pages/home/order.vue @@ -1,10 +1,7 @@