Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
source-trace-manage-go
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tracing
source-trace-manage-go
Commits
06c72b6a
Commit
06c72b6a
authored
Oct 12, 2021
by
zL
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:修复格式化导致的bug
parent
71af5fac
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
8 deletions
+16
-8
VideoForm.vue
src/components/editTemplate/form/VideoForm.vue
+1
-2
editTemplate.vue
src/views/template/editTemplate.vue
+0
-1
readOnly.vue
src/views/template/readOnly.vue
+1
-3
vue.config.js
vue.config.js
+14
-2
No files found.
src/components/editTemplate/form/VideoForm.vue
View file @
06c72b6a
...
...
@@ -225,7 +225,6 @@ export default {
uploadComplete
(
xhr
)
{
//服务断接收完文件返回的结果
this
.
hashList
.
push
(
JSON
.
parse
(
xhr
.
target
.
response
).
data
.
hash
);
console
.
log
(
this
.
hashList
);
this
.
$message
({
type
:
"success"
,
message
:
"上传成功!"
,
...
...
@@ -278,7 +277,7 @@ export default {
background: #f6f6f7;
border-radius: 4px;
border: 1px solid #dcdfe6;
color:
#353535
;
color:
rgba(121, 125, 132, 1)
;
line-height: 36px;
text-align: center;
font-size: 12px;
...
...
src/views/template/editTemplate.vue
View file @
06c72b6a
...
...
@@ -590,7 +590,6 @@ export default class editTemplate extends Vue {
await
this
.
fileHandler
();
var
newDetail
=
new
Array
();
newDetail
=
formatApiJson
(
this
.
rootUnitList
);
console
.
log
(
newDetail
);
// return;
// 更新ext数据
for
(
let
index
=
0
;
index
<
newDetail
.
length
;
index
++
)
{
...
...
src/views/template/readOnly.vue
View file @
06c72b6a
...
...
@@ -12,9 +12,7 @@
<div
class=
"info-content"
v-if=
"item2.type === 0"
>
{{
item2
.
data
.
value
}}
</div>
<div
class=
"info-content info-content--area"
v-if=
"item2.type === 10"
>
{{
item2
.
data
.
value
}}
</div>
<div
class=
"info-content info-content--area"
v-if=
"item2.type === 10"
>
{{
item2
.
data
.
value
}}
</div>
<!-- 选择器 -->
<div
class=
"info-content"
v-if=
"item2.type === 5"
>
{{
item2
.
data
.
value
}}
...
...
vue.config.js
View file @
06c72b6a
...
...
@@ -3,7 +3,17 @@ module.exports = {
publicPath
:
"./"
,
//相对路径
outputDir
:
'sy'
,
configureWebpack
:
{
performance
:
{
hints
:
'warning'
,
// 入口起点的最大体积
maxEntrypointSize
:
50000000
,
// 生成文件的最大体积
maxAssetSize
:
30000000
,
// 只给出 js 文件的性能提示
assetFilter
:
function
(
assetFilename
)
{
return
assetFilename
.
endsWith
(
'.js'
)
}
},
},
devServer
:
{
// port: port,
...
...
@@ -18,7 +28,8 @@ module.exports = {
},
},
},
pages
:
{
index
:
UrlPrefixObj
.
model
.
INDEX
}
};
};
\ No newline at end of file
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