From 92a231cacb398e1358ec2e743ea8d945150b9edc Mon Sep 17 00:00:00 2001
From: hrx <18603305412@163.com>
Date: Tue, 23 Sep 2025 17:47:59 +0800
Subject: [PATCH] uptada style
---
.../components/FloatingBox/FloatingBox.vue | 5 +-
.../src/layout/components/Sidebar/Logo.vue | 55 +-
.../src/layout/components/Sidebar/index.vue | 110 +-
f/web-kboss/src/router/index.js | 5 -
f/web-kboss/src/styles/index.css | 12 +
.../customer/customerInformation/index.scss | 4 +-
.../customer/customerInformation/index.vue | 652 +++--
.../documentManagement/index.vue | 2 +-
.../productSupply/index.vue | 11 +-
.../sales/distributorManagement/index.vue | 2245 +++++++++--------
10 files changed, 1668 insertions(+), 1433 deletions(-)
diff --git a/f/web-kboss/src/components/FloatingBox/FloatingBox.vue b/f/web-kboss/src/components/FloatingBox/FloatingBox.vue
index 741c949..92ea1f1 100644
--- a/f/web-kboss/src/components/FloatingBox/FloatingBox.vue
+++ b/f/web-kboss/src/components/FloatingBox/FloatingBox.vue
@@ -26,10 +26,11 @@
-
+
+
diff --git a/f/web-kboss/src/layout/components/Sidebar/Logo.vue b/f/web-kboss/src/layout/components/Sidebar/Logo.vue
index bec503f..8f31886 100644
--- a/f/web-kboss/src/layout/components/Sidebar/Logo.vue
+++ b/f/web-kboss/src/layout/components/Sidebar/Logo.vue
@@ -1,33 +1,20 @@
-
@@ -133,8 +130,8 @@
-
-
+
+
@@ -146,8 +143,8 @@
-
-
+
+
@@ -159,8 +156,8 @@
-
-
+
+
@@ -172,8 +169,8 @@
-
-
+
+
@@ -185,8 +182,8 @@
-
-
+
+
@@ -198,8 +195,8 @@
-
-
+
+
@@ -230,8 +227,8 @@
-
-
+
+
@@ -243,8 +240,8 @@
-
-
+
+
@@ -256,8 +253,8 @@
-
-
+
+
@@ -269,8 +266,8 @@
-
-
+
+
@@ -282,8 +279,8 @@
-
-
+
+
@@ -298,25 +295,24 @@
-
+
余额信息
-
- 账户余额:
+
+ 账户余额:
¥{{ balance }}
- 支付宝充值:
+ 支付宝充值:
-
充值
- 对公账户充值:
+ 对公账户充值:
充值
@@ -327,67 +323,57 @@
- 账号昵称:
-
- {{ form.fullName }}
-
+ 账号昵称:
+ {{ form.fullName }}
- 所属机构:
-
- {{ form.parentname }}
-
+ 所属机构:
+ {{ form.parentname }}
- 销售经理名称:
-
- {{ form.saleMgrName }}
-
+ 销售经理名称:
+ {{ form.saleMgrName }}
- 账号ID:
-
- {{ userId }}
-
+ 账号ID:
+ {{ userId }}
- 联系电话:
+ 联系电话:
{{ form.tel }}
-
-
+
+
- 联系邮箱:
+ 联系邮箱:
{{ form.email }}
-
-
+
+
- 地址:
+ 地址:
{{ form.address }}
-
-
+
+
-
财务信息
用户业务信息和个人信息配置
@@ -403,142 +389,142 @@
- ak:
+ ak:
{{ form.ak }}
-
-
+
+
- sk:
+ sk:
{{ form.sk }}
-
-
+
+
- 腾讯id:
+ 腾讯id:
{{ form.thirdId }}
-
-
+
+
- 腾讯appId:
+ 腾讯appId:
{{ form.appId }}
-
-
+
+
- 备注:
+ 备注:
{{ form.remark }}
-
-
+
+
- {{ "渠道商id" }}
+ {{ "渠道商id" }}
@@ -594,9 +578,7 @@ import {addCustomerMailcodeAPI, getCustomerMailcodeAPI} from '@/api/customer/rec
export default {
data() {
return {
- // 获取用户代理字P串
userAgent: window.navigator.userAgent,
- // 判断是否为移动设备
isMobile: false,
dialogVisible: false,
mailCode: '',
@@ -611,7 +593,7 @@ export default {
{required: true, message: "请确认新密码", trigger: "blur"},
],
},
- passwordForm: { //修改密码表单
+ passwordForm: {
password: "",
newpassword: "",
configPassword: "",
@@ -645,11 +627,8 @@ export default {
form_taxTel: true,
form_taxpayerIdentity: true,
form_orgcode: true,
- //用户id
userId: sessionStorage.getItem("userId"),
- //用户数据
form: {},
- //圆圈显示的字段
nameText: "",
url: ''
};
@@ -662,10 +641,10 @@ export default {
this.myBalance();
},
methods: {
- goPersonal() {//返回个人信息页
+ goPersonal() {
this.$router.push('/customer/customerInformation')
},
- getRechargeCode() {//点击获取充值码
+ getRechargeCode() {
addCustomerMailcodeAPI({user_id: this.userId}).then(res => {
if (res.status) {
this.dialogVisible = true
@@ -694,26 +673,7 @@ export default {
}
})
},
- updatePassword() { //修改密码回调函数
- // let params = {
- // id: this.userId,
- // password: this.passwordForm.password,
- // newpassword: this.passwordForm.newpassword,
- // };
- // editPasswordAPI(params).then((res) => {
- // if (res.status == true) {
- // this.$message({
- // message: "密码修改成功",
- // type: "success",
- // });
- // this.$router.push({name: "Login"});
- // } else {
- // this.$message({
- // message: res.msg,
- // type: "error",
- // });
- // }
- // });
+ updatePassword() {
this.$refs.passwordForm.validate((valid) => {
if (valid) {
if (
@@ -748,10 +708,10 @@ export default {
}
});
},
- onffline() {//线上充值
+ onffline() {
this.onfflineVisible = true
},
- onsubmit() {//线上充值
+ onsubmit() {
let pamars = {
amount: this.onfflineForm.amount,
userid: this.userId
@@ -778,7 +738,6 @@ export default {
});
}
})
-
},
handleClose() {
this.$nextTick(() => {
@@ -790,17 +749,15 @@ export default {
this.$nextTick(() => {
this.$refs.onfflineForm.resetFields()
this.onfflineVisible = false
-
})
},
cancel() {
this.$nextTick(() => {
this.$refs.onfflineForm.resetFields()
this.onfflineVisible = false
-
})
},
- getZJUserInfo() { //获取用户信息
+ getZJUserInfo() {
var userid = {
userid: sessionStorage.getItem("userId"),
};
@@ -814,7 +771,7 @@ export default {
});
});
},
- myBalance() {//获取本人余额
+ myBalance() {
myBalanceAPI().then((res) => {
if (res.data == null) {
this.balance = 0;
@@ -863,13 +820,13 @@ export default {
this.notFindUsers();
});
},
- open4() {//错误提示
+ open4() {
this.$message.error("请您填写正确的信息");
},
notFindUsers() {
this.$message.error("添加失败");
},
- open2() { //成功提示
+ open2() {
this.$message({
showClose: true,
message: "添加成功",
@@ -879,6 +836,7 @@ export default {
},
};
+
-
+
+
+
+
+
diff --git a/f/web-kboss/src/views/operationAndMaintenance/documentManagement/index.vue b/f/web-kboss/src/views/operationAndMaintenance/documentManagement/index.vue
index b8ebc6b..3fb856a 100644
--- a/f/web-kboss/src/views/operationAndMaintenance/documentManagement/index.vue
+++ b/f/web-kboss/src/views/operationAndMaintenance/documentManagement/index.vue
@@ -1,5 +1,5 @@
-
+
新增文档
diff --git a/f/web-kboss/src/views/operationAndMaintenance/productSupply/index.vue b/f/web-kboss/src/views/operationAndMaintenance/productSupply/index.vue
index abcbda6..99b48d8 100644
--- a/f/web-kboss/src/views/operationAndMaintenance/productSupply/index.vue
+++ b/f/web-kboss/src/views/operationAndMaintenance/productSupply/index.vue
@@ -1,7 +1,6 @@
-
-
+
+
查询
@@ -73,7 +72,7 @@
-
+
@@ -405,9 +404,11 @@ export default {
-
+
+
+