+
审批意见:
@@ -274,16 +277,25 @@ init()
border-bottom: none;
}
- > div:first-child {
+ .avatar-block {
display: flex;
-
- > span {
- width: 100px;
- color: #2a99ff;
+ .name {
+ width:130px;
+ display: flex;
+ flex-direction: column;
margin-left: 10px;
- margin-right: 20px;
+ margin-right: 20px;
+
+ > span:first-child {
+ color: #2a99ff;
+ }
+ >span:last-child{
+ margin-top: 5px;
+ color: #909399;
+ }
}
+
}
> div:nth-child(2) {
From b7946d44c8ee9cd7ab69bbec3a1b84c09a8de7f0 Mon Sep 17 00:00:00 2001
From: odjbin <1042039504@qq.com>
Date: Fri, 28 Jun 2024 16:38:35 +0800
Subject: [PATCH 09/13] =?UTF-8?q?fix=20:=20=E4=BF=AE=E6=94=B9=E7=94=A8?=
=?UTF-8?q?=E6=88=B7=E7=AE=A1=E7=90=86=E5=B1=95=E7=A4=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/system/user/index.vue | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue
index 2f540dc..03b4764 100644
--- a/src/views/system/user/index.vue
+++ b/src/views/system/user/index.vue
@@ -47,8 +47,8 @@ const searchConfig = ref([
}
},
{
- label: '用户账号',
- prop: 'userName',
+ label: '用户名称',
+ prop: 'nickName',
component: 'el-input',
props: {
placeholder: '请输入',
@@ -56,8 +56,8 @@ const searchConfig = ref([
}
},
{
- label: '用户昵称',
- prop: 'nickName',
+ label: '用户账号',
+ prop: 'userName',
component: 'el-input',
props: {
placeholder: '请输入',
@@ -91,12 +91,12 @@ const tableConfig = reactive({
columns: [
{
prop: 'userName',
- label: '用户名称',
+ label: '用户账号',
align: 'center',
},
{
prop: 'nickName',
- label: '用户昵称',
+ label: '用户名称',
align: 'center',
},
{
From 291708e71a5edc8bd7f4d8741f7602187bf7df62 Mon Sep 17 00:00:00 2001
From: odjbin <1042039504@qq.com>
Date: Fri, 28 Jun 2024 20:05:23 +0800
Subject: [PATCH 10/13] =?UTF-8?q?fix=20:=20=E4=BF=AE=E6=94=B9=E6=96=B0?=
=?UTF-8?q?=E5=A2=9E=E9=9C=80=E6=B1=82=E5=BE=81=E9=9B=86"=E4=B8=93?=
=?UTF-8?q?=E9=A1=B9=E8=B5=84=E9=87=91=E5=90=8D=E7=A7=B0"?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/project-demand/requirement/add.vue | 46 +++++++++++++-------
1 file changed, 30 insertions(+), 16 deletions(-)
diff --git a/src/views/project-demand/requirement/add.vue b/src/views/project-demand/requirement/add.vue
index 93c11e1..74fbbc6 100644
--- a/src/views/project-demand/requirement/add.vue
+++ b/src/views/project-demand/requirement/add.vue
@@ -38,10 +38,12 @@
{{ selectedCompanyList.length === 0 ? '请选择所属公司' : '更改' }}
-
{{ selectedCompanyList }}
+
{{ getName(selectedCompanyList) }}
{{ getName(selectedCompanyList) }}
{{ showExpendText }}
+ @click="handleExpend">
+ {{ showExpendText }}
+
@@ -54,7 +56,7 @@
-
+
重新提交
返回