Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_web
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pseer
gxpt_web
Commits
a3f614a8
Commit
a3f614a8
authored
Nov 25, 2023
by
YG8999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug修复
parent
1d2fda6a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
index.vue
src/components/ImageUpload/index.vue
+2
-2
index.vue
src/views/system/cleanRecords/index.vue
+1
-1
No files found.
src/components/ImageUpload/index.vue
View file @
a3f614a8
...
...
@@ -19,7 +19,7 @@
>
<i
class=
"el-icon-plus"
></i>
</el-upload>
<!-- 上传提示 -->
<div
class=
"el-upload__tip"
slot=
"tip"
v-if=
"showTip"
>
请上传
...
...
@@ -93,7 +93,7 @@ export default {
// 然后将数组转为对象数组
this
.
fileList
=
list
.
map
(
item
=>
{
if
(
typeof
item
===
"string"
)
{
if
(
item
.
indexOf
(
this
.
baseUrl
)
===
-
1
)
{
if
(
item
.
indexOf
(
this
.
baseUrl
)
===
-
1
&&
!
item
.
startsWith
(
'http'
)
&&
!
item
.
startsWith
(
'https'
)
)
{
item
=
{
name
:
this
.
baseUrl
+
item
,
url
:
this
.
baseUrl
+
item
};
}
else
{
item
=
{
name
:
item
,
url
:
item
};
...
...
src/views/system/cleanRecords/index.vue
View file @
a3f614a8
...
...
@@ -141,7 +141,7 @@
/>
<!--
添加或修改保洁记录对话框
-->
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"open"
width
=
"50
0px
"
append
-
to
-
body
>
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"open"
width
=
"50
%
"
append
-
to
-
body
>
<
el
-
form
ref
=
"form"
:
model
=
"form"
:
rules
=
"rules"
label
-
width
=
"80px"
>
<
el
-
form
-
item
label
=
"房间ID"
prop
=
"roomId"
>
<
el
-
input
v
-
model
=
"form.roomId"
placeholder
=
"请输入房间ID"
/>
...
...
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