Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
template_vue
Project
Project
Details
Activity
Releases
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
胡宝山
template_vue
Commits
c9de944b
Commit
c9de944b
authored
Mar 08, 2024
by
Hagsn3
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改样式
parent
316a765f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
14 deletions
+59
-14
oneTbale.vue
src/views/check/oneTbale.vue
+43
-11
checkList.vue
src/views/checkList.vue
+16
-3
No files found.
src/views/check/oneTbale.vue
View file @
c9de944b
<
template
>
<div
class=
"app-container"
>
<el-form
ref=
"queryForm"
style=
"padding: 0 0 0 10px"
:model=
"queryParams"
:inline=
"true"
>
<el-form-item
label=
"单号"
prop=
"jcCode"
>
<el-form
class=
"upperBody"
ref=
"queryForm"
:model=
"queryParams"
:inline=
"true"
>
<el-form-item
label=
"单号"
prop=
"jcCode"
>
<el-input
v-model=
"queryParams.jcCode"
placeholder=
"请输入单号"
...
...
@@ -21,7 +21,7 @@
style=
"width: 150px"
/>
</el-form-item>
<el-form-item
label=
"pn"
prop=
"jcPn"
>
<el-form-item
label=
"pn"
prop=
"jcPn"
>
<el-input
v-model=
"queryParams.jcPn"
placeholder=
"请输入pn"
...
...
@@ -41,8 +41,8 @@
style=
"width: 150px"
/>
</el-form-item>
<el-form-item
label=
"厂家"
prop=
"jcCj"
>
<el-select
clearable
v-model=
"queryParams.jcCj"
class=
"normalSelect"
placeholder=
"请选择厂家"
>
<el-form-item
class=
"normalTopInput"
label=
"厂家"
prop=
"jcCj"
>
<el-select
clearable
v-model=
"queryParams.jcCj"
placeholder=
"请选择厂家"
>
<el-option
v-for=
"item in manufacturer"
:key=
"item.value"
...
...
@@ -51,7 +51,7 @@
/>
</el-select>
</el-form-item>
<el-form-item
label=
"检查结果"
prop=
"approveStatus"
style=
"width: 22%"
>
<el-form-item
class=
"inspectTopSelect"
label=
"检查结果"
prop=
"approveStatus"
>
<el-select
clearable
v-model=
"queryParams.jcResult"
placeholder=
"请选择"
>
<el-option
v-for=
"item in resultOptions"
...
...
@@ -61,7 +61,7 @@
/>
</el-select>
</el-form-item>
<el-form-item
label=
"审批状态"
prop=
"approveStatus"
style=
"width: 22%"
>
<el-form-item
class=
"inspectTopStatus"
label=
"审批状态"
prop=
"approveStatus"
>
<el-select
clearable
v-model=
"queryParams.approveStatus"
placeholder=
"请选择"
>
<el-option
v-for=
"item in statusOptions"
...
...
@@ -71,12 +71,12 @@
/>
</el-select>
</el-form-item>
<el-form-item
label=
"提交时间"
prop=
"updateDate"
>
<el-form-item
class=
"submitTopTime"
label=
"提交时间"
prop=
"updateDate"
>
<el-date-picker
class=
"timeForamt"
clearable
v-model=
"dateRange"
size=
"small"
style=
"width: 210px"
value-format=
"yyyy-MM-dd"
type=
"daterange"
range-separator=
"-"
...
...
@@ -85,7 +85,7 @@
@
change=
"handleTimeChange"
/>
</el-form-item>
<el-form-item
style=
"margin-left:
3
%"
>
<el-form-item
style=
"margin-left:
-10
%"
>
<el-button
:class=
"commonField.queryClass"
:type=
"commonField.typePrimary"
...
...
@@ -112,6 +112,7 @@
</el-form-item>
</div>
</el-form>
<div
class=
"placeholder"
/>
<div
style=
"padding:5px 10px"
>
<div
class=
"mb12 font-small-bold"
>
检查表列表
</div>
...
...
@@ -687,14 +688,45 @@ export default {
}
</
script
>
<
style
lang=
"scss"
scoped
>
.app-container
{
font-size
:
18px
;
padding
:
0
;
.upperBody
{
width
:
100%
;
height
:
150px
;
//border: 4px solid ;
padding-top
:
1%
;
padding-left
:
1%
;
.normalTopInput
{
margin-left
:
-2%
;
::v-deep
.el-form-item__content
{
width
:
70%
;
}
}
.inspectTopSelect
{
margin-left
:
-4%
;
padding-left
:
2%
;
}
.inspectTopStatus
{
::v-deep
.el-form-item__content
{
width
:
61%
;
}
}
.submitTopTime
{
margin-left
:
-3%
;
.timeForamt
{
width
:
61%
;
}
}
}
.placeholder
{
height
:
1
.3vh
;
background-color
:
#F4F4F4
;
margin-bottom
:
10px
//background-color: red;
margin-bottom
:
10px
;
margin-top
:
-2%
;
}
}
</
style
>
src/views/checkList.vue
View file @
c9de944b
...
...
@@ -1115,7 +1115,6 @@ export default {
this
.
digitalFormat
(
this
.
calculationFormThird
.
Minimum
=
min
)
this
.
digitalFormat
(
this
.
calculationFormThird
.
Average
=
stingAverage
)
}
},
/* 表单2的计算方法*/
...
...
@@ -1172,7 +1171,7 @@ export default {
}
}
}
if
(
this
.
recode3
[
index
].
recordData
===
''
)
{
if
(
this
.
recode3
[
index
].
recordData
===
''
||
this
.
inspectJbAl2o3List
.
limitOne
===
''
||
this
.
inspectJbAl2o3List
.
limitTwo
===
''
)
{
this
.
recode3
[
index
].
differenceValue
=
''
}
if
(
index
<
this
.
recode3
.
length
)
{
...
...
@@ -2128,12 +2127,13 @@ export default {
//text-align: right;
.scanDiv
{
width
:
43%
;
margin-left
:
4
%
;
margin-left
:
7
%
;
}
.fontSp
{
margin-left
:
43%
;
height
:
28px
;
width
:
11%
;
font-family
:
Microsoft
YaHei
,
Microsoft
YaHei-400
;
font-weight
:
400
;
color
:
#606266
;
...
...
@@ -2547,6 +2547,19 @@ export default {
margin-left
:
10px
;
}
}
.Value
{
//margin-left: 20px;
//margin-top: 8px;
width
:
64px
;
height
:
18px
;
font-size
:
14px
;
font-family
:
Microsoft
YaHei
,
Microsoft
YaHei-400
;
font-weight
:
400
;
text-align
:
LEFT
;
color
:
#0057ff
;
margin-left
:
27%
;
margin-top
:
1%
;
}
}
...
...
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