Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
9
912project
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
CRS
912project
Commits
a09097bb
提交
a09097bb
authored
3月 05, 2020
作者:
CRS
浏览文件
操作
浏览文件
下载
差异文件
new
上级
5416b7b1
829d24c1
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
13 个修改的文件
包含
238 行增加
和
71 行删除
+238
-71
dynamicList.vue
src/components/XCalliance/dynamicList/dynamicList.vue
+1
-1
newProduct.vue
src/components/admittance/product/newProduct.vue
+151
-0
product.vue
src/components/admittance/product/product.vue
+0
-0
company.vue
src/components/basicInformation/company/company.vue
+43
-50
newCompany.vue
src/components/basicInformation/company/newCompany.vue
+10
-10
role.vue
src/components/basicInformation/role/role.vue
+1
-1
complaint.vue
src/components/complaint/complaint/complaint.vue
+1
-1
complaintManagement.vue
...nts/complaint/complaintManagement/complaintManagement.vue
+1
-1
home.vue
src/components/home/home.vue
+4
-4
dynamicList.vue
src/components/integration/dynamicList/dynamicList.vue
+1
-1
sidebar.vue
src/components/sidebar/sidebar.vue
+2
-1
index.js
src/router/index.js
+1
-1
server.js
src/services/server.js
+22
-0
没有找到文件。
src/components/XCalliance/dynamicList/dynamicList.vue
浏览文件 @
a09097bb
...
@@ -50,7 +50,7 @@
...
@@ -50,7 +50,7 @@
</el-table>
</el-table>
</div>
</div>
<!-- 分页 -->
<!-- 分页 -->
<div
class=
"block"
v-if=
"this.totleLength >= 10"
>
<div
class=
"block"
>
<el-pagination
<el-pagination
@
size-change=
"handleSizeChange"
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
@
current-change=
"handleCurrentChange"
...
...
src/components/admittance/product/newProduct.vue
0 → 100644
浏览文件 @
a09097bb
<
template
>
<div
class=
"newCompany"
>
<p
class=
"dialog-header"
>
<span>
新建产品
</span>
</p>
<div
class=
"company-content"
style=
"text-align: center; margin-top: 4px;"
>
<p
class=
"new"
>
<span
class=
"addVal"
>
<span>
产品名称:
</span>
<el-input
v-model=
"name"
size=
"medium"
placeholder=
"请输入"
></el-input>
</span>
<span
class=
"addVal"
style=
"width: 450px;"
>
<span>
产品分类:
</span>
<el-radio-group
v-model=
"type"
size=
"small"
style=
"padding-top: 11px;width: 100%;text-align: left"
>
<el-radio
label=
"1"
>
软件
</el-radio>
<el-radio
label=
"2"
>
硬件
</el-radio>
</el-radio-group>
</span>
<span
class=
"addVal"
style=
"margin-top: 4px"
>
<span>
产品类型:
</span>
<el-radio-group
v-model=
"form"
size=
"small"
style=
"padding-top: 11px; width: 100%;text-align: left"
>
<el-radio
label=
"1"
>
服务器
</el-radio>
<el-radio
label=
"2"
>
CPU
</el-radio>
<el-radio
label=
"3"
>
操作系统
</el-radio>
<el-radio
label=
"4"
>
数据库
</el-radio>
<el-radio
label=
"5"
>
中间件
</el-radio>
<el-radio
label=
"6"
>
其他
</el-radio>
</el-radio-group>
</span>
<span
class=
"addVal"
>
<span>
产品型号:
</span>
<el-input
v-model=
"model"
size=
"medium"
placeholder=
"请输入"
></el-input>
</span>
<span
class=
"addVal"
>
<span>
是否准入:
</span>
<el-radio-group
v-model=
"status"
size=
"small"
style=
"padding-top: 11px; width: 100%;text-align: left"
>
<el-radio
label=
"1"
>
是
</el-radio>
<el-radio
label=
"-1"
>
否
</el-radio>
</el-radio-group>
</span>
</p>
</div>
<p
class=
"line"
></p>
<p
class=
"buttonClick"
>
<span
class=
"buttonCancl"
@
click=
"cancel"
>
取消
</span>
<span
class=
"buttonSave"
@
click=
"save"
>
确定
</span>
</p>
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
type
:
''
,
name
:
''
,
status
:
''
,
model
:
''
,
number
:
''
,
form
:
''
}
},
created
()
{
},
mounted
(){
},
methods
:
{
cancel
()
{
this
.
$emit
(
'on-cancel'
)
},
save
()
{
console
.
log
(
1111
)
if
(
!
this
.
name
)
{
this
.
$message
.
error
(
'产品名称不可为空!'
);
return
;
};
let
data
=
{
form
:
parseInt
(
this
.
form
),
model
:
this
.
model
,
name
:
this
.
name
,
producer
:
''
,
status
:
parseInt
(
this
.
status
),
techId
:
''
,
type
:
parseInt
(
this
.
type
)
};
this
.
$server
.
postProduceAdd
(
data
).
then
(
res
=>
{
if
(
res
.
data
.
code
===
200
)
{
this
.
$message
.
success
(
'产品新建成功!'
);
this
.
$emit
(
'on-cancel'
,
true
)
}
else
{
this
.
$message
.
error
(
'产品新建失败!'
);
}
}).
catch
(
err
=>
{
this
.
$message
.
error
(
'产品新建失败!'
);
})
}
},
components
:
{
},
watch
:
{
}
}
</
script
>
<
style
scoped
>
.newCompany
.new
{
display
:
inline-block
;
}
.newCompany
.new
{
right
:
220px
;
}
.newCompany
.addVal
{
width
:
390px
;
display
:
flex
;
font-size
:
18px
;
color
:
#666
;
text-align
:
center
;
margin-top
:
15px
;
}
.newCompany
.addVal
>
span
{
width
:
140px
;
display
:
inline-block
;
line-height
:
34px
;
}
.newCompany
>>>
.el-input__inner
{
border
:
1px
solid
rgba
(
8
,
104
,
157
,
.3
);
border-radius
:
2px
;
font-size
:
18px
;
color
:
#999
;
height
:
34px
;
line-height
:
34px
;
width
:
180px
;
}
.newCompany
.line
{
margin
:
25px
30px
0
30px
;
height
:
1px
;
background
:
rgba
(
72
,
119
,
230
,
0.2
);
}
.newCompany
.buttonClick
{
display
:
flex
;
justify-content
:
space-evenly
;
margin-top
:
13px
;
}
.newCompany
.company-content
>>>
.el-radio
{
margin-right
:
22px
;
margin-bottom
:
11px
;
width
:
49px
;
}
.newCompany
.company-content
>>>
.el-input__inner
{
width
:
290px
;
}
</
style
>
src/components/admittance/product/product.vue
浏览文件 @
a09097bb
差异被折叠。
点击展开。
src/components/basicInformation/company/company.vue
浏览文件 @
a09097bb
<
template
>
<
template
>
<div
class=
"
role
"
>
<div
class=
"
company
"
>
<el-row>
<el-row>
<el-col
:span=
"24"
>
<el-col
:span=
"24"
>
<div
class=
"content"
>
<div
class=
"content"
>
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
</el-option>
</el-option>
</el-select>
</el-select>
</span>
</span>
<span
class=
"button"
@
click=
"search"
>
搜索
</span>
<span
class=
"button
searchBtn
"
@
click=
"search"
>
搜索
</span>
<span
class=
"button add"
@
click=
"addCompany"
>
新建单位
</span>
<span
class=
"button add"
@
click=
"addCompany"
>
新建单位
</span>
<span
class=
"button import"
>
导入单位
<span
class=
"button import"
>
导入单位
<el-upload
<el-upload
...
@@ -136,16 +136,6 @@ export default {
...
@@ -136,16 +136,6 @@ export default {
newCompany
newCompany
},
},
mounted
()
{
mounted
()
{
let
val
=
this
.
$store
.
getters
.
getSidebar
;
if
(
val
[
val
.
length
-
1
].
path
!==
'company'
)
{
val
.
push
(
{
name
:
'单位管理'
,
path
:
'company'
}
)
this
.
$store
.
commit
(
'changeSidebar'
,
val
);
}
this
.
search
(
'page'
)
this
.
search
(
'page'
)
},
},
methods
:
{
methods
:
{
...
@@ -161,10 +151,7 @@ export default {
...
@@ -161,10 +151,7 @@ export default {
type
:
0
type
:
0
};
};
if
(
val
!==
'page'
)
{
// 点击搜索按钮,不是点击分页跳转
if
(
val
!==
'page'
)
{
// 点击搜索按钮,不是点击分页跳转
if
(
!
this
.
searchName
||
!
this
.
classVal
)
{
this
.
currentPage
=
1
;
this
.
$message
.
error
(
'单位名称和单位类别不可为空!'
);
return
;
}
this
.
companyClass
.
map
(
item
=>
{
this
.
companyClass
.
map
(
item
=>
{
let
type
=
this
.
typeVal
[
item
.
type
];
let
type
=
this
.
typeVal
[
item
.
type
];
if
(
this
.
classVal
===
type
)
{
if
(
this
.
classVal
===
type
)
{
...
@@ -205,7 +192,6 @@ export default {
...
@@ -205,7 +192,6 @@ export default {
getName
(
val
)
{
getName
(
val
)
{
if
(
val
!==
''
)
{
if
(
val
!==
''
)
{
this
.
companyName
=
val
;
this
.
companyName
=
val
;
this
.
components
=
'authority'
;
}
}
},
},
// 单位准入状态转换
// 单位准入状态转换
...
@@ -243,51 +229,51 @@ export default {
...
@@ -243,51 +229,51 @@ export default {
}
}
</
script
>
</
script
>
<
style
scoped
>
<
style
scoped
>
.
role
{
.
company
{
background
:
#ebf0f8
;
background
:
#ebf0f8
;
width
:
100%
;
width
:
100%
;
}
}
.
role
.content
{
.
company
.content
{
margin
:
40px
;
margin
:
40px
;
height
:
841px
;
height
:
841px
;
background
:
#fff
;
background
:
#fff
;
overflow
:
hidden
;
overflow
:
hidden
;
}
}
.
role
.content
.title
{
.
company
.content
.title
{
padding
:
30px
0
0
60px
;
padding
:
30px
0
0
60px
;
font-size
:
20px
;
font-size
:
20px
;
color
:
#233b6e
;
color
:
#233b6e
;
}
}
.
role
.content
.search
{
.
company
.content
.search
{
position
:
relative
;
position
:
relative
;
margin-top
:
36px
;
margin-top
:
36px
;
padding
:
0px
70px
0px
70px
;
padding
:
0px
70px
0px
70px
;
display
:
flex
;
display
:
flex
;
}
}
.
role
.content
.searchVal
{
.
company
.content
.searchVal
{
width
:
280px
;
width
:
280px
;
display
:
flex
;
display
:
flex
;
font-size
:
18px
;
font-size
:
18px
;
color
:
#4663a6
;
color
:
#4663a6
;
}
}
.
role
.content
.searchVal
>
span
{
.
company
.content
.searchVal
>
span
{
width
:
140px
;
width
:
140px
;
display
:
inline-block
;
display
:
inline-block
;
line-height
:
34px
;
line-height
:
34px
;
}
}
.
role
.content
.change
{
.
company
.content
.change
{
color
:
#4877e6
;
color
:
#4877e6
;
cursor
:
pointer
;
cursor
:
pointer
;
}
}
.
role
.content
.change
>
img
{
.
company
.content
.change
>
img
{
margin-right
:
3px
;
margin-right
:
3px
;
}
}
.
role
.content
.common-table
{
.
company
.content
.common-table
{
box-shadow
:
4px
4px
5px
rgba
(
72
,
119
,
230
,
0.1
);
box-shadow
:
4px
4px
5px
rgba
(
72
,
119
,
230
,
0.1
);
border
:
.5px
solid
transparent
;
border
:
.5px
solid
transparent
;
border-radius
:
10px
;
border-radius
:
10px
;
}
}
.
role
>>>
.el-input__inner
{
.
company
>>>
.el-input__inner
{
border
:
1px
solid
rgba
(
8
,
104
,
157
,
.3
);
border
:
1px
solid
rgba
(
8
,
104
,
157
,
.3
);
border-radius
:
2px
;
border-radius
:
2px
;
font-size
:
18px
;
font-size
:
18px
;
...
@@ -296,7 +282,7 @@ export default {
...
@@ -296,7 +282,7 @@ export default {
line-height
:
34px
;
line-height
:
34px
;
width
:
180px
;
width
:
180px
;
}
}
.
role
.content
.button
{
.
company
.content
.button
{
display
:
inline-block
;
display
:
inline-block
;
width
:
100px
;
width
:
100px
;
height
:
34px
;
height
:
34px
;
...
@@ -304,86 +290,93 @@ export default {
...
@@ -304,86 +290,93 @@ export default {
text-align
:
center
;
text-align
:
center
;
background
:
#4877e6
;
background
:
#4877e6
;
cursor
:
pointer
;
cursor
:
pointer
;
margin-left
:
100px
;
/*margin-left: 100px;*/
border-radius
:
2px
;
border-radius
:
2px
;
color
:
#fff
;
color
:
#fff
;
font-size
:
18px
;
font-size
:
18px
;
}
}
.
role
.content
.button
:hover
{
.
company
.content
.button
:hover
{
background
:
rgba
(
72
,
119
,
230
,
.6
);
background
:
rgba
(
72
,
119
,
230
,
.6
);
}
}
.
role
.content
.new
{
.
company
.content
.new
{
position
:
absolute
;
position
:
absolute
;
right
:
70px
;
right
:
70px
;
}
}
.company
.import
{
right
:
70px
;
position
:
absolute
;
}
.company
.searchBtn
{
margin-left
:
30px
;
}
/*表格样式*/
/*表格样式*/
.
role
.content
.common-table
{
.
company
.content
.common-table
{
margin
:
24px
70px
0
70px
;
margin
:
24px
70px
0
70px
;
}
}
.
role
.content
.common-table
>>>
.el-table
th
>
.cell
{
.
company
.content
.common-table
>>>
.el-table
th
>
.cell
{
font-size
:
18px
;
font-size
:
18px
;
color
:
#333
;
color
:
#333
;
font-weight
:
normal
;
font-weight
:
normal
;
}
}
.
role
.content
.common-table
>>>
.el-table
th
.is-leaf
{
.
company
.content
.common-table
>>>
.el-table
th
.is-leaf
{
height
:
70px
;
height
:
70px
;
}
}
.
role
.content
.common-table
>>>
.el-table
tr
{
.
company
.content
.common-table
>>>
.el-table
tr
{
font-size
:
18px
;
font-size
:
18px
;
}
}
.
role
.content
.common-table
>>>
.el-table
{
.
company
.content
.common-table
>>>
.el-table
{
color
:
#233b6e
;
color
:
#233b6e
;
}
}
.
role
.content
.common-table
>>>
.el-table--striped
.el-table__body
tr
.el-table__row--striped.el-table__row--striped.el-table__row--striped
td
{
.
company
.content
.common-table
>>>
.el-table--striped
.el-table__body
tr
.el-table__row--striped.el-table__row--striped.el-table__row--striped
td
{
background-color
:
#fff
;
background-color
:
#fff
;
}
}
.
role
.content
.common-table
>>>
.el-table--enable-row-hover
.el-table__body
tr
:hover
>
td
{
.
company
.content
.common-table
>>>
.el-table--enable-row-hover
.el-table__body
tr
:hover
>
td
{
background-color
:
#f5f8fd
;
background-color
:
#f5f8fd
;
}
}
.
role
.content
.common-table
>>>
.el-table
th
.is-leaf
,
.el-table
td
{
.
company
.content
.common-table
>>>
.el-table
th
.is-leaf
,
.el-table
td
{
border-bottom
:
1px
solid
#d5e3ff
;
border-bottom
:
1px
solid
#d5e3ff
;
}
}
.
role
.content
.common-table
>>>
.el-table__body
tr
,
.el-table__body
td
{
.
company
.content
.common-table
>>>
.el-table__body
tr
,
.el-table__body
td
{
padding
:
0
;
padding
:
0
;
height
:
60px
;
height
:
60px
;
background
:
#f5f8fd
;
background
:
#f5f8fd
;
}
}
.
role
.content
.block
{
.
company
.content
.block
{
text-align
:
right
;
text-align
:
right
;
padding
:
30px
70px
0
0
;
padding
:
30px
70px
0
0
;
}
}
.
role
.content
>>>
.el-pagination.is-background
.el-pager
li
{
.
company
.content
>>>
.el-pagination.is-background
.el-pager
li
{
background-image
:
linear-gradient
(
to
bottom
,
#c5d5f7
,
#7a95e6
);
background-image
:
linear-gradient
(
to
bottom
,
#c5d5f7
,
#7a95e6
);
color
:
#fff
;
color
:
#fff
;
}
}
.
role
.content
>>>
.el-pagination.is-background
.el-pager
li
:not
(
.disabled
)
.active
{
.
company
.content
>>>
.el-pagination.is-background
.el-pager
li
:not
(
.disabled
)
.active
{
background-image
:
linear-gradient
(
to
bottom
,
#7a9eeb
,
#274acf
);
background-image
:
linear-gradient
(
to
bottom
,
#7a9eeb
,
#274acf
);
color
:
#fff
;
color
:
#fff
;
}
}
.
role
.content
>>>
.el-table
td
{
.
company
.content
>>>
.el-table
td
{
border-bottom
:
1px
solid
#d5e3ff
;
border-bottom
:
1px
solid
#d5e3ff
;
}
}
.
role
.content
>>>
.btn-prev
,
.role
.content
>>>
.btn-next
{
.
company
.content
>>>
.btn-prev
,
.role
.content
>>>
.btn-next
{
background
:
#c5d5f7
;
background
:
#c5d5f7
;
background-image
:
linear-gradient
(
to
bottom
,
#c5d5f7
,
#7a95e6
);
background-image
:
linear-gradient
(
to
bottom
,
#c5d5f7
,
#7a95e6
);
color
:
#fff
;
color
:
#fff
;
}
}
.
role
.content
>>>
.btn-prev
:disabled
,
.dynamicList
.content
>>>
.btn-next
:disabled
{
.
company
.content
>>>
.btn-prev
:disabled
,
.dynamicList
.content
>>>
.btn-next
:disabled
{
color
:
#C0C4CC
;
color
:
#C0C4CC
;
}
}
.
role
.content
>>>
.el-table__body
tr
.current-row
>
td
{
.
company
.content
>>>
.el-table__body
tr
.current-row
>
td
{
background
:
#f5f8fd
;
background
:
#f5f8fd
;
}
}
.
role
.content
>>>
.el-pagination.is-background
.el-pager
li
{
.
company
.content
>>>
.el-pagination.is-background
.el-pager
li
{
background-image
:
linear-gradient
(
to
bottom
,
#c5d5f7
,
#7a95e6
);
background-image
:
linear-gradient
(
to
bottom
,
#c5d5f7
,
#7a95e6
);
color
:
#fff
;
color
:
#fff
;
}
}
.
role
.content
>>>
.el-pagination.is-background
.el-pager
li
:not
(
.disabled
)
.active
{
.
company
.content
>>>
.el-pagination.is-background
.el-pager
li
:not
(
.disabled
)
.active
{
background-image
:
linear-gradient
(
to
bottom
,
#7a9eeb
,
#274acf
);
background-image
:
linear-gradient
(
to
bottom
,
#7a9eeb
,
#274acf
);
color
:
#fff
;
color
:
#fff
;
}
}
.
role
.content
.common-table
{
.
company
.content
.common-table
{
box-shadow
:
rgba
(
72
,
119
,
230
,
0.1
)
4px
4px
5px
;
box-shadow
:
rgba
(
72
,
119
,
230
,
0.1
)
4px
4px
5px
;
border-width
:
0.5px
;
border-width
:
0.5px
;
border-style
:
solid
;
border-style
:
solid
;
...
...
src/components/basicInformation/company/newCompany.vue
浏览文件 @
a09097bb
<
template
>
<
template
>
<div
class=
"new
role
"
>
<div
class=
"new
Company
"
>
<p
class=
"dialog-header"
>
<p
class=
"dialog-header"
>
<span>
新建单位
</span>
<span>
新建单位
</span>
</p>
</p>
...
@@ -104,13 +104,13 @@ export default {
...
@@ -104,13 +104,13 @@ export default {
}
}
</
script
>
</
script
>
<
style
scoped
>
<
style
scoped
>
.new
role
.new
{
.new
Company
.new
{
display
:
inline-block
;
display
:
inline-block
;
}
}
.new
{
.new
Company
.new
{
right
:
220px
;
right
:
220px
;
}
}
.new
role
.addVal
{
.new
Company
.addVal
{
width
:
390px
;
width
:
390px
;
display
:
flex
;
display
:
flex
;
font-size
:
18px
;
font-size
:
18px
;
...
@@ -118,12 +118,12 @@ export default {
...
@@ -118,12 +118,12 @@ export default {
text-align
:
center
;
text-align
:
center
;
margin-top
:
15px
;
margin-top
:
15px
;
}
}
.new
role
.addVal
>
span
{
.new
Company
.addVal
>
span
{
width
:
140px
;
width
:
140px
;
display
:
inline-block
;
display
:
inline-block
;
line-height
:
34px
;
line-height
:
34px
;
}
}
.new
role
>>>
.el-input__inner
{
.new
Company
>>>
.el-input__inner
{
border
:
1px
solid
rgba
(
8
,
104
,
157
,
.3
);
border
:
1px
solid
rgba
(
8
,
104
,
157
,
.3
);
border-radius
:
2px
;
border-radius
:
2px
;
font-size
:
18px
;
font-size
:
18px
;
...
@@ -132,22 +132,22 @@ export default {
...
@@ -132,22 +132,22 @@ export default {
line-height
:
34px
;
line-height
:
34px
;
width
:
180px
;
width
:
180px
;
}
}
.new
role
.line
{
.new
Company
.line
{
margin
:
25px
30px
0
30px
;
margin
:
25px
30px
0
30px
;
height
:
1px
;
height
:
1px
;
background
:
rgba
(
72
,
119
,
230
,
0.2
);
background
:
rgba
(
72
,
119
,
230
,
0.2
);
}
}
.new
role
.buttonClick
{
.new
Company
.buttonClick
{
display
:
flex
;
display
:
flex
;
justify-content
:
space-evenly
;
justify-content
:
space-evenly
;
margin-top
:
13px
;
margin-top
:
13px
;
}
}
.new
role
.company-content
>>>
.el-radio
{
.new
Company
.company-content
>>>
.el-radio
{
margin-right
:
22px
;
margin-right
:
22px
;
margin-bottom
:
11px
;
margin-bottom
:
11px
;
width
:
49px
;
width
:
49px
;
}
}
.new
role
.company-content
>>>
.el-input__inner
{
.new
Company
.company-content
>>>
.el-input__inner
{
width
:
290px
;
width
:
290px
;
}
}
</
style
>
</
style
>
src/components/basicInformation/role/role.vue
浏览文件 @
a09097bb
...
@@ -43,7 +43,7 @@
...
@@ -43,7 +43,7 @@
</el-table>
</el-table>
</div>
</div>
<!-- 分页 -->
<!-- 分页 -->
<div
class=
"block"
v-if=
"this.totleLength >= 10"
>
<div
class=
"block"
>
<el-pagination
<el-pagination
@
size-change=
"handleSizeChange"
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
@
current-change=
"handleCurrentChange"
...
...
src/components/complaint/complaint/complaint.vue
浏览文件 @
a09097bb
...
@@ -62,7 +62,7 @@
...
@@ -62,7 +62,7 @@
</el-table>
</el-table>
</div>
</div>
<!-- 分页 -->
<!-- 分页 -->
<div
class=
"block"
v-if=
"this.totleLength >= 10"
>
<div
class=
"block"
>
<el-pagination
<el-pagination
@
size-change=
"handleSizeChange"
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
@
current-change=
"handleCurrentChange"
...
...
src/components/complaint/complaintManagement/complaintManagement.vue
浏览文件 @
a09097bb
...
@@ -62,7 +62,7 @@
...
@@ -62,7 +62,7 @@
</el-table>
</el-table>
</div>
</div>
<!-- 分页 -->
<!-- 分页 -->
<div
class=
"block"
v-if=
"this.totleLength >= 10"
>
<div
class=
"block"
>
<el-pagination
<el-pagination
@
size-change=
"handleSizeChange"
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
@
current-change=
"handleCurrentChange"
...
...
src/components/home/home.vue
浏览文件 @
a09097bb
...
@@ -25,19 +25,19 @@
...
@@ -25,19 +25,19 @@
<img
src=
"./img/SJ.png"
>
<img
src=
"./img/SJ.png"
>
<span>
市级名录
</span>
<span>
市级名录
</span>
</p>
</p>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type === 1"
>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type === 1"
@
click=
"jump('company',3,'基础资料管理')"
>
<img
src=
"./img/GJ.png"
>
<img
src=
"./img/GJ.png"
>
<span>
基础资料管理
</span>
<span>
基础资料管理
</span>
</p>
</p>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type === 1"
>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type === 1"
@
click=
"jump('product',4,'市级准入管理')"
>
<img
src=
"./img/SJ.png"
>
<img
src=
"./img/SJ.png"
>
<span>
市级准入管理
</span>
<span>
市级准入管理
</span>
</p>
</p>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type !== 1"
>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type !== 1"
@
click=
"jump('complaint',5,'意见建议')"
>
<img
src=
"./img/YJ.png"
>
<img
src=
"./img/YJ.png"
>
<span>
意见建议
</span>
<span>
意见建议
</span>
</p>
</p>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type === 1"
>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type === 1"
@
click=
"jump('complaintManagement',5,'投诉管理')"
>
<img
src=
"./img/YJ.png"
>
<img
src=
"./img/YJ.png"
>
<span>
投诉管理
</span>
<span>
投诉管理
</span>
</p>
</p>
...
...
src/components/integration/dynamicList/dynamicList.vue
浏览文件 @
a09097bb
...
@@ -50,7 +50,7 @@
...
@@ -50,7 +50,7 @@
</el-table>
</el-table>
</div>
</div>
<!-- 分页 -->
<!-- 分页 -->
<div
class=
"block"
v-if=
"this.totleLength >= 10"
>
<div
class=
"block"
>
<el-pagination
<el-pagination
@
size-change=
"handleSizeChange"
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
@
current-change=
"handleCurrentChange"
...
...
src/components/sidebar/sidebar.vue
浏览文件 @
a09097bb
...
@@ -171,7 +171,7 @@ export default {
...
@@ -171,7 +171,7 @@ export default {
]
]
},
},
{
{
name
:
'市准入管理'
,
name
:
'市
级
准入管理'
,
menuList
:
[
menuList
:
[
{
{
name
:
'单位管理'
,
name
:
'单位管理'
,
...
@@ -277,6 +277,7 @@ export default {
...
@@ -277,6 +277,7 @@ export default {
this
.
$store
.
commit
(
'changeSidebar'
,
val
);
this
.
$store
.
commit
(
'changeSidebar'
,
val
);
}
}
}
}
$
(
'.listVal>span'
).
removeClass
(
'menuClick'
)
this
.
$router
.
push
({
name
:
name
});
this
.
$router
.
push
({
name
:
name
});
}
}
},
},
...
...
src/router/index.js
浏览文件 @
a09097bb
...
@@ -91,7 +91,7 @@ export default new Router({
...
@@ -91,7 +91,7 @@ export default new Router({
name
:
'companyDetails'
,
name
:
'companyDetails'
,
component
:
resolve
=>
require
([
'../components/basicInformation/company/companyDetails.vue'
],
resolve
)
component
:
resolve
=>
require
([
'../components/basicInformation/company/companyDetails.vue'
],
resolve
)
},
},
//
基础资料管理-单位信息
//
市准入管理-产品管理
{
{
path
:
'/product'
,
path
:
'/product'
,
name
:
'product'
,
name
:
'product'
,
...
...
src/services/server.js
浏览文件 @
a09097bb
...
@@ -114,5 +114,27 @@ const server = {
...
@@ -114,5 +114,27 @@ const server = {
method
:
'get'
method
:
'get'
});
});
},
},
getTechFindAll
()
{
// 获取所有技术路线列表
return
axios
(
'/tech/findAll'
,
{
method
:
'get'
});
},
postProduceSearchAccess
(
data
)
{
// 准入产品分页查询
return
axios
(
'/produce/searchAccesss'
,
{
method
:
'post'
,
data
:
data
});
},
getProduceFindAccess
()
{
// 获取所有准入产品列表
return
axios
(
'/produce/findAccess'
,
{
method
:
'get'
});
},
postProduceAdd
(
data
)
{
// 新建产品
return
axios
(
'/produce/add'
,
{
method
:
'post'
,
data
:
data
});
},
}
}
export
default
server
;
export
default
server
;
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论