Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sample-form-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
赵啸非
sample-form-platform
Commits
a2a86dc4
Commit
a2a86dc4
authored
Nov 09, 2022
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改样表系统上传
parent
1c16cb10
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
12 deletions
+12
-12
sample-form-manager-ui/admin/src/pages/hardware/NumberWriteDevice.vue
...manager-ui/admin/src/pages/hardware/NumberWriteDevice.vue
+2
-2
sample-form-manager-ui/admin/src/pages/layouts/Layouts.vue
sample-form-manager-ui/admin/src/pages/layouts/Layouts.vue
+2
-2
sample-form-manager-ui/admin/src/pages/layouts/components/HeaderSite.vue
...ager-ui/admin/src/pages/layouts/components/HeaderSite.vue
+1
-1
sample-form-manager-ui/admin/src/pages/software/materials/MaterialsManage.vue
...ui/admin/src/pages/software/materials/MaterialsManage.vue
+2
-2
sample-form-manager-ui/admin/src/pages/software/matter/MatterManage.vue
...nager-ui/admin/src/pages/software/matter/MatterManage.vue
+3
-3
sample-form-manager-ui/admin/src/pages/software/matter/modal/AddMatter.vue
...er-ui/admin/src/pages/software/matter/modal/AddMatter.vue
+2
-2
No files found.
sample-form-manager-ui/admin/src/pages/hardware/NumberWriteDevice.vue
View file @
a2a86dc4
...
...
@@ -184,8 +184,8 @@ export default {
data
()
{
return
{
searchVal
:
""
,
siteId
:
local
.
getLocal
(
"
writ
eSiteId
"
)
?
local
.
getLocal
(
"
writ
eSiteId
"
)
siteId
:
local
.
getLocal
(
"
sampl
eSiteId
"
)
?
local
.
getLocal
(
"
sampl
eSiteId
"
)
:
""
,
tableData
:
[],
pageSizes
:
[
10
,
20
,
30
,
40
,
50
,
100
,
200
],
...
...
sample-form-manager-ui/admin/src/pages/layouts/Layouts.vue
View file @
a2a86dc4
...
...
@@ -71,8 +71,8 @@ export default {
// 获取部门列表
async
getdeptList
()
{
let
res
=
await
getdeptList
({
siteId
:
local
.
getLocal
(
"
writ
eSiteId
"
)
?
local
.
getLocal
(
"
writ
eSiteId
"
)
siteId
:
local
.
getLocal
(
"
sampl
eSiteId
"
)
?
local
.
getLocal
(
"
sampl
eSiteId
"
)
:
""
,
});
let
{
code
,
data
}
=
res
.
data
;
...
...
sample-form-manager-ui/admin/src/pages/layouts/components/HeaderSite.vue
View file @
a2a86dc4
...
...
@@ -178,7 +178,7 @@ export default {
// siteName: obj.label,
// siteid: obj.id,
// };
local
.
setLocal
(
"
writ
eSiteId
"
,
obj
.
id
);
local
.
setLocal
(
"
sampl
eSiteId
"
,
obj
.
id
);
this
.
show
=
false
;
if
(
location
.
href
.
search
(
/token/gi
)
>=
0
)
{
setTimeout
(()
=>
{
...
...
sample-form-manager-ui/admin/src/pages/software/materials/MaterialsManage.vue
View file @
a2a86dc4
...
...
@@ -286,8 +286,8 @@ export default {
},
data
()
{
return
{
siteId
:
local
.
getLocal
(
"
writ
eSiteId
"
)
?
local
.
getLocal
(
"
writ
eSiteId
"
)
siteId
:
local
.
getLocal
(
"
sampl
eSiteId
"
)
?
local
.
getLocal
(
"
sampl
eSiteId
"
)
:
""
,
departmentLeft
:
""
,
departmentRight
:
""
,
...
...
sample-form-manager-ui/admin/src/pages/software/matter/MatterManage.vue
View file @
a2a86dc4
...
...
@@ -273,8 +273,8 @@ export default {
},
data
()
{
return
{
siteId
:
local
.
getLocal
(
"
writ
eSiteId
"
)
?
local
.
getLocal
(
"
writ
eSiteId
"
)
siteId
:
local
.
getLocal
(
"
sampl
eSiteId
"
)
?
local
.
getLocal
(
"
sampl
eSiteId
"
)
:
""
,
departmentLeft
:
""
,
departmentRight
:
""
,
...
...
@@ -442,7 +442,7 @@ export default {
},
// 右边加入
async
handleJoin
(
id
)
{
let
res
=
await
createMatter
({
ids
:
id
});
let
res
=
await
createMatter
({
ids
:
id
,
siteId
:
this
.
siteId
});
let
{
code
,
msg
}
=
res
.
data
;
if
(
code
===
1
)
{
this
.
$message
.
success
(
msg
);
...
...
sample-form-manager-ui/admin/src/pages/software/matter/modal/AddMatter.vue
View file @
a2a86dc4
...
...
@@ -85,8 +85,8 @@ export default {
matterName
:
""
,
// 事项简称
deptId
:
""
,
// 部门id
matterNo
:
""
,
// 事项编号
siteId
:
local
.
getLocal
(
"
writ
eSiteId
"
)
?
local
.
getLocal
(
"
writ
eSiteId
"
)
siteId
:
local
.
getLocal
(
"
sampl
eSiteId
"
)
?
local
.
getLocal
(
"
sampl
eSiteId
"
)
:
""
,
source
:
0
,
deptName
:
""
,
...
...
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