Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
9
912project
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
CRS
912project
Commits
774ad74e
提交
774ad74e
authored
3月 05, 2020
作者:
CRS
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
new
上级
efae5d02
隐藏空白字符变更
内嵌
并排
正在显示
13 个修改的文件
包含
233 行增加
和
132 行删除
+233
-132
addTechnical.vue
src/components/admittance/technical/addTechnical.vue
+113
-28
click.png
src/components/admittance/technical/img/click.png
+0
-0
clickN.png
src/components/admittance/technical/img/clickN.png
+0
-0
addComplaint.vue
src/components/complaint/complaint/addComplaint.vue
+1
-1
complaint.vue
src/components/complaint/complaint/complaint.vue
+15
-5
complaintDetail.vue
src/components/complaint/complaint/complaintDetail.vue
+10
-9
addComplaintManagement.vue
.../complaint/complaintManagement/addComplaintManagement.vue
+1
-1
complaintManagement.vue
...nts/complaint/complaintManagement/complaintManagement.vue
+15
-8
complaintManagementDetail.vue
...mplaint/complaintManagement/complaintManagementDetail.vue
+22
-14
header.css
src/components/header/header.css
+1
-0
header.vue
src/components/header/header.vue
+2
-2
home.vue
src/components/home/home.vue
+24
-24
sidebar.vue
src/components/sidebar/sidebar.vue
+29
-40
没有找到文件。
src/components/admittance/technical/addTechnical.vue
浏览文件 @
774ad74e
...
@@ -8,26 +8,52 @@
...
@@ -8,26 +8,52 @@
<span>
路线名称:
</span>
<span>
路线名称:
</span>
<el-input
v-model=
"addVal"
size=
"medium"
placeholder=
"请输入"
></el-input>
<el-input
v-model=
"addVal"
size=
"medium"
placeholder=
"请输入"
></el-input>
</p>
</p>
<
p
class=
"select"
>
<
div
class=
"select"
>
<span>
产品组合:
</span>
<span>
产品组合:
</span>
<el-select
v-model=
"product1"
placeholder=
"请选择"
clearable
>
<div>
<el-option
<el-scrollbar
style=
"height: 100%"
>
v-for=
"item in product1List"
<p
style=
"margin-bottom: 10px;"
>
:key=
"item.value"
<el-select
v-model=
"product1"
placeholder=
"请选择"
clearable
>
:label=
"item.label"
<el-option
:value=
"item.value"
>
v-for=
"item in product1List"
</el-option>
:key=
"item.value"
</el-select>
:label=
"item.label"
<el-select
v-model=
"product2"
placeholder=
"请选择"
clearable
style=
"margin-left: 20px;"
>
:value=
"item.value"
>
<el-option
</el-option>
v-for=
"item in product2List"
</el-select>
:key=
"item.id"
<el-select
v-model=
"product2"
placeholder=
"请选择"
clearable
style=
"margin-left: 20px;"
>
:label=
"item.name"
<el-option
:value=
"item.id"
>
v-for=
"item in product2List"
</el-option>
:key=
"item.id"
</el-select>
:label=
"item.name"
<img
src=
"./img/delN.png"
class=
"del"
>
:value=
"item.id"
>
</p>
</el-option>
</el-select>
<img
src=
"./img/delN.png"
class=
"del"
>
</p>
<p
style=
"margin-bottom: 10px;"
v-for=
"(item,index) of allProduct"
v-if=
"allProduct.length !== 0"
>
<el-select
v-model=
"item.product1"
placeholder=
"请选择"
clearable
@
change=
"changeVal(item.product1,index)"
>
<el-option
v-for=
"item in product1List"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
<el-select
v-model=
"item.product2"
placeholder=
"请选择"
clearable
style=
"margin-left: 20px;"
>
<el-option
v-for=
"item in product2List"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
>
</el-option>
</el-select>
<img
src=
"./img/delN.png"
class=
"del"
@
click=
"dele(index)"
>
</p>
<p
class=
"addProduct"
@
click=
"addProduct"
><img
src=
"./img/clickN.png"
><span>
新增产品组合
</span></p>
</el-scrollbar>
</div>
</div>
</div>
</div>
<p
class=
"line"
></p>
<p
class=
"line"
></p>
<p
class=
"buttonClick"
>
<p
class=
"buttonClick"
>
...
@@ -67,7 +93,8 @@ export default {
...
@@ -67,7 +93,8 @@ export default {
label
:
'其他'
label
:
'其他'
}
}
],
],
product2List
:
[]
product2List
:
[],
allProduct
:
[]
}
}
},
},
created
()
{
created
()
{
...
@@ -77,23 +104,57 @@ export default {
...
@@ -77,23 +104,57 @@ export default {
methods
:
{
methods
:
{
// 保存
// 保存
save
()
{
save
()
{
let
val
=
{
'name'
:
this
.
addVal
,
'product1'
:
this
.
product1
,
'product2'
:
this
.
product2
,
'allProduct'
:
this
.
allProduct
}
console
.
log
(
val
)
},
},
// 取消
// 取消
cancel
()
{
cancel
()
{
this
.
$emit
(
'on-cancel'
)
this
.
$emit
(
'on-cancel'
)
},
// 新增产品组合
addProduct
()
{
let
val
=
{
'product1'
:
''
,
'product2'
:
''
}
this
.
allProduct
.
push
(
val
);
console
.
log
(
this
.
allProduct
)
},
// 选择产品组合
changeVal
(
val
,
index
)
{
if
(
val
!==
''
)
{
this
.
$server
.
getFindByForm
(
val
).
then
((
res
)
=>
{
// 数据请求
if
(
res
.
data
.
code
===
200
)
{
this
.
product2List
=
res
.
data
.
data
;
}
})
}
else
{
this
.
allProduct
[
index
].
product2
=
''
;
}
},
// 删除产品组合
dele
(
index
)
{
this
.
allProduct
.
splice
(
index
,
1
)
}
}
},
},
components
:
{
components
:
{
},
},
watch
:
{
watch
:
{
'product1'
:
function
(
val
)
{
'product1'
:
function
(
val
)
{
console
.
log
(
val
);
this
.
product2
=
''
;
this
.
$server
.
getFindByForm
(
val
).
then
((
res
)
=>
{
// 数据请求
if
(
val
!==
''
)
{
console
.
log
(
res
.
data
.
data
)
this
.
$server
.
getFindByForm
(
val
).
then
((
res
)
=>
{
// 数据请求
if
(
res
.
data
.
code
===
200
)
{
if
(
res
.
data
.
code
===
200
)
{
this
.
product2List
=
res
.
data
.
data
;
this
.
product2List
=
res
.
data
.
data
;
}
}
})
})
}
}
}
}
}
}
}
...
@@ -112,7 +173,7 @@ export default {
...
@@ -112,7 +173,7 @@ export default {
display
:
inline
;
display
:
inline
;
}
}
.addTechnical
.line
{
.addTechnical
.line
{
margin
:
15
0px
30px
0
30px
;
margin
:
2
0px
30px
0
30px
;
height
:
1px
;
height
:
1px
;
background
:
rgba
(
72
,
119
,
230
,
0.2
);
background
:
rgba
(
72
,
119
,
230
,
0.2
);
}
}
...
@@ -131,4 +192,28 @@ export default {
...
@@ -131,4 +192,28 @@ export default {
.addTechnical
.select
img
{
.addTechnical
.select
img
{
margin-left
:
10px
;
margin-left
:
10px
;
}
}
.addTechnical
.select
>
div
{
display
:
inline-block
;
height
:
200px
;
}
.addTechnical
.select
>
span
{
display
:
inline-block
;
height
:
34px
;
line-height
:
34px
;
vertical-align
:
top
;
}
.addTechnical
>>>
.el-scrollbar__wrap
{
overflow-x
:
hidden
;
}
.addTechnical
.addProduct
{
color
:
#98B2F0
;
cursor
:
pointer
;
}
.addTechnical
.addProduct
:hover
{
color
:
#4C7AE6
;
cursor
:
pointer
;
}
.addTechnical
.addProduct
:hover
>
img
{
content
:
url("./img/click.png")
;
}
</
style
>
</
style
>
src/components/admittance/technical/img/click.png
0 → 100644
浏览文件 @
774ad74e
290 Bytes
src/components/admittance/technical/img/clickN.png
0 → 100644
浏览文件 @
774ad74e
295 Bytes
src/components/complaint/complaint/addComplaint.vue
浏览文件 @
774ad74e
...
@@ -81,7 +81,7 @@ export default {
...
@@ -81,7 +81,7 @@ export default {
},
},
{
{
id
:
3
,
id
:
3
,
name
:
'监理
方
'
name
:
'监理
商
'
},
},
{
{
id
:
4
,
id
:
4
,
...
...
src/components/complaint/complaint/complaint.vue
浏览文件 @
774ad74e
...
@@ -50,12 +50,12 @@
...
@@ -50,12 +50,12 @@
align=
"center"
>
align=
"center"
>
</el-table-column>
</el-table-column>
<el-table-column
<el-table-column
prop=
"time"
prop=
"time
1
"
label=
"投诉时间"
label=
"投诉时间"
align=
"center"
>
align=
"center"
>
</el-table-column>
</el-table-column>
<el-table-column
<el-table-column
prop=
"replyTime"
prop=
"replyTime
1
"
label=
"最近回复时间"
label=
"最近回复时间"
align=
"center"
>
align=
"center"
>
</el-table-column>
</el-table-column>
...
@@ -120,10 +120,10 @@ export default {
...
@@ -120,10 +120,10 @@ export default {
this
.
allData
=
res
.
data
.
data
.
rows
;
this
.
allData
=
res
.
data
.
data
.
rows
;
this
.
totleLength
=
res
.
data
.
data
.
total
;
this
.
totleLength
=
res
.
data
.
data
.
total
;
for
(
let
item
of
this
.
allData
)
{
for
(
let
item
of
this
.
allData
)
{
item
.
time
=
this
.
time
(
item
.
time
);
item
.
time
1
=
this
.
time1
(
item
.
time
);
item
.
replyTime
=
this
.
time
(
item
.
replyTime
);
item
.
replyTime
1
=
this
.
time1
(
item
.
replyTime
);
item
.
type
=
item
.
type
===
1
?
'服务质量'
:
item
.
type
===
2
?
'服务态度'
:
item
.
type
===
3
?
'响应速度'
:
'其他'
;
item
.
type
=
item
.
type
===
1
?
'服务质量'
:
item
.
type
===
2
?
'服务态度'
:
item
.
type
===
3
?
'响应速度'
:
'其他'
;
item
.
target
=
item
.
target
===
1
?
'集成商'
:
item
.
target
===
2
?
'监理
方
'
:
item
.
target
===
3
?
'开发商'
:
item
.
target
===
4
?
'硬件产品'
:
item
.
target
===
5
?
'软件产品'
:
'其他'
;
item
.
target
=
item
.
target
===
1
?
'集成商'
:
item
.
target
===
2
?
'监理
商
'
:
item
.
target
===
3
?
'开发商'
:
item
.
target
===
4
?
'硬件产品'
:
item
.
target
===
5
?
'软件产品'
:
'其他'
;
}
}
}
}
})
})
...
@@ -152,6 +152,16 @@ export default {
...
@@ -152,6 +152,16 @@ export default {
},
},
// 时间换算
// 时间换算
time
(
value
)
{
time
(
value
)
{
let
date
=
new
Date
(
value
);
// 时间戳为10位需*1000,时间戳为13位的话不需乘1000
let
Y
=
date
.
getFullYear
()
+
'-'
;
let
M
=
(
date
.
getMonth
()
+
1
<
10
?
'0'
+
(
date
.
getMonth
()
+
1
)
:
date
.
getMonth
()
+
1
)
+
'-'
;
let
D
=
(
date
.
getDate
()
<
10
?
'0'
+
date
.
getDate
()
:
date
.
getDate
());
let
h
=
(
date
.
getHours
()
<
10
?
'0'
+
date
.
getHours
()
:
date
.
getHours
())
+
':'
;
let
m
=
(
date
.
getMinutes
()
<
10
?
'0'
+
date
.
getMinutes
()
:
date
.
getMinutes
())
+
':'
;
let
s
=
(
date
.
getSeconds
()
<
10
?
'0'
+
date
.
getSeconds
()
:
date
.
getSeconds
());
return
Y
+
M
+
D
+
' '
+
h
+
m
+
s
;
},
time1
(
value
)
{
let
date
=
new
Date
(
value
);
// 时间戳为10位需*1000,时间戳为13位的话不需乘1000
let
date
=
new
Date
(
value
);
// 时间戳为10位需*1000,时间戳为13位的话不需乘1000
let
Y
=
date
.
getFullYear
()
+
'-'
;
let
Y
=
date
.
getFullYear
()
+
'-'
;
let
M
=
(
date
.
getMonth
()
+
1
<
10
?
'0'
+
(
date
.
getMonth
()
+
1
)
:
date
.
getMonth
()
+
1
)
+
'-'
;
let
M
=
(
date
.
getMonth
()
+
1
<
10
?
'0'
+
(
date
.
getMonth
()
+
1
)
:
date
.
getMonth
()
+
1
)
+
'-'
;
...
...
src/components/complaint/complaint/complaintDetail.vue
浏览文件 @
774ad74e
...
@@ -60,7 +60,7 @@
...
@@ -60,7 +60,7 @@
</div>
</div>
<p
class=
"line"
></p>
<p
class=
"line"
></p>
<div
class=
"reply"
>
<div
class=
"reply"
>
<span>
回复列表
:
</span>
<span>
中心回复
:
</span>
<span
class=
"replyList"
>
<span
class=
"replyList"
>
<el-scrollbar
style=
"height: 100%"
>
<el-scrollbar
style=
"height: 100%"
>
<p
v-for=
"(item,index) of replyList"
v-show=
"replyList !== ''"
:key=
"index"
class=
"replyAll"
>
<p
v-for=
"(item,index) of replyList"
v-show=
"replyList !== ''"
:key=
"index"
class=
"replyAll"
>
...
@@ -110,8 +110,8 @@ export default {
...
@@ -110,8 +110,8 @@ export default {
if
(
value
!==
''
||
value
!==
undefined
)
{
if
(
value
!==
''
||
value
!==
undefined
)
{
console
.
log
(
value
);
console
.
log
(
value
);
this
.
name
=
value
.
userName
;
this
.
name
=
value
.
userName
;
this
.
time
=
value
.
time
;
this
.
time
=
this
.
timeC
(
value
.
time
)
;
this
.
replytime
=
value
.
replyTime
;
this
.
replytime
=
this
.
timeC
(
value
.
replyTime
)
;
this
.
objectVal
=
value
.
target
;
this
.
objectVal
=
value
.
target
;
this
.
unitVal
=
value
.
unitName
;
this
.
unitVal
=
value
.
unitName
;
this
.
projectVal
=
value
.
projectName
;
this
.
projectVal
=
value
.
projectName
;
...
@@ -170,10 +170,10 @@ export default {
...
@@ -170,10 +170,10 @@ export default {
.complaintDetail
.content
.selectedList
{
.complaintDetail
.content
.selectedList
{
display
:
flex
;
display
:
flex
;
justify-content
:
space-between
;
justify-content
:
space-between
;
margin-top
:
30
px
;
margin-top
:
15
px
;
}
}
.complaintDetail
.textarea
{
.complaintDetail
.textarea
{
margin-top
:
50
px
;
margin-top
:
15
px
;
}
}
.complaintDetail
.content
.blank
{
.complaintDetail
.content
.blank
{
width
:
390px
;
width
:
390px
;
...
@@ -232,7 +232,7 @@ export default {
...
@@ -232,7 +232,7 @@ export default {
.complaintDetail
.content
.replyList
{
.complaintDetail
.content
.replyList
{
display
:
inline-block
;
display
:
inline-block
;
width
:
89%
;
width
:
89%
;
height
:
1
00px
;
height
:
2
00px
;
background
:
#f5f8fd
;
background
:
#f5f8fd
;
border
:
1px
solid
rgba
(
8
,
104
,
157
,
.3
);
border
:
1px
solid
rgba
(
8
,
104
,
157
,
.3
);
border-radius
:
2px
;
border-radius
:
2px
;
...
@@ -245,14 +245,15 @@ export default {
...
@@ -245,14 +245,15 @@ export default {
background
:
#f5f8fd
;
background
:
#f5f8fd
;
font-size
:
18px
;
font-size
:
18px
;
color
:
#333
;
color
:
#333
;
font-family
:
'Regular'
;
}
}
.complaintDetail
.selected
>>>
.el-textarea
{
.complaintDetail
.selected
>>>
.el-textarea
{
width
:
89%
;
width
:
89%
;
}
}
.complaintDetail
.selected
>>>
.el-textarea
textarea
{
.complaintDetail
.selected
>>>
.el-textarea
textarea
{
max-height
:
7
0px
;
max-height
:
10
0px
;
min-height
:
7
0px
;
min-height
:
10
0px
;
height
:
7
0px
;
height
:
10
0px
;
font-size
:
18px
;
font-size
:
18px
;
color
:
#333
;
color
:
#333
;
font-family
:
'Regular'
;
font-family
:
'Regular'
;
...
...
src/components/complaint/complaintManagement/addComplaintManagement.vue
浏览文件 @
774ad74e
...
@@ -81,7 +81,7 @@ export default {
...
@@ -81,7 +81,7 @@ export default {
},
},
{
{
id
:
3
,
id
:
3
,
name
:
'监理
方
'
name
:
'监理
商
'
},
},
{
{
id
:
4
,
id
:
4
,
...
...
src/components/complaint/complaintManagement/complaintManagement.vue
浏览文件 @
774ad74e
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<el-row>
<el-row>
<el-col
:span=
"24"
>
<el-col
:span=
"24"
>
<div
class=
"content"
>
<div
class=
"content"
>
<p
class=
"title"
>
意见建议
</p>
<p
class=
"title"
>
投诉管理
</p>
<p
class=
"search"
>
<p
class=
"search"
>
<span
class=
"searchVal"
>
<span
class=
"searchVal"
>
<el-input
v-model=
"searchVal"
size=
"medium"
placeholder=
"请输入查询内容"
></el-input>
<el-input
v-model=
"searchVal"
size=
"medium"
placeholder=
"请输入查询内容"
></el-input>
...
@@ -50,12 +50,12 @@
...
@@ -50,12 +50,12 @@
align=
"center"
>
align=
"center"
>
</el-table-column>
</el-table-column>
<el-table-column
<el-table-column
prop=
"time"
prop=
"time
1
"
label=
"投诉时间"
label=
"投诉时间"
align=
"center"
>
align=
"center"
>
</el-table-column>
</el-table-column>
<el-table-column
<el-table-column
prop=
"replyTime"
prop=
"replyTime
1
"
label=
"最近回复时间"
label=
"最近回复时间"
align=
"center"
>
align=
"center"
>
</el-table-column>
</el-table-column>
...
@@ -120,11 +120,11 @@ export default {
...
@@ -120,11 +120,11 @@ export default {
console
.
log
(
res
.
data
.
data
);
console
.
log
(
res
.
data
.
data
);
this
.
allData
=
res
.
data
.
data
.
rows
;
this
.
allData
=
res
.
data
.
data
.
rows
;
this
.
totleLength
=
res
.
data
.
data
.
total
;
this
.
totleLength
=
res
.
data
.
data
.
total
;
for
(
let
i
=
0
;
i
<
this
.
allData
.
length
;
i
++
)
{
for
(
let
i
tem
of
this
.
allData
)
{
this
.
allData
[
i
].
time
=
this
.
time
(
this
.
allData
[
i
]
.
time
);
item
.
time1
=
this
.
time1
(
item
.
time
);
this
.
allData
[
i
].
replyTime
=
this
.
time
(
this
.
allData
[
i
]
.
replyTime
);
item
.
replyTime1
=
this
.
time1
(
item
.
replyTime
);
this
.
allData
[
i
].
type
=
this
.
allData
[
i
].
type
===
1
?
'服务质量'
:
this
.
allData
[
i
].
type
===
2
?
'服务态度'
:
this
.
allData
[
i
]
.
type
===
3
?
'响应速度'
:
'其他'
;
item
.
type
=
item
.
type
===
1
?
'服务质量'
:
item
.
type
===
2
?
'服务态度'
:
item
.
type
===
3
?
'响应速度'
:
'其他'
;
this
.
allData
[
i
].
target
=
this
.
allData
[
i
].
target
===
1
?
'集成商'
:
this
.
allData
[
i
].
target
===
2
?
'监理方'
:
this
.
allData
[
i
].
target
===
3
?
'开发商'
:
this
.
allData
[
i
].
target
===
4
?
'硬件产品'
:
this
.
allData
[
i
]
.
target
===
5
?
'软件产品'
:
'其他'
;
item
.
target
=
item
.
target
===
1
?
'集成商'
:
item
.
target
===
2
?
'监理商'
:
item
.
target
===
3
?
'开发商'
:
item
.
target
===
4
?
'硬件产品'
:
item
.
target
===
5
?
'软件产品'
:
'其他'
;
}
}
}
}
})
})
...
@@ -158,6 +158,13 @@ export default {
...
@@ -158,6 +158,13 @@ export default {
let
M
=
(
date
.
getMonth
()
+
1
<
10
?
'0'
+
(
date
.
getMonth
()
+
1
)
:
date
.
getMonth
()
+
1
)
+
'-'
;
let
M
=
(
date
.
getMonth
()
+
1
<
10
?
'0'
+
(
date
.
getMonth
()
+
1
)
:
date
.
getMonth
()
+
1
)
+
'-'
;
let
D
=
(
date
.
getDate
()
<
10
?
'0'
+
date
.
getDate
()
:
date
.
getDate
());
let
D
=
(
date
.
getDate
()
<
10
?
'0'
+
date
.
getDate
()
:
date
.
getDate
());
return
Y
+
M
+
D
;
return
Y
+
M
+
D
;
},
time1
(
value
)
{
let
date
=
new
Date
(
value
);
// 时间戳为10位需*1000,时间戳为13位的话不需乘1000
let
Y
=
date
.
getFullYear
()
+
'-'
;
let
M
=
(
date
.
getMonth
()
+
1
<
10
?
'0'
+
(
date
.
getMonth
()
+
1
)
:
date
.
getMonth
()
+
1
)
+
'-'
;
let
D
=
(
date
.
getDate
()
<
10
?
'0'
+
date
.
getDate
()
:
date
.
getDate
());
return
Y
+
M
+
D
;
}
}
},
},
components
:
{
components
:
{
...
...
src/components/complaint/complaintManagement/complaintManagementDetail.vue
浏览文件 @
774ad74e
...
@@ -3,14 +3,13 @@
...
@@ -3,14 +3,13 @@
<el-row>
<el-row>
<el-col
:span=
"24"
>
<el-col
:span=
"24"
>
<div
class=
"content"
>
<div
class=
"content"
>
<p
class=
"title"
>
投诉详情
</p>
<p
class=
"title"
>
投诉详情
<p
style=
"margin-top: 30px;color: #666;font-size: 18px;"
>
<span
@
click=
"signClick"
style=
"cursor: pointer;"
class=
"diologClick"
>
<span
@
click=
"signClick"
style=
"cursor: pointer;"
>
<img
src=
"./img/clickN.png"
class=
"img"
v-if=
"sign === -1"
>
<img
src=
"./img/clickN.png"
class=
"img"
v-if=
"sign === -1"
>
<img
src=
"./img/click.png"
class=
"img"
v-if=
"sign === 1"
>
<img
src=
"./img/click.png"
class=
"img"
v-if=
"sign === 1"
>
重要
重要
</span>
</span>
<span
@
click=
"stickClick"
style=
"cursor: pointer;"
>
<span
@
click=
"stickClick"
style=
"cursor: pointer;"
class=
"diologClick"
>
<img
src=
"./img/clickN.png"
class=
"img"
v-if=
"stick === -1"
>
<img
src=
"./img/clickN.png"
class=
"img"
v-if=
"stick === -1"
>
<img
src=
"./img/click.png"
class=
"img"
v-if=
"stick === 1"
>
<img
src=
"./img/click.png"
class=
"img"
v-if=
"stick === 1"
>
置顶
置顶
...
@@ -73,7 +72,7 @@
...
@@ -73,7 +72,7 @@
</div>
</div>
<p
class=
"line"
></p>
<p
class=
"line"
></p>
<div
class=
"reply"
>
<div
class=
"reply"
>
<span>
回复列表
:
</span>
<span>
中心回复
:
</span>
<span
class=
"replyList"
>
<span
class=
"replyList"
>
<el-scrollbar
style=
"height: 100%"
>
<el-scrollbar
style=
"height: 100%"
>
<p
v-for=
"(item,index) of replyList"
v-show=
"replyList !== ''"
:key=
"index"
class=
"replyAll"
>
<p
v-for=
"(item,index) of replyList"
v-show=
"replyList !== ''"
:key=
"index"
class=
"replyAll"
>
...
@@ -93,7 +92,8 @@
...
@@ -93,7 +92,8 @@
</el-input>
</el-input>
</p>
</p>
</div>
</div>
<p
style=
"text-align: center;margin-top: 50px;"
>
<p
style=
"display: flex;justify-content: space-evenly;;margin-top: 50px;"
>
<span
class=
"button"
@
click=
"cancel"
>
返回
</span>
<span
class=
"button"
@
click=
"submit"
>
确定
</span>
<span
class=
"button"
@
click=
"submit"
>
确定
</span>
</p>
</p>
</div>
</div>
...
@@ -136,8 +136,8 @@ export default {
...
@@ -136,8 +136,8 @@ export default {
if
(
value
!==
''
||
value
!==
undefined
)
{
if
(
value
!==
''
||
value
!==
undefined
)
{
console
.
log
(
value
);
console
.
log
(
value
);
this
.
name
=
value
.
userName
;
this
.
name
=
value
.
userName
;
this
.
time
=
value
.
time
;
this
.
time
=
this
.
timeC
(
value
.
time
)
;
this
.
replytime
=
value
.
replyTime
;
this
.
replytime
=
this
.
timeC
(
value
.
replyTime
)
;
this
.
objectVal
=
value
.
target
;
this
.
objectVal
=
value
.
target
;
this
.
unitVal
=
value
.
unitName
;
this
.
unitVal
=
value
.
unitName
;
this
.
projectVal
=
value
.
projectName
;
this
.
projectVal
=
value
.
projectName
;
...
@@ -173,6 +173,9 @@ export default {
...
@@ -173,6 +173,9 @@ export default {
}
}
})
})
},
},
cancel
()
{
this
.
$router
.
push
({
name
:
'complaintManagement'
});
},
// 重要
// 重要
signClick
()
{
signClick
()
{
if
(
this
.
sign
===
-
1
)
{
if
(
this
.
sign
===
-
1
)
{
...
@@ -225,16 +228,20 @@ export default {
...
@@ -225,16 +228,20 @@ export default {
font-size
:
20px
;
font-size
:
20px
;
color
:
#233b6e
;
color
:
#233b6e
;
}
}
.complaintManagementDetail
.content
.diologClick
{
font-size
:
18px
;
color
:
#666
;
}
.complaintManagementDetail
.content
.img
{
.complaintManagementDetail
.content
.img
{
margin-left
:
20px
;
margin-left
:
20px
;
}
}
.complaintManagementDetail
.content
.selectedList
{
.complaintManagementDetail
.content
.selectedList
{
display
:
flex
;
display
:
flex
;
justify-content
:
space-between
;
justify-content
:
space-between
;
margin-top
:
25
px
;
margin-top
:
10
px
;
}
}
.complaintManagementDetail
.textarea
{
.complaintManagementDetail
.textarea
{
margin-top
:
25
px
;
margin-top
:
10
px
;
}
}
.complaintManagementDetail
.content
.blank
{
.complaintManagementDetail
.content
.blank
{
width
:
390px
;
width
:
390px
;
...
@@ -293,7 +300,7 @@ export default {
...
@@ -293,7 +300,7 @@ export default {
.complaintManagementDetail
.content
.replyList
{
.complaintManagementDetail
.content
.replyList
{
display
:
inline-block
;
display
:
inline-block
;
width
:
89%
;
width
:
89%
;
height
:
1
00px
;
height
:
2
00px
;
background
:
#f5f8fd
;
background
:
#f5f8fd
;
border
:
1px
solid
rgba
(
8
,
104
,
157
,
.3
);
border
:
1px
solid
rgba
(
8
,
104
,
157
,
.3
);
border-radius
:
2px
;
border-radius
:
2px
;
...
@@ -306,14 +313,15 @@ export default {
...
@@ -306,14 +313,15 @@ export default {
background
:
#f5f8fd
;
background
:
#f5f8fd
;
font-size
:
18px
;
font-size
:
18px
;
color
:
#333
;
color
:
#333
;
font-family
:
'Regular'
;
}
}
.complaintManagementDetail
.selected
>>>
.el-textarea
{
.complaintManagementDetail
.selected
>>>
.el-textarea
{
width
:
89%
;
width
:
89%
;
}
}
.complaintManagementDetail
.selected
>>>
.el-textarea
textarea
{
.complaintManagementDetail
.selected
>>>
.el-textarea
textarea
{
max-height
:
7
0px
;
max-height
:
10
0px
;
min-height
:
7
0px
;
min-height
:
10
0px
;
height
:
7
0px
;
height
:
10
0px
;
font-size
:
18px
;
font-size
:
18px
;
color
:
#333
;
color
:
#333
;
font-family
:
'Regular'
;
font-family
:
'Regular'
;
...
...
src/components/header/header.css
浏览文件 @
774ad74e
...
@@ -88,6 +88,7 @@
...
@@ -88,6 +88,7 @@
font-size
:
20px
;
font-size
:
20px
;
cursor
:
default
;
cursor
:
default
;
color
:
#4765A4
;
color
:
#4765A4
;
line-height
:
40px
;
}
}
.headerAll
.menuClick
{
.headerAll
.menuClick
{
color
:
#4777e7
;
color
:
#4777e7
;
...
...
src/components/header/header.vue
浏览文件 @
774ad74e
...
@@ -2,10 +2,10 @@
...
@@ -2,10 +2,10 @@
<div
class=
"headerAll"
>
<div
class=
"headerAll"
>
<div
class=
"header"
>
<div
class=
"header"
>
<span
class=
"left-header"
>
<span
class=
"left-header"
>
<p
style=
"text-align: center;font-size: 28px;font-weight: bold;color: #fff;line-height: 98px;"
>
912
</p>
<p
style=
"text-align: center;font-size: 28px;font-weight: bold;color: #fff;line-height: 98px;"
>
XXX
</p>
</span>
</span>
<span
class=
"center"
>
<span
class=
"center"
>
<span
class=
"title"
>
工程综合监管系统
</span>
<span
class=
"title"
>
XX工作台
</span>
<span
class=
"time"
>
当前时间:
{{
this
.
time
}}
</span>
<span
class=
"time"
>
当前时间:
{{
this
.
time
}}
</span>
</span>
</span>
<span
class=
"right"
>
<span
class=
"right"
>
...
...
src/components/home/home.vue
浏览文件 @
774ad74e
...
@@ -3,19 +3,19 @@
...
@@ -3,19 +3,19 @@
<div
class=
"firstHome"
>
<div
class=
"firstHome"
>
<el-row>
<el-row>
<el-col
:span=
"24"
>
<el-col
:span=
"24"
>
<p
class=
"title"
>
912
工程综合监管系统
</p>
<p
class=
"title"
>
XXX
工程综合监管系统
</p>
<div
class=
"menu"
>
<div
class=
"menu"
>
<p
class=
"bg"
>
<p
class=
"bg"
>
<img
src=
"./img/JD.png"
>
<img
src=
"./img/JD.png"
>
<span>
基地建设
</span>
<span>
基地建设
</span>
</p>
</p>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type !== 1
"
>
<p
class=
"bg"
@
click=
"jump('XCalliance',2,'XX联盟')
"
>
<img
src=
"./img/
WD
.png"
>
<img
src=
"./img/
XC
.png"
>
<span>
我的项目
</span>
<span>
XX联盟
</span>
</p>
</p>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type === 1
"
>
<p
class=
"bg"
@
click=
"jump('integration',3,'XXX一体化')
"
>
<img
src=
"./img/
WD
.png"
>
<img
src=
"./img/
ZQ
.png"
>
<span>
项目管理
</span>
<span>
XXX一体化
</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"
>
<img
src=
"./img/GJ.png"
>
<img
src=
"./img/GJ.png"
>
...
@@ -25,42 +25,42 @@
...
@@ -25,42 +25,42 @@
<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"
@
click=
"jump('company',
3
,'基础资料管理')"
>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type === 1"
@
click=
"jump('company',
4
,'基础资料管理')"
>
<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"
@
click=
"jump('product',
4
,'市级准入管理')"
>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type === 1"
@
click=
"jump('product',
5
,'市级准入管理')"
>
<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"
@
click=
"jump('complaint',5,'意见建议')"
>
<img
src=
"./img/YJ.png"
>
<span>
意见建议
</span>
</p>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type === 1"
@
click=
"jump('complaintManagement',5,'投诉管理')"
>
<img
src=
"./img/YJ.png"
>
<span>
投诉管理
</span>
</p>
<p
class=
"bg"
>
<p
class=
"bg"
>
<img
src=
"./img/KT.png"
>
<img
src=
"./img/KT.png"
>
<span>
课题攻关
</span>
<span>
课题攻关
</span>
</p>
</p>
</div>
</div>
<div
class=
"menu"
>
<div
class=
"menu"
>
<p
class=
"bg"
@
click=
"jump('XCalliance',7,'XX联盟')
"
>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type !== 1
"
>
<img
src=
"./img/
XC
.png"
>
<img
src=
"./img/
WD
.png"
>
<span>
XX联盟
</span>
<span>
我的项目
</span>
</p>
</p>
<p
class=
"bg"
@
click=
"jump('integration',8,'XXX一体化')"
>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type === 1"
>
<img
src=
"./img/ZQ.png"
>
<img
src=
"./img/WD.png"
>
<span>
XXX一体化
</span>
<span>
项目管理
</span>
</p>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type !== 1"
@
click=
"jump('complaint',8,'意见建议')"
>
<img
src=
"./img/YJ.png"
>
<span>
意见建议
</span>
</p>
<p
class=
"bg"
v-if=
"this.$store.getters.getUserData.type === 1"
@
click=
"jump('complaintManagement',8,'投诉管理')"
>
<img
src=
"./img/YJ.png"
>
<span>
投诉管理
</span>
</p>
</p>
<p
class=
"blank"
></p>
<p
class=
"blank"
></p>
<p
class=
"blank"
></p>
<p
class=
"blank"
></p>
<p
class=
"blank"
></p>
<p
class=
"blank"
></p>
<p
class=
"blank"
></p>
<p
class=
"blank"
></p>
</div>
</div>
<p
class=
"title XC"
>
信创
应用系统适配替换
</p>
<p
class=
"title XC"
>
XX
应用系统适配替换
</p>
<div
class=
"XCmenu"
>
<div
class=
"XCmenu"
>
<p>
<p>
<img
src=
"./img/PG.png"
>
<img
src=
"./img/PG.png"
>
...
...
src/components/sidebar/sidebar.vue
浏览文件 @
774ad74e
...
@@ -11,23 +11,23 @@
...
@@ -11,23 +11,23 @@
</p>
</p>
</div>
</div>
<div
v-if=
"this.$store.getters.getUserData.type === 1
"
>
<div
@
click=
"clickMenu('XCalliance',2,'XX联盟')
"
>
<span
class=
"line"
></span>
<span
class=
"line"
></span>
<p
class=
"menu"
style=
"margin-top: 0"
>
<p
class=
"menu"
style=
"margin-top: 0"
>
<span
class=
"icon"
>
<span
class=
"icon"
>
<img
src=
"./img/XM
.png"
>
<img
src=
"./img/XC
.png"
>
</span>
</span>
<span
class=
"font"
>
项目管理
</span>
<span
class=
"font"
>
XX联盟
</span>
</p>
</p>
</div>
</div>
<div
v-if=
"this.$store.getters.getUserData.type !== 1
"
>
<div
style=
"margin-bottom: 10px;"
@
click=
"clickMenu('integration',3,'XXX一体化')
"
>
<span
class=
"line"
></span>
<span
class=
"line"
></span>
<p
class=
"menu"
style=
"margin-top: 0"
>
<p
class=
"menu"
style=
"margin-top: 0"
>
<span
class=
"icon"
>
<span
class=
"icon"
>
<img
src=
"./img/XM
.png"
>
<img
src=
"./img/ZQ
.png"
>
</span>
</span>
<span
class=
"font"
>
我的项目
</span>
<span
class=
"font"
>
XXX一体化
</span>
</p>
</p>
</div>
</div>
...
@@ -51,7 +51,7 @@
...
@@ -51,7 +51,7 @@
</p>
</p>
</div>
</div>
<div
@
click=
"clickMenu('company',
3
,'基础资料管理')"
v-if=
"this.$store.getters.getUserData.type === 1"
>
<div
@
click=
"clickMenu('company',
4
,'基础资料管理')"
v-if=
"this.$store.getters.getUserData.type === 1"
>
<span
class=
"line"
></span>
<span
class=
"line"
></span>
<p
class=
"menu"
style=
"margin-top: 0"
>
<p
class=
"menu"
style=
"margin-top: 0"
>
<span
class=
"icon"
>
<span
class=
"icon"
>
...
@@ -61,7 +61,7 @@
...
@@ -61,7 +61,7 @@
</p>
</p>
</div>
</div>
<div
@
click=
"clickMenu('product',
4
,'市级准入管理')"
v-if=
"this.$store.getters.getUserData.type === 1"
>
<div
@
click=
"clickMenu('product',
5
,'市级准入管理')"
v-if=
"this.$store.getters.getUserData.type === 1"
>
<span
class=
"line"
></span>
<span
class=
"line"
></span>
<p
class=
"menu"
style=
"margin-top: 0"
>
<p
class=
"menu"
style=
"margin-top: 0"
>
<span
class=
"icon"
>
<span
class=
"icon"
>
...
@@ -71,53 +71,53 @@
...
@@ -71,53 +71,53 @@
</p>
</p>
</div>
</div>
<div
@
click=
"clickMenu('complaintManagement',5,'投诉管理')"
v-if=
"this.$store.getters.getUserData.type === 1"
>
<div>
<span
class=
"line"
></span>
<span
class=
"line"
></span>
<p
class=
"menu"
style=
"margin-top: 0"
>
<p
class=
"menu"
style=
"margin-top: 0"
>
<span
class=
"icon"
>
<span
class=
"icon"
>
<img
src=
"./img/KT.png"
>
<img
src=
"./img/KT.png"
>
</span>
</span>
<span
class=
"font"
>
投诉管理
</span>
<span
class=
"font"
>
课题攻关
</span>
</p>
</p>
</div>
</div>
<div
@
click=
"clickMenu('complaint',5,'意见建议')"
v-if=
"this.$store.getters.getUserData.type !
== 1"
>
<div
v-if=
"this.$store.getters.getUserData.type =
== 1"
>
<span
class=
"line"
></span>
<span
class=
"line"
></span>
<p
class=
"menu"
style=
"margin-top: 0"
>
<p
class=
"menu"
style=
"margin-top: 0"
>
<span
class=
"icon"
>
<span
class=
"icon"
>
<img
src=
"./img/KT
.png"
>
<img
src=
"./img/XM
.png"
>
</span>
</span>
<span
class=
"font"
>
意见建议
</span>
<span
class=
"font"
>
项目管理
</span>
</p>
</p>
</div>
</div>
<div>
<div
v-if=
"this.$store.getters.getUserData.type !== 1"
>
<span
class=
"line"
></span>
<span
class=
"line"
></span>
<p
class=
"menu"
style=
"margin-top: 0"
>
<p
class=
"menu"
style=
"margin-top: 0"
>
<span
class=
"icon"
>
<span
class=
"icon"
>
<img
src=
"./img/KT
.png"
>
<img
src=
"./img/XM
.png"
>
</span>
</span>
<span
class=
"font"
>
课题攻关
</span>
<span
class=
"font"
>
我的项目
</span>
</p>
</p>
</div>
</div>
<div
@
click=
"clickMenu('
XCalliance',7,'XX联盟')
"
>
<div
@
click=
"clickMenu('
complaintManagement',8,'投诉管理')"
v-if=
"this.$store.getters.getUserData.type === 1
"
>
<span
class=
"line"
></span>
<span
class=
"line"
></span>
<p
class=
"menu"
style=
"margin-top: 0"
>
<p
class=
"menu"
style=
"margin-top: 0"
>
<span
class=
"icon"
>
<span
class=
"icon"
>
<img
src=
"./img/
XC
.png"
>
<img
src=
"./img/
KT
.png"
>
</span>
</span>
<span
class=
"font"
>
XX联盟
</span>
<span
class=
"font"
>
投诉管理
</span>
</p>
</p>
</div>
</div>
<div
style=
"margin-bottom: 10px;"
@
click=
"clickMenu('integration',8,'XXX一体化')
"
>
<div
@
click=
"clickMenu('complaint',8,'意见建议')"
v-if=
"this.$store.getters.getUserData.type !== 1
"
>
<span
class=
"line"
></span>
<span
class=
"line"
></span>
<p
class=
"menu"
style=
"margin-top: 0"
>
<p
class=
"menu"
style=
"margin-top: 0"
>
<span
class=
"icon"
>
<span
class=
"icon"
>
<img
src=
"./img/
ZQ
.png"
>
<img
src=
"./img/
KT
.png"
>
</span>
</span>
<span
class=
"font"
>
XXX一体化
</span>
<span
class=
"font"
>
意见建议
</span>
</p>
</p>
</div>
</div>
...
@@ -160,13 +160,13 @@ export default {
...
@@ -160,13 +160,13 @@ export default {
name
:
'产品管理'
,
name
:
'产品管理'
,
path
:
'basisProduct'
path
:
'basisProduct'
},
},
{
name
:
'角色管理'
,
path
:
'role'
},
{
{
name
:
'人员管理'
,
name
:
'人员管理'
,
path
:
'person'
path
:
'person'
},
{
name
:
'角色管理'
,
path
:
'role'
}
}
]
]
},
},
...
@@ -208,6 +208,7 @@ export default {
...
@@ -208,6 +208,7 @@ export default {
path
:
''
path
:
''
},
},
{
{
name
:
'产品管理'
,
name
:
'产品管理'
,
path
:
''
path
:
''
},
},
...
@@ -218,22 +219,10 @@ export default {
...
@@ -218,22 +219,10 @@ export default {
]
]
},
},
{
{
name
:
'意见建议'
,
name
:
'意见建议'
menuList
:
[
{
name
:
'意见建议列表'
,
path
:
'complaint'
}
]
},
},
{
{
name
:
'投诉管理'
,
name
:
'投诉管理'
menuList
:
[
{
name
:
'投诉管理列表'
,
path
:
'complaintManagement'
}
]
},
},
{
{
name
:
'课题攻关'
,
name
:
'课题攻关'
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论