Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
attendance-performance-platform
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
赵啸非
attendance-performance-platform
Commits
b029236b
Commit
b029236b
authored
1 year ago
by
姬鋆屾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tui
parent
e3aa41a5
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
161 additions
and
37 deletions
+161
-37
attendance-performance-manager-ui/admin/src/views/check/attend/record/drawershow.vue
...ger-ui/admin/src/views/check/attend/record/drawershow.vue
+16
-5
attendance-performance-manager-ui/admin/src/views/check/complain/record/drawershow.vue
...r-ui/admin/src/views/check/complain/record/drawershow.vue
+14
-4
attendance-performance-manager-ui/admin/src/views/check/effect/record/drawershow.vue
...ger-ui/admin/src/views/check/effect/record/drawershow.vue
+14
-4
attendance-performance-manager-ui/admin/src/views/check/gowork/record/drawershow.vue
...ger-ui/admin/src/views/check/gowork/record/drawershow.vue
+14
-4
attendance-performance-manager-ui/admin/src/views/check/other/record/drawershow.vue
...ager-ui/admin/src/views/check/other/record/drawershow.vue
+14
-4
attendance-performance-manager-ui/admin/src/views/check/review/record/drawershow.vue
...ger-ui/admin/src/views/check/review/record/drawershow.vue
+14
-4
attendance-performance-manager-ui/admin/src/views/perform/attend/record/drawershow.vue
...r-ui/admin/src/views/perform/attend/record/drawershow.vue
+12
-1
attendance-performance-manager-ui/admin/src/views/perform/complain/record/drawershow.vue
...ui/admin/src/views/perform/complain/record/drawershow.vue
+13
-3
attendance-performance-manager-ui/admin/src/views/perform/effect/record/drawershow.vue
...r-ui/admin/src/views/perform/effect/record/drawershow.vue
+12
-1
attendance-performance-manager-ui/admin/src/views/perform/gowork/record/drawershow.vue
...r-ui/admin/src/views/perform/gowork/record/drawershow.vue
+13
-3
attendance-performance-manager-ui/admin/src/views/perform/other/record/drawershow.vue
...er-ui/admin/src/views/perform/other/record/drawershow.vue
+12
-1
attendance-performance-manager-ui/admin/src/views/perform/review/record/drawershow.vue
...r-ui/admin/src/views/perform/review/record/drawershow.vue
+13
-3
No files found.
attendance-performance-manager-ui/admin/src/views/check/attend/record/drawershow.vue
View file @
b029236b
...
...
@@ -68,10 +68,21 @@
{{
form
.
deductPerson
?
form
.
deductPerson
:
"
--
"
}}
</el-col
>
<el-col
:span=
"12"
>
图片凭证:
{{
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
}}
</el-col
>
>
图片凭证:
<el-image
style=
"width: 100px; height: 100px"
:src=
"
`$
{
form.filePaths.indexOf('http') == -1
? baseUrl + form.filePaths
: form.filePaths
}`
"
:preview-src-list="form.filePaths"
>
</el-image>
</el-col>
</el-row>
</div>
</div>
...
...
@@ -391,7 +402,7 @@ export default {
this
.
$forceUpdate
(
this
.
form
);
},
picMatter
(
val
)
{
if
(
val
||
val
!==
"
--
"
)
{
if
(
val
)
{
return
(
<
el
-
image
src
=
{
val
.
indexOf
(
"
http
"
)
==
-
1
?
this
.
baseUrl
+
val
:
val
}
...
...
This diff is collapsed.
Click to expand it.
attendance-performance-manager-ui/admin/src/views/check/complain/record/drawershow.vue
View file @
b029236b
...
...
@@ -84,10 +84,20 @@
{{
form
.
deductTime
?
form
.
deductTime
:
"
--
"
}}
</el-col
>
<el-col
:span=
"12"
>
图片凭证:
{{
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
}}
</el-col
>
>
图片凭证:
<el-image
style=
"width: 100px; height: 100px"
:src=
"
`$
{
form.filePaths.indexOf('http') == -1
? baseUrl + form.filePaths
: form.filePaths
}`
"
:preview-src-list="form.filePaths"
>
</el-image
></el-col>
</el-row>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
attendance-performance-manager-ui/admin/src/views/check/effect/record/drawershow.vue
View file @
b029236b
...
...
@@ -61,10 +61,20 @@
</el-row>
<el-row>
<el-col
:span=
"24"
>
图片凭证:
{{
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
}}
</el-col
>
图片凭证:
<el-image
style=
"width: 100px; height: 100px"
:src=
"
`$
{
form.filePaths.indexOf('http') == -1
? baseUrl + form.filePaths
: form.filePaths
}`
"
:preview-src-list="form.filePaths"
>
</el-image
></el-col>
</el-row>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
attendance-performance-manager-ui/admin/src/views/check/gowork/record/drawershow.vue
View file @
b029236b
...
...
@@ -63,10 +63,20 @@
</el-row>
<el-row>
<el-col
:span=
"24"
>
图片凭证:
{{
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
}}
</el-col
>
图片凭证:
<el-image
style=
"width: 100px; height: 100px"
:src=
"
`$
{
form.filePaths.indexOf('http') == -1
? baseUrl + form.filePaths
: form.filePaths
}`
"
:preview-src-list="form.filePaths"
>
</el-image
></el-col>
</el-row>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
attendance-performance-manager-ui/admin/src/views/check/other/record/drawershow.vue
View file @
b029236b
...
...
@@ -59,10 +59,20 @@
</el-row>
<el-row>
<el-col
:span=
"24"
>
图片凭证:
{{
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
}}
</el-col
>
>
图片凭证:
<el-image
style=
"width: 100px; height: 100px"
:src=
"
`$
{
form.filePaths.indexOf('http') == -1
? baseUrl + form.filePaths
: form.filePaths
}`
"
:preview-src-list="form.filePaths"
>
</el-image
></el-col>
</el-row>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
attendance-performance-manager-ui/admin/src/views/check/review/record/drawershow.vue
View file @
b029236b
...
...
@@ -64,10 +64,20 @@
<el-row>
<el-col
:span=
"12"
>
图片凭证:
{{
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
}}
</el-col
>
>
图片凭证:
<el-image
style=
"width: 100px; height: 100px"
:src=
"
`$
{
form.filePaths.indexOf('http') == -1
? baseUrl + form.filePaths
: form.filePaths
}`
"
:preview-src-list="form.filePaths"
>
</el-image
></el-col>
</el-row>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
attendance-performance-manager-ui/admin/src/views/perform/attend/record/drawershow.vue
View file @
b029236b
...
...
@@ -122,7 +122,18 @@
<el-col
:span=
"22"
>
<el-form-item
label=
"图片凭证:"
>
<div
v-if=
"form.view == '查看'"
>
{{
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
}}
<el-image
style=
"width: 100px; height: 100px"
:src=
"
`$
{
form.filePaths.indexOf('http') == -1
? baseUrl + form.filePaths
: form.filePaths
}`
"
:preview-src-list="form.filePaths"
>
</el-image>
</div>
<ImageUpload
v-else
...
...
This diff is collapsed.
Click to expand it.
attendance-performance-manager-ui/admin/src/views/perform/complain/record/drawershow.vue
View file @
b029236b
...
...
@@ -174,7 +174,18 @@
<el-col
:span=
"22"
>
<el-form-item
label=
"图片凭证:"
>
<div
v-if=
"form.view == '查看'"
>
{{
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
}}
<el-image
style=
"width: 100px; height: 100px"
:src=
"
`$
{
form.filePaths.indexOf('http') == -1
? baseUrl + form.filePaths
: form.filePaths
}`
"
:preview-src-list="form.filePaths"
>
</el-image>
</div>
<ImageUpload
v-else
...
...
@@ -502,10 +513,9 @@ export default {
});
},
replaceImage
(
val
)
{
this
.
form
.
filePaths
=
val
;
this
.
form
.
filePaths
=
val
;
this
.
$forceUpdate
(
this
.
form
);
},
staffChange
(
val
)
{
let
arr
=
this
.
staffArr
.
filter
((
v
)
=>
v
.
id
==
val
);
...
...
This diff is collapsed.
Click to expand it.
attendance-performance-manager-ui/admin/src/views/perform/effect/record/drawershow.vue
View file @
b029236b
...
...
@@ -148,7 +148,18 @@
<el-col
:span=
"22"
>
<el-form-item
label=
"图片凭证:"
>
<div
v-if=
"form.view == '查看'"
>
{{
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
}}
<el-image
style=
"width: 100px; height: 100px"
:src=
"
`$
{
form.filePaths.indexOf('http') == -1
? baseUrl + form.filePaths
: form.filePaths
}`
"
:preview-src-list="form.filePaths"
>
</el-image>
</div>
<ImageUpload
v-else
...
...
This diff is collapsed.
Click to expand it.
attendance-performance-manager-ui/admin/src/views/perform/gowork/record/drawershow.vue
View file @
b029236b
...
...
@@ -126,7 +126,18 @@
<el-col
:span=
"22"
>
<el-form-item
label=
"图片凭证:"
>
<div
v-if=
"form.view == '查看'"
>
{{
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
}}
<el-image
style=
"width: 100px; height: 100px"
:src=
"
`$
{
form.filePaths.indexOf('http') == -1
? baseUrl + form.filePaths
: form.filePaths
}`
"
:preview-src-list="form.filePaths"
>
</el-image>
</div>
<ImageUpload
v-else
...
...
@@ -442,10 +453,9 @@ export default {
});
},
replaceImage
(
val
)
{
this
.
form
.
filePaths
=
val
;
this
.
form
.
filePaths
=
val
;
this
.
$forceUpdate
(
this
.
form
);
},
staffChange
(
val
)
{
console
.
log
(
val
);
...
...
This diff is collapsed.
Click to expand it.
attendance-performance-manager-ui/admin/src/views/perform/other/record/drawershow.vue
View file @
b029236b
...
...
@@ -86,7 +86,18 @@
<el-col
:span=
"22"
>
<el-form-item
label=
"图片凭证:"
>
<div
v-if=
"form.view == '查看'"
>
{{
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
}}
<el-image
style=
"width: 100px; height: 100px"
:src=
"
`$
{
form.filePaths.indexOf('http') == -1
? baseUrl + form.filePaths
: form.filePaths
}`
"
:preview-src-list="form.filePaths"
>
</el-image>
</div>
<ImageUpload
v-else
...
...
This diff is collapsed.
Click to expand it.
attendance-performance-manager-ui/admin/src/views/perform/review/record/drawershow.vue
View file @
b029236b
...
...
@@ -139,7 +139,18 @@
<el-col
:span=
"22"
>
<el-form-item
label=
"图片凭证:"
>
<div
v-if=
"form.view == '查看'"
>
{{
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
}}
<el-image
style=
"width: 100px; height: 100px"
:src=
"
`$
{
form.filePaths.indexOf('http') == -1
? baseUrl + form.filePaths
: form.filePaths
}`
"
:preview-src-list="form.filePaths"
>
</el-image>
</div>
<ImageUpload
v-else
...
...
@@ -457,10 +468,9 @@ export default {
});
},
replaceImage
(
val
)
{
this
.
form
.
filePaths
=
val
;
this
.
form
.
filePaths
=
val
;
this
.
$forceUpdate
(
this
.
form
);
},
staffChange
(
val
)
{
console
.
log
(
val
);
...
...
This diff is collapsed.
Click to expand it.
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