Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
e7fb4177
authored
2022-08-31 15:32:04 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
全局样式的修改
1 parent
11a1b7e8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
36 deletions
src/api/dict.js
src/api/system.js
src/styles/element-ui.scss
src/views/system/qtjfjmb/components/editDialog.vue
src/views/system/qtjfjmb/qtjfjmb.vue
src/views/ywbl/ywsq/ywsq.scss
src/api/dict.js
View file @
e7fb417
...
...
@@ -36,6 +36,7 @@ export function editDictNode (data) {
url
:
'/sys/dict/editDictNode'
,
method
:
'post'
,
data
,
showLoading
:
true
showLoading
:
true
,
loadingTarget
:
'正在提交中...'
})
}
\ No newline at end of file
...
...
src/api/system.js
View file @
e7fb417
...
...
@@ -48,7 +48,8 @@ export function sysSqywmbszSearch (data) {
return
request
({
url
:
'/system/sysSqywmbsz/search'
,
method
:
'post'
,
data
data
,
showLoading
:
true
})
}
/*
...
...
src/styles/element-ui.scss
View file @
e7fb417
...
...
@@ -6,6 +6,11 @@
color
:
#686666
;
}
//input
.el-input__inner
{
padding
:
0
7px
!
important
;
}
.el-upload
{
input
[
type
=
"file"
]
{
display
:
none
!
important
;
...
...
@@ -138,16 +143,6 @@
box-shadow
:
none
!
important
;
}
// input type=number 上下箭头
input
:
:-
webkit-outer-spin-button
,
input
::-
webkit-inner-spin-button
{
-webkit-appearance
:
none
;
}
input
[
type
=
"number"
]
{
-moz-appearance
:
textfield
;
}
// Divider 分割线 样式的修改
.el-divider--horizontal
{
margin
:
10px
0
!
important
;
...
...
src/views/system/qtjfjmb/components/editDialog.vue
View file @
e7fb417
<
template
>
<dialogBox
title=
"其他及附记模板"
@
submitForm=
"submitForm"
width=
"60%"
loadingText=
"正在提交中..."
@
closeDialog=
"closeDialog"
:saveloding=
"saveloding"
v-model=
"myValue"
>
<dialogBox
title=
"其他及附记模板"
@
submitForm=
"submitForm"
width=
"60%"
@
closeDialog=
"closeDialog"
v-model=
"myValue"
>
<div
class=
"qtjfjmb-edit-title"
>
<b>
权利信息
</b>
</div>
...
...
@@ -114,8 +113,6 @@
<
script
>
import
{
updateSysSqywmbsz
}
from
'@/api/system'
export
default
{
components
:
{
},
props
:
{
value
:
{
type
:
Boolean
,
default
:
false
},
details
:
{
...
...
@@ -139,7 +136,6 @@ export default {
},
data
()
{
return
{
saveloding
:
false
,
myValue
:
this
.
value
,
n
:
0
,
ruleForm
:
{
...
...
@@ -199,16 +195,10 @@ export default {
},
submitForm
()
{
let
that
=
this
this
.
saveloding
=
true
updateSysSqywmbsz
(
this
.
ruleForm
).
then
(
res
=>
{
if
(
res
.
code
===
200
)
{
setTimeout
(()
=>
{
that
.
saveloding
=
false
that
.
$emit
(
'input'
,
false
)
},
500
)
that
.
$emit
(
'input'
,
false
)
}
}).
catch
(
error
=>
{
that
.
saveloding
=
false
})
},
closeDialog
()
{
...
...
src/views/system/qtjfjmb/qtjfjmb.vue
View file @
e7fb417
...
...
@@ -23,9 +23,9 @@
</div>
<!-- 表格 -->
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.size"
:
loading=
"loading"
:current-page
.
sync=
"pageData.current
"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange
"
:
column=
"tableData.columns"
:
data=
"tableData.data"
>
<lb-table
:page-size=
"pageData.size"
:
current-page
.
sync=
"pageData.current"
:total=
"tableData.total
"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns
"
:data=
"tableData.data"
>
</lb-table>
</div>
<editDialog
v-model=
"isDialog"
:details=
"details"
/>
...
...
@@ -51,7 +51,6 @@ export default {
},
data
()
{
return
{
loading
:
false
,
isDialog
:
false
,
queryForm
:
{
qllx
:
""
...
...
@@ -67,14 +66,11 @@ export default {
methods
:
{
// 初始化数据
fetchData
()
{
this
.
loading
=
true
sysSqywmbszSearch
({
...
this
.
pageData
,
...
this
.
queryForm
}).
then
(
res
=>
{
this
.
loading
=
false
let
{
records
,
total
}
=
res
.
result
this
.
tableData
.
data
=
records
this
.
tableData
.
total
=
total
}).
catch
(
error
=>
{
this
.
loading
=
false
})
},
editClick
(
row
)
{
...
...
src/views/ywbl/ywsq/ywsq.scss
View file @
e7fb417
...
...
@@ -169,7 +169,7 @@
padding
:
20px
;
@include
flex
;
flex-wrap
:
wrap
;
margin-left
:
-
2
0px
;
margin-left
:
-
1
0px
;
justify-content
:
space-between
;
&
:after
{
...
...
@@ -180,12 +180,12 @@
}
li
{
width
:
48%
;
height
:
5
0px
;
width
:
48
.5
%
;
height
:
4
0px
;
border
:
1px
solid
$borderColor
;
@include
flex
;
justify-content
:
space-between
;
margin-left
:
2
0px
;
margin-left
:
1
0px
;
cursor
:
pointer
;
margin-bottom
:
15px
;
...
...
@@ -206,7 +206,7 @@
p
:nth-child
(
2
)
{
width
:
50px
;
height
:
5
0px
;
height
:
4
0px
;
border-left
:
1px
solid
$borderColor
;
cursor
:
pointer
;
}
...
...
Please
register
or
sign in
to post a comment