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
Jul 16, 2023
by
姬鋆屾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tui
parent
e3aa41a5
Changes
12
Show 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 @@
...
@@ -68,10 +68,21 @@
{{
form
.
deductPerson
?
form
.
deductPerson
:
"
--
"
}}
</el-col
{{
form
.
deductPerson
?
form
.
deductPerson
:
"
--
"
}}
</el-col
>
>
<el-col
:span=
"12"
<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>
</el-row>
</div>
</div>
</div>
</div>
...
@@ -391,7 +402,7 @@ export default {
...
@@ -391,7 +402,7 @@ export default {
this
.
$forceUpdate
(
this
.
form
);
this
.
$forceUpdate
(
this
.
form
);
},
},
picMatter
(
val
)
{
picMatter
(
val
)
{
if
(
val
||
val
!==
"
--
"
)
{
if
(
val
)
{
return
(
return
(
<
el
-
image
<
el
-
image
src
=
{
val
.
indexOf
(
"
http
"
)
==
-
1
?
this
.
baseUrl
+
val
:
val
}
src
=
{
val
.
indexOf
(
"
http
"
)
==
-
1
?
this
.
baseUrl
+
val
:
val
}
...
...
attendance-performance-manager-ui/admin/src/views/check/complain/record/drawershow.vue
View file @
b029236b
...
@@ -84,10 +84,20 @@
...
@@ -84,10 +84,20 @@
{{
form
.
deductTime
?
form
.
deductTime
:
"
--
"
}}
</el-col
{{
form
.
deductTime
?
form
.
deductTime
:
"
--
"
}}
</el-col
>
>
<el-col
:span=
"12"
<el-col
:span=
"12"
>
图片凭证:
{{
>
图片凭证:
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
<el-image
}}
</el-col
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>
</el-row>
</div>
</div>
</div>
</div>
...
...
attendance-performance-manager-ui/admin/src/views/check/effect/record/drawershow.vue
View file @
b029236b
...
@@ -61,10 +61,20 @@
...
@@ -61,10 +61,20 @@
</el-row>
</el-row>
<el-row>
<el-row>
<el-col
:span=
"24"
>
<el-col
:span=
"24"
>
图片凭证:
{{
图片凭证:
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
<el-image
}}
</el-col
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>
</el-row>
</div>
</div>
</div>
</div>
...
...
attendance-performance-manager-ui/admin/src/views/check/gowork/record/drawershow.vue
View file @
b029236b
...
@@ -63,10 +63,20 @@
...
@@ -63,10 +63,20 @@
</el-row>
</el-row>
<el-row>
<el-row>
<el-col
:span=
"24"
>
<el-col
:span=
"24"
>
图片凭证:
{{
图片凭证:
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
<el-image
}}
</el-col
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>
</el-row>
</div>
</div>
</div>
</div>
...
...
attendance-performance-manager-ui/admin/src/views/check/other/record/drawershow.vue
View file @
b029236b
...
@@ -59,10 +59,20 @@
...
@@ -59,10 +59,20 @@
</el-row>
</el-row>
<el-row>
<el-row>
<el-col
:span=
"24"
<el-col
:span=
"24"
>
图片凭证:
{{
>
图片凭证:
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
<el-image
}}
</el-col
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>
</el-row>
</div>
</div>
</div>
</div>
...
...
attendance-performance-manager-ui/admin/src/views/check/review/record/drawershow.vue
View file @
b029236b
...
@@ -64,10 +64,20 @@
...
@@ -64,10 +64,20 @@
<el-row>
<el-row>
<el-col
:span=
"12"
<el-col
:span=
"12"
>
图片凭证:
{{
>
图片凭证:
form
.
filePaths
?
picMatter
(
form
.
filePaths
)
:
"
--
"
<el-image
}}
</el-col
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>
</el-row>
</div>
</div>
</div>
</div>
...
...
attendance-performance-manager-ui/admin/src/views/perform/attend/record/drawershow.vue
View file @
b029236b
...
@@ -122,7 +122,18 @@
...
@@ -122,7 +122,18 @@
<el-col
:span=
"22"
>
<el-col
:span=
"22"
>
<el-form-item
label=
"图片凭证:"
>
<el-form-item
label=
"图片凭证:"
>
<div
v-if=
"form.view == '查看'"
>
<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>
</div>
<ImageUpload
<ImageUpload
v-else
v-else
...
...
attendance-performance-manager-ui/admin/src/views/perform/complain/record/drawershow.vue
View file @
b029236b
...
@@ -174,7 +174,18 @@
...
@@ -174,7 +174,18 @@
<el-col
:span=
"22"
>
<el-col
:span=
"22"
>
<el-form-item
label=
"图片凭证:"
>
<el-form-item
label=
"图片凭证:"
>
<div
v-if=
"form.view == '查看'"
>
<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>
</div>
<ImageUpload
<ImageUpload
v-else
v-else
...
@@ -505,7 +516,6 @@ export default {
...
@@ -505,7 +516,6 @@ export default {
this
.
form
.
filePaths
=
val
;
this
.
form
.
filePaths
=
val
;
this
.
$forceUpdate
(
this
.
form
);
this
.
$forceUpdate
(
this
.
form
);
},
},
staffChange
(
val
)
{
staffChange
(
val
)
{
let
arr
=
this
.
staffArr
.
filter
((
v
)
=>
v
.
id
==
val
);
let
arr
=
this
.
staffArr
.
filter
((
v
)
=>
v
.
id
==
val
);
...
...
attendance-performance-manager-ui/admin/src/views/perform/effect/record/drawershow.vue
View file @
b029236b
...
@@ -148,7 +148,18 @@
...
@@ -148,7 +148,18 @@
<el-col
:span=
"22"
>
<el-col
:span=
"22"
>
<el-form-item
label=
"图片凭证:"
>
<el-form-item
label=
"图片凭证:"
>
<div
v-if=
"form.view == '查看'"
>
<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>
</div>
<ImageUpload
<ImageUpload
v-else
v-else
...
...
attendance-performance-manager-ui/admin/src/views/perform/gowork/record/drawershow.vue
View file @
b029236b
...
@@ -126,7 +126,18 @@
...
@@ -126,7 +126,18 @@
<el-col
:span=
"22"
>
<el-col
:span=
"22"
>
<el-form-item
label=
"图片凭证:"
>
<el-form-item
label=
"图片凭证:"
>
<div
v-if=
"form.view == '查看'"
>
<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>
</div>
<ImageUpload
<ImageUpload
v-else
v-else
...
@@ -445,7 +456,6 @@ export default {
...
@@ -445,7 +456,6 @@ export default {
this
.
form
.
filePaths
=
val
;
this
.
form
.
filePaths
=
val
;
this
.
$forceUpdate
(
this
.
form
);
this
.
$forceUpdate
(
this
.
form
);
},
},
staffChange
(
val
)
{
staffChange
(
val
)
{
console
.
log
(
val
);
console
.
log
(
val
);
...
...
attendance-performance-manager-ui/admin/src/views/perform/other/record/drawershow.vue
View file @
b029236b
...
@@ -86,7 +86,18 @@
...
@@ -86,7 +86,18 @@
<el-col
:span=
"22"
>
<el-col
:span=
"22"
>
<el-form-item
label=
"图片凭证:"
>
<el-form-item
label=
"图片凭证:"
>
<div
v-if=
"form.view == '查看'"
>
<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>
</div>
<ImageUpload
<ImageUpload
v-else
v-else
...
...
attendance-performance-manager-ui/admin/src/views/perform/review/record/drawershow.vue
View file @
b029236b
...
@@ -139,7 +139,18 @@
...
@@ -139,7 +139,18 @@
<el-col
:span=
"22"
>
<el-col
:span=
"22"
>
<el-form-item
label=
"图片凭证:"
>
<el-form-item
label=
"图片凭证:"
>
<div
v-if=
"form.view == '查看'"
>
<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>
</div>
<ImageUpload
<ImageUpload
v-else
v-else
...
@@ -460,7 +471,6 @@ export default {
...
@@ -460,7 +471,6 @@ export default {
this
.
form
.
filePaths
=
val
;
this
.
form
.
filePaths
=
val
;
this
.
$forceUpdate
(
this
.
form
);
this
.
$forceUpdate
(
this
.
form
);
},
},
staffChange
(
val
)
{
staffChange
(
val
)
{
console
.
log
(
val
);
console
.
log
(
val
);
...
...
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