Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
apaas-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gzga-jzapi
apaas-ui
Commits
decd7d2f
Commit
decd7d2f
authored
Oct 26, 2020
by
徐一鸣
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of cloud.wodcloud.com:apaas/apaas-v3-ui into dev
parents
d27c444f
65165ca8
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
211 additions
and
131 deletions
+211
-131
src/assets/imgs/home_tool_ic_sscj.png
src/assets/imgs/home_tool_ic_sscj.png
+0
-0
src/components/general/upload_file.vue
src/components/general/upload_file.vue
+13
-7
src/components/wangE.vue
src/components/wangE.vue
+4
-0
src/components/wangEBd.vue
src/components/wangEBd.vue
+5
-1
src/pages/technical-support/answer-center/detail.vue
src/pages/technical-support/answer-center/detail.vue
+1
-1
src/pages/technical-support/answer-center/edit.vue
src/pages/technical-support/answer-center/edit.vue
+1
-1
src/pages/workbench/fwzc_fwcs.vue
src/pages/workbench/fwzc_fwcs.vue
+179
-121
src/pages/workbench/workPlace.vue
src/pages/workbench/workPlace.vue
+8
-0
No files found.
src/assets/imgs/home_tool_ic_sscj.png
0 → 100644
View file @
decd7d2f
1.28 KB
src/components/general/upload_file.vue
View file @
decd7d2f
...
...
@@ -114,6 +114,19 @@ export default {
},
watch
:
{
list
(
value
)
{
this
.
getFileArray
(
value
);
},
},
created
()
{
if
(
!
this
.
unique
)
{
this
.
anotherData
.
uniqueCode
=
this
.
unique
;
}
},
mounted
()
{
this
.
getFileArray
(
this
.
list
);
},
methods
:
{
getFileArray
(
value
)
{
var
getListImg
=
[];
if
(
value
&&
value
.
length
!=
0
)
{
for
(
var
i
=
0
;
i
<
value
.
length
;
i
++
)
{
...
...
@@ -126,13 +139,6 @@ export default {
this
.
fileArray
=
[...
getListImg
];
this
.
hideUpload
=
this
.
fileArray
.
length
>=
this
.
max
;
},
},
created
()
{
if
(
!
this
.
unique
)
{
this
.
anotherData
.
uniqueCode
=
this
.
unique
;
}
},
methods
:
{
beforeAvatarUpload
(
file
)
{
if
(
this
.
type
==
"
mp3
"
)
{
const
isMP3
=
file
.
type
===
"
audio/mp3
"
;
...
...
src/components/wangE.vue
View file @
decd7d2f
...
...
@@ -105,6 +105,10 @@ export default {
this
.
info_
=
html
;
// 绑定当前逐渐地值
this
.
$emit
(
"
change
"
,
this
.
info_
);
// 将内容同步到父组件中
};
this
.
editor
.
config
.
onchange
=
html
=>
{
this
.
info_
=
html
;
// 绑定当前逐渐地值
this
.
$emit
(
"
change
"
,
this
.
info_
);
// 将内容同步到父组件中
};
// 创建富文本编辑器
this
.
editor
.
create
();
}
...
...
src/components/wangEBd.vue
View file @
decd7d2f
...
...
@@ -81,7 +81,7 @@ export default {
this
.
editor
.
config
.
uploadImgMaxLength
=
6
;
// 限制一次最多上传 3 张图片
this
.
editor
.
config
.
uploadImgTimeout
=
3
*
60
*
1000
;
// 设置超时时间
this
.
editor
.
config
.
uploadImgParams
=
{
directory
:
"
image
"
};
console
.
log
(
this
.
editor
);
this
.
editor
.
config
.
uploadImgHooks
=
{
fail
:
(
xhr
,
editor
,
result
)
=>
{
// 插入图片失败回调
...
...
@@ -117,6 +117,10 @@ export default {
this
.
info_
=
html
;
// 绑定当前逐渐地值
this
.
$emit
(
"
change
"
,
this
.
info_
);
// 将内容同步到父组件中
};
this
.
editor
.
config
.
onchange
=
html
=>
{
this
.
info_
=
html
;
// 绑定当前逐渐地值
this
.
$emit
(
"
change
"
,
this
.
info_
);
// 将内容同步到父组件中
};
// 创建富文本编辑器
this
.
editor
.
create
();
}
...
...
src/pages/technical-support/answer-center/detail.vue
View file @
decd7d2f
...
...
@@ -400,7 +400,7 @@ export default {
padding
:
16px
;
}
.ans_self
{
width
:
100%
;
width
:
856px
;
padding
:
24px
;
height
:
354px
;
background-color
:
#ffffff
;
...
...
src/pages/technical-support/answer-center/edit.vue
View file @
decd7d2f
...
...
@@ -104,7 +104,7 @@ export default {
padding
:
12px
0
11px
;
}
.detail_content
{
width
:
1
00%
;
width
:
1
200px
;
}
.detail_title
{
...
...
src/pages/workbench/fwzc_fwcs.vue
View file @
decd7d2f
This diff is collapsed.
Click to expand it.
src/pages/workbench/workPlace.vue
View file @
decd7d2f
...
...
@@ -1004,6 +1004,14 @@ export default {
color
:
"
#58617a
"
,
url
:
'
/search_engine
'
,
},
{
text
:
"
数据采集
"
,
pic
:
require
(
"
@/assets/imgs/home_tool_ic_sscj.png
"
),
bg
:
"
#fff2e2
"
,
color
:
"
#ea7d19
"
,
url
:
'
https://apaas3.wodcloud.com/sjcj/ui/
'
,
target
:
1
,
},
],
service_arr
:
[
[
"
服务列表
"
,
"
申请服务
"
,
"
云资源
"
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment