Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
customer-admin
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
customer-admin
Commits
a89f15d6
提交
a89f15d6
authored
10月 26, 2021
作者:
matian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
style:样式调整
上级
b1a782b4
显示空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
26 行增加
和
20 行删除
+26
-20
style.scss
src/assets/theme/style.scss
+1
-1
AppUserSearch.vue
src/components/base/AppUserSearch.vue
+0
-1
Breadcrumb.vue
src/components/layout/Breadcrumb.vue
+2
-2
Header.vue
src/components/layout/Header.vue
+7
-2
CreateCoopProject.vue
src/modules/customer/components/CreateCoopProject.vue
+1
-1
AddCustomer.vue
src/modules/system/customergroup/components/AddCustomer.vue
+2
-2
AddCustomerGroup.vue
...ules/system/customergroup/components/AddCustomerGroup.vue
+5
-5
AddEmployees.vue
src/modules/system/customergroup/components/AddEmployees.vue
+8
-6
没有找到文件。
src/assets/theme/style.scss
浏览文件 @
a89f15d6
$--color-primary
:
#
3276fc
;
$--color-primary
:
#
ba013e
;
$--color-info
:
#3c4043
;
// dialog
...
...
src/components/base/AppUserSearch.vue
浏览文件 @
a89f15d6
...
...
@@ -8,7 +8,6 @@
:remote-method=
"fetchUserList"
:loading=
"searchUsersloading"
@
change=
"handleChange"
multiple
>
<el-option
:label=
"user.realname || user.nickname"
:value=
"user.id"
v-for=
"user in userList"
:key=
"user.id"
>
<span
style=
"float: left"
>
...
...
src/components/layout/Breadcrumb.vue
浏览文件 @
a89f15d6
...
...
@@ -23,7 +23,7 @@ export default {
padding
:
6px
0
16px
;
.el-breadcrumb
{
font-size
:
20px
;
font-size
:
20px
;
font-weight
:
400
;
line-height
:
24px
;
}
...
...
@@ -32,7 +32,7 @@ export default {
// color: #1a1b1c;
}
.router-link-exact-active
{
color
:
#
5b91fd
!
important
;
color
:
#
ba013e
!
important
;
font-size
:
24px
;
}
}
...
...
src/components/layout/Header.vue
浏览文件 @
a89f15d6
<
template
>
<header
class=
"app-header"
>
<div
class=
"logo"
>
<router-link
to=
"/"
><img
src=
"https://zws-imgs-pub.ezijing.com/pc/base/ezijing-logo-white.svg"
/></router-link>
<router-link
to=
"/"
><img
src=
"http://zws-imgs-pub.oss-cn-beijing.aliyuncs.com/static/ezijing/logo/ezijing-logo.png"
style=
"width: 100%; height: 100%"
/></router-link>
</div>
<div
class=
"app-header-right"
>
<el-dropdown>
...
...
@@ -44,7 +48,8 @@ export default {
align-items
:
center
;
justify-content
:
space-between
;
height
:
64px
;
background-color
:
#3276fc
;
background-color
:
#efefef
;
border-bottom
:
4px
solid
#ba013e
;
color
:
#fff
;
.logo
{
...
...
src/modules/customer/components/CreateCoopProject.vue
浏览文件 @
a89f15d6
...
...
@@ -18,7 +18,7 @@
</el-select>
</el-form-item>
<el-form-item
label=
"负责人"
prop=
"project_sso_ids"
>
<app-user-search
v-model=
"form.project_sso_ids"
></app-user-search>
<app-user-search
v-model=
"form.project_sso_ids"
:options=
"
{ multiple: true }"
>
</app-user-search>
</el-form-item>
<el-form-item
label=
"合作意向"
prop=
"cooperation_intention"
>
<el-select
v-model=
"form.cooperation_intention"
placeholder=
"请选择合作意向度"
size=
"small"
style=
"width: 100%"
>
...
...
src/modules/system/customergroup/components/AddCustomer.vue
浏览文件 @
a89f15d6
...
...
@@ -3,11 +3,11 @@
<app-card>
<app-list
v-bind=
"tableOptions"
ref=
"list"
@
selection-change=
"handleSelectionChange"
>
<template
v-slot:filter-userSearch=
"
{ params }">
<app-user-search
v-model=
"params.created_by"
></app-user-search>
<app-user-search
v-model=
"params.created_by"
:options=
"
{ multiple: true }"
>
</app-user-search>
</
template
>
<
template
#
footer
>
<el-button
type=
"primary"
@
click=
"submit"
>
提交
</el-button>
<el-button
@
click=
"$emit('update:visible', false)"
style=
"margin-left: 20px"
>
取消
</el-button>
<el-button
type=
"primary"
@
click=
"submit"
>
提交
</el-button>
</
template
>
</app-list>
</app-card>
...
...
src/modules/system/customergroup/components/AddCustomerGroup.vue
浏览文件 @
a89f15d6
<
template
>
<el-dialog
v-bind=
"$attrs"
v-on=
"$listeners"
width=
"
30%"
top=
"4
0vh"
:title=
"title"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"100px"
>
<el-form-item
label=
"客户组名称"
prop=
"name"
>
<el-dialog
v-bind=
"$attrs"
v-on=
"$listeners"
width=
"
20%"
top=
"3
0vh"
:title=
"title"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"100px"
label-position=
"top"
>
<el-form-item
label=
"客户组名称"
prop=
"name"
label-width=
"100px"
>
<el-input
v-model=
"form.name"
/>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
style=
"margin-left: 20px"
@
click=
"submit"
>
提交
</el-button>
<el-form-item
label-width=
"155px"
>
<el-button
@
click=
"$emit('update:visible', false)"
style=
"margin-left: 50px"
>
取消
</el-button>
<el-button
type=
"primary"
style=
"margin-left: 20px"
@
click=
"submit"
>
提交
</el-button>
</el-form-item>
</el-form>
</el-dialog>
...
...
src/modules/system/customergroup/components/AddEmployees.vue
浏览文件 @
a89f15d6
<
template
>
<el-dialog
v-bind=
"$attrs"
v-on=
"$listeners"
width=
"
30%
"
title=
"添加员工"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
>
<el-form-item
label=
"员工名称"
prop=
"id"
>
<el-dialog
v-bind=
"$attrs"
v-on=
"$listeners"
width=
"
20%"
top=
"30vh
"
title=
"添加员工"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-position=
"top"
>
<el-form-item
label=
"员工名称"
prop=
"id"
size=
"medium"
label-width=
"100px"
>
<el-select
type=
"text"
v-model=
"form.id"
...
...
@@ -10,8 +10,8 @@
remote
:remote-method=
"fetchEmployeeList"
:loading=
"loading"
size=
"80%"
multiple
style=
"width: 100%"
>
<el-option
v-for=
"item in employeeList"
...
...
@@ -27,8 +27,10 @@
</el-select>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
style=
"margin-left: 20px"
@
click=
"submit"
>
提交
</el-button>
<el-button
@
click=
"$emit('update:visible', false)"
style=
"margin-left: 50px"
>
取消
</el-button>
<el-row
style=
"float: right"
>
<el-button
@
click=
"$emit('update:visible', false)"
>
取消
</el-button>
<el-button
type=
"primary"
@
click=
"submit"
>
提交
</el-button>
</el-row>
</el-form-item>
</el-form>
</el-dialog>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论