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
bd68978c
Commit
bd68978c
authored
Mar 05, 2024
by
Hagsn3
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
审核
parent
10c41397
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
282 additions
and
77 deletions
+282
-77
oneTbale.js
src/api/oneTbale.js
+10
-0
oneTbale.vue
src/views/check/oneTbale.vue
+15
-4
checkList.vue
src/views/checkList.vue
+257
-73
No files found.
src/api/oneTbale.js
View file @
bd68978c
...
@@ -67,3 +67,13 @@ export function exportIncomeInspectInfo(query) {
...
@@ -67,3 +67,13 @@ export function exportIncomeInspectInfo(query) {
responseType
:
'blob'
responseType
:
'blob'
})
})
}
}
// 7.审批
export
function
approveInformation
(
data
)
{
return
request
({
url
:
'/incomeinspectinfo/approve'
,
method
:
'put'
,
data
,
headers
:
{
'Content-Type'
:
'application/json;charset=utf8'
}
})
}
src/views/check/oneTbale.vue
View file @
bd68978c
...
@@ -41,7 +41,7 @@
...
@@ -41,7 +41,7 @@
style=
"width: 150px"
style=
"width: 150px"
/>
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"lot number"
prop=
"jcNum"
style=
"width: 20%"
>
<el-form-item
label=
"lot number"
prop=
"jcNum"
>
<el-input
<el-input
v-model=
"queryParams.jcNum"
v-model=
"queryParams.jcNum"
placeholder=
"请输入lot number"
placeholder=
"请输入lot number"
...
@@ -234,7 +234,6 @@
...
@@ -234,7 +234,6 @@
<
script
>
<
script
>
import
{
import
{
listIncomeInspectInfo
,
listIncomeInspectInfo
,
getIncomeInspectInfo
,
addIncomeInspectInfo
,
addIncomeInspectInfo
,
updateIncomeInspectInfo
,
updateIncomeInspectInfo
,
exportIncomeInspectInfo
,
exportIncomeInspectInfo
,
...
@@ -388,11 +387,19 @@ export default {
...
@@ -388,11 +387,19 @@ export default {
return
search
return
search
},
},
/** 审批按钮*/
/** 审批按钮*/
/**
* controls 操作 1:审核 2:修改 3:查看
* approveStatus 状态 0 cg 1 待审核 2 已通过 3 已驳回
* **/
handleApprove
(
row
)
{
handleApprove
(
row
)
{
const
id
=
row
.
businessId
const
id
=
row
.
businessId
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
'checkList'
,
path
:
'checkList'
,
query
:
{
businessId
:
id
}
query
:
{
businessId
:
id
,
controls
:
'1'
,
approveStatus
:
row
.
approveStatus
}
})
})
},
},
/** 查看按钮*/
/** 查看按钮*/
...
@@ -556,7 +563,11 @@ export default {
...
@@ -556,7 +563,11 @@ export default {
const
id
=
row
.
businessId
const
id
=
row
.
businessId
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
'checkList'
,
path
:
'checkList'
,
query
:
{
businessId
:
id
}
query
:
{
businessId
:
id
,
controls
:
'2'
,
approveStatus
:
row
.
approveStatus
}
})
})
// getIncomeInspectInfo(id).then(response => {
// getIncomeInspectInfo(id).then(response => {
...
...
src/views/checkList.vue
View file @
bd68978c
...
@@ -19,17 +19,18 @@
...
@@ -19,17 +19,18 @@
<div
class=
"formLabel"
>
<div
class=
"formLabel"
>
<div
class=
"left"
>
<div
class=
"left"
>
<el-form-item
label=
"LOT:"
>
<el-form-item
label=
"LOT:"
>
<el-input
v-model=
"inspectInfoList.jcLot"
class=
"scanInput"
/>
<el-input
v-model=
"inspectInfoList.jcLot"
:disabled=
"(this.controlsForm.controls == '1' && this.controlsForm.approveStatus === '1')"
class=
"scanInput"
/>
<el-button
class=
"scanCode"
type=
"primary"
@
click=
"scanCodes"
>
扫码
</el-button>
<el-button
class=
"scanCode"
type=
"primary"
@
click=
"scanCodes"
>
扫码
</el-button>
</el-form-item>
</el-form-item>
<el-form-item
label=
"PN:"
>
<el-form-item
label=
"厂家:"
>
<el-input
v-model=
"inspectInfoList.jcPn"
class=
"normalInput"
/>
<el-input
v-model=
"inspectInfoList.jcCj"
:disabled=
"(this.controlsForm.controls == '1' && this.controlsForm.approveStatus === '1')"
class=
"normalInput"
/>
<!--
<el-button
class=
"scanCode"
type=
"primary"
@
click=
"scanCodes"
>
扫码
</el-button>
-->
</el-form-item>
</el-form-item>
<el-form-item
label=
"
rank
:"
>
<el-form-item
label=
"
PN
:"
>
<el-input
v-model=
"inspectInfoList.jc
Rank
"
class=
"normalInput"
/>
<el-input
v-model=
"inspectInfoList.jc
Pn"
:disabled=
"(this.controlsForm.controls == '1' && this.controlsForm.approveStatus === '1')
"
class=
"normalInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"数量:"
>
<el-form-item
label=
"数量:"
>
<el-input
v-model=
"inspectInfoList.jcNum"
class=
"normalInput"
/>
<el-input
v-model=
"inspectInfoList.jcNum"
:disabled=
"(this.controlsForm.controls == '1' && this.controlsForm.approveStatus === '1')"
class=
"normalInput"
/>
</el-form-item>
</el-form-item>
</div>
</div>
<div
class=
"right"
>
<div
class=
"right"
>
...
@@ -37,8 +38,8 @@
...
@@ -37,8 +38,8 @@
<!--
<el-form-item
class=
"topContain"
>
-->
<!--
<el-form-item
class=
"topContain"
>
-->
<!--<!–
<el-input
type=
"text"
v-model=
"oneForm.rank"
class=
"topInput"
/>
–>
-->
<!--<!–
<el-input
type=
"text"
v-model=
"oneForm.rank"
class=
"topInput"
/>
–>
-->
<!--
</el-form-item>
-->
<!--
</el-form-item>
-->
<el-form-item
label=
"
厂家
:"
>
<el-form-item
label=
"
rank
:"
>
<el-input
v-model=
"inspectInfoList.jc
Cj
"
class=
"normalInput"
/>
<el-input
v-model=
"inspectInfoList.jc
Rank"
:disabled=
"(this.controlsForm.controls == '1' && this.controlsForm.approveStatus === '1')
"
class=
"normalInput"
/>
</el-form-item>
</el-form-item>
<!-- 外观-->
<!-- 外观-->
<div
class=
"appearanceDiv"
>
<div
class=
"appearanceDiv"
>
...
@@ -46,10 +47,10 @@
...
@@ -46,10 +47,10 @@
<div
class=
"appearance"
>
<div
class=
"appearance"
>
<div
class=
"appearanceForm"
>
<div
class=
"appearanceForm"
>
<el-form-item
label=
"抽样:"
class=
"sample"
>
<el-form-item
label=
"抽样:"
class=
"sample"
>
<el-input
v-model=
"inspectInfoList.jcFacadeCy"
class=
"smallInput"
/>
<el-input
v-model=
"inspectInfoList.jcFacadeCy"
:disabled=
"(this.controlsForm.controls == '1' && this.controlsForm.approveStatus === '1')"
class=
"smallInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"不良:"
class=
"badness"
>
<el-form-item
label=
"不良:"
class=
"badness"
>
<el-input
v-model=
"inspectInfoList.jcFacadeBl"
class=
"smallInput"
/>
<el-input
v-model=
"inspectInfoList.jcFacadeBl"
:disabled=
"(this.controlsForm.controls == '1' && this.controlsForm.approveStatus === '1')"
class=
"smallInput"
/>
</el-form-item>
</el-form-item>
</div>
</div>
</div>
</div>
...
@@ -77,6 +78,7 @@
...
@@ -77,6 +78,7 @@
<el-input
<el-input
v-model=
"inspectJbAl2o3List.standardOne"
v-model=
"inspectJbAl2o3List.standardOne"
class=
"inspectionStandardsInput"
class=
"inspectionStandardsInput"
:disabled=
"(this.controlsForm.controls == '1' && this.controlsForm.approveStatus === '1')"
@
blur=
"getInspect"
@
blur=
"getInspect"
/>
/>
</el-form-item>
</el-form-item>
...
@@ -93,7 +95,10 @@
...
@@ -93,7 +95,10 @@
<div
v-for=
"(item,index) in recode1"
:key=
"index"
:class=
"index === 0? 'oneContent': 'Content'"
>
<div
v-for=
"(item,index) in recode1"
:key=
"index"
:class=
"index === 0? 'oneContent': 'Content'"
>
<div
class=
"number"
>
{{
index
+
1
}}
</div>
<div
class=
"number"
>
{{
index
+
1
}}
</div>
<div
class=
"recordData"
>
<div
class=
"recordData"
>
<el-input
v-model=
"item.recordData"
/>
<el-input
v-model=
"item.recordData"
:disabled=
"controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1' "
/>
</div>
</div>
<div
class=
"Value"
>
{{
item
.
differenceValue
}}
</div>
<div
class=
"Value"
>
{{
item
.
differenceValue
}}
</div>
<div
class=
"averageValue"
>
{{
item
.
differenceValue1
}}
</div>
<div
class=
"averageValue"
>
{{
item
.
differenceValue1
}}
</div>
...
@@ -119,6 +124,7 @@
...
@@ -119,6 +124,7 @@
<el-form-item
label=
"检验标准2:"
label-width=
"80"
>
<el-form-item
label=
"检验标准2:"
label-width=
"80"
>
<el-input
<el-input
v-model=
"inspectJbAl2o3List.standardTwo"
v-model=
"inspectJbAl2o3List.standardTwo"
:disabled=
"controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1' "
class=
"inspectionStandardsInput"
class=
"inspectionStandardsInput"
@
blur=
"getInspect"
@
blur=
"getInspect"
/>
/>
...
@@ -136,7 +142,7 @@
...
@@ -136,7 +142,7 @@
<div
v-for=
"(item,index) in recode2"
:key=
"index"
:class=
"index === 0? 'oneContent': 'Content'"
>
<div
v-for=
"(item,index) in recode2"
:key=
"index"
:class=
"index === 0? 'oneContent': 'Content'"
>
<div
class=
"number"
>
{{
index
+
11
}}
</div>
<div
class=
"number"
>
{{
index
+
11
}}
</div>
<div
class=
"recordData"
>
<div
class=
"recordData"
>
<el-input
v-model=
"item.recordData"
/>
<el-input
v-model=
"item.recordData"
:disabled=
"controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1' "
/>
</div>
</div>
<div
class=
"Value"
>
{{
item
.
differenceValue
}}
</div>
<div
class=
"Value"
>
{{
item
.
differenceValue
}}
</div>
<div
class=
"averageValue"
>
{{
item
.
differenceValue1
}}
</div>
<div
class=
"averageValue"
>
{{
item
.
differenceValue1
}}
</div>
...
@@ -172,6 +178,7 @@
...
@@ -172,6 +178,7 @@
v-model=
"inspectJbAl2o3List.limitOne"
v-model=
"inspectJbAl2o3List.limitOne"
class=
"inspectionStandardsInput"
class=
"inspectionStandardsInput"
@
blur=
"getInspectNext"
@
blur=
"getInspectNext"
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
/>
/>
</el-form-item>
</el-form-item>
</el-form>
</el-form>
...
@@ -181,6 +188,7 @@
...
@@ -181,6 +188,7 @@
v-model=
"inspectJbAl2o3List.limitTwo"
v-model=
"inspectJbAl2o3List.limitTwo"
class=
"inspectionStandardsInput"
class=
"inspectionStandardsInput"
@
blur=
"getInspectNext"
@
blur=
"getInspectNext"
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
/>
/>
</el-form-item>
</el-form-item>
</el-form>
</el-form>
...
@@ -194,7 +202,7 @@
...
@@ -194,7 +202,7 @@
<div
v-for=
"(item,index) in recode3"
:key=
"index"
:class=
"index === 0? 'oneContent': 'Content'"
>
<div
v-for=
"(item,index) in recode3"
:key=
"index"
:class=
"index === 0? 'oneContent': 'Content'"
>
<div
class=
"number"
>
{{
index
+
1
}}
</div>
<div
class=
"number"
>
{{
index
+
1
}}
</div>
<div
class=
"recordData"
>
<div
class=
"recordData"
>
<el-input
v-model=
"item.recordData"
/>
<el-input
v-model=
"item.recordData"
:disabled=
"controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1' "
/>
</div>
</div>
<div
class=
"Value"
>
{{
item
.
differenceValue
}}
</div>
<div
class=
"Value"
>
{{
item
.
differenceValue
}}
</div>
</div>
</div>
...
@@ -214,87 +222,87 @@
...
@@ -214,87 +222,87 @@
<div
class=
"threeRegion"
>
<div
class=
"threeRegion"
>
<div
class=
"leftRegion"
>
<div
class=
"leftRegion"
>
<el-form-item
label=
"firstHdN:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"firstHdN:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.firstHdN"
class=
"inspectJbAlInput"
/>
<el-input
v-model=
"inspectJbAl2o3List.firstHdN"
:disabled=
"this.controlsForm.controls ==='1'&& this.controlsForm.approveStatus ==='1' "
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"firstHdPn:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"firstHdPn:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.firstHdPn"
class=
"inspectJbAlInput"
/>
<el-input
v-model=
"inspectJbAl2o3List.firstHdPn"
:disabled=
"this.controlsForm.controls ==='1'&& this.controlsForm.approveStatus ==='1' "
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"firstHdRes:"
>
<el-form-item
label=
"firstHdRes:"
>
<el-radio-group
v-model=
"inspectJbAl2o3List.firstHdRes"
>
<el-radio-group
v-model=
"inspectJbAl2o3List.firstHdRes"
:disabled=
"this.controlsForm.controls ==='1'&& this.controlsForm.approveStatus ==='1' "
>
<el-radio
label=
"1"
>
合格
</el-radio>
<el-radio
label=
"1"
>
合格
</el-radio>
<el-radio
label=
"2"
>
不合格
</el-radio>
<el-radio
label=
"2"
>
不合格
</el-radio>
</el-radio-group>
</el-radio-group>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wxN:"
>
<el-form-item
label=
"wxN:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wxN
"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wxN"
class=
"inspectJbAlInput
"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wxPn:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"wxPn:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wxPn"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wxPn"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wxRes:"
>
<el-form-item
label=
"wxRes:"
>
<el-radio-group
v-model=
"inspectJbAl2o3List.wxRes"
>
<el-radio-group
class=
"radioGroupWxRes"
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wxRes"
>
<el-radio
label=
"1"
>
合格
</el-radio>
<el-radio
label=
"1"
>
合格
</el-radio>
<el-radio
label=
"2"
>
不合格
</el-radio>
<el-radio
label=
"2"
>
不合格
</el-radio>
</el-radio-group>
</el-radio-group>
</el-form-item>
</el-form-item>
<el-form-item
label=
"cyN:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"cyN:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.cyN"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.cyN"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"cyPn:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"cyPn:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.cyPn"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.cyPn"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"cyRes:"
>
<el-form-item
label=
"cyRes:"
>
<el-radio-group
v-model=
"inspectJbAl2o3List.cyRes"
>
<el-radio-group
class=
"radioGroupCyRes"
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.cyRes"
>
<el-radio
label=
"1"
>
合格
</el-radio>
<el-radio
label=
"1"
>
合格
</el-radio>
<el-radio
label=
"2"
>
不合格
</el-radio>
<el-radio
label=
"2"
>
不合格
</el-radio>
</el-radio-group>
</el-radio-group>
</el-form-item>
</el-form-item>
<el-form-item
label=
"finalRes:"
>
<el-form-item
label=
"finalRes:"
>
<el-radio-group
v-model=
"inspectJbAl2o3List.finalRes"
>
<el-radio-group
class=
"radioGroupfinalRes"
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.finalRes"
>
<el-radio
label=
"1"
>
合格
</el-radio>
<el-radio
label=
"1"
>
合格
</el-radio>
<el-radio
label=
"2"
>
不合格
</el-radio>
<el-radio
label=
"2"
>
不合格
</el-radio>
</el-radio-group>
</el-radio-group>
</el-form-item>
</el-form-item>
<el-form-item
label=
"noProject:"
>
<el-form-item
label=
"noProject:"
>
<el-input
v-model=
"inspectJbAl2o3List.no
Project"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.noProject"
class=
"inspectJbAlInput
Project"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wgKx:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"wgKx:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wgKx"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wgKx"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
</div>
</div>
<div
class=
"rightRegion"
>
<div
class=
"rightRegion"
>
<el-form-item
label=
"wgLlw:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"wgLlw:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wgLlw"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wgLlw"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wgWlw:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"wgWlw:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wgWlw"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wgWlw"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wgJbwq:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"wgJbwq:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wgJbwq"
class=
"inspectJbAlInput
"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wgJbwq"
class=
"inspectJbAlInputJbwq
"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wgZk:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"wgZk:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wgZk"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wgZk"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wgSh:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"wgSh:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wgSh"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wgSh"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wgBm:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"wgBm:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wgBm"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wgBm"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wgTc:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"wgTc:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wgTc"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wgTc"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wgQg:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"wgQg:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wgQg"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wgQg"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wgCq:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"wgCq:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wgCq"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wgCq"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wgFf:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"wgFf:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wgFf"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wgFf"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"wgTf:"
class=
"inspectJbAlInputBody"
>
<el-form-item
label=
"wgTf:"
class=
"inspectJbAlInputBody"
>
<el-input
v-model=
"inspectJbAl2o3List.wgTf"
class=
"inspectJbAlInput"
/>
<el-input
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectJbAl2o3List.wgTf"
class=
"inspectJbAlInput"
/>
</el-form-item>
</el-form-item>
<!--
<el-input
class=
"tableInput"
/>
-->
<!--
<el-input
class=
"tableInput"
/>
-->
</div>
</div>
...
@@ -309,7 +317,7 @@
...
@@ -309,7 +317,7 @@
<div
class=
"uploadLabel"
>
附件:
</div>
<div
class=
"uploadLabel"
>
附件:
</div>
<div
class=
"uploadImg"
>
<div
class=
"uploadImg"
>
<div
class=
"peviewImg"
>
<div
class=
"peviewImg"
>
<div
class=
"imgDisplay"
v-if=
"imgList.length > 0
"
>
<div
v-if=
"imgList.length > 0"
class=
"imgDisplay
"
>
<div
v-for=
"(item,index) in imgList"
:id=
"step(index)"
class=
"OneImg"
>
<div
v-for=
"(item,index) in imgList"
:id=
"step(index)"
class=
"OneImg"
>
<el-image
<el-image
class=
"OneElImg"
class=
"OneElImg"
...
@@ -318,19 +326,19 @@
...
@@ -318,19 +326,19 @@
:preview-src-list=
"item.srcList"
:preview-src-list=
"item.srcList"
@
click
.
stop=
"handleClickStop(index)"
@
click
.
stop=
"handleClickStop(index)"
/>
/>
<!-- 按钮区 -->
<!-- 按钮区 -->
<div
class=
"OneElImgButton"
>
<div
class=
"OneElImgButton"
v-if=
"!(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
>
<div>
<div>
<el-button
type=
"primary"
icon=
"el-icon-upload"
circle
@
click=
"downloadImage(item)"
></el-button
>
<el-button
type=
"primary"
icon=
"el-icon-upload"
circle
@
click=
"downloadImage(item)"
/
>
</div>
</div>
<div>
<div>
<el-button
type=
"danger"
icon=
"el-icon-delete"
circle
@
click=
"handleDelete(index)"
></el-button
>
<el-button
type=
"danger"
icon=
"el-icon-delete"
circle
@
click=
"handleDelete(index)"
/
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"uploadButton"
@
click=
"handleTakePhotos"
>
<div
v-if=
"!(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
class=
"uploadButton"
@
click=
"handleTakePhotos"
>
<div
class=
"uploadContent"
>
<div
class=
"uploadContent"
>
<div
class=
"imgContainer"
>
<div
class=
"imgContainer"
>
<img
class=
"img"
src=
"@/assets/image/shangchuan.png"
>
<img
class=
"img"
src=
"@/assets/image/shangchuan.png"
>
...
@@ -363,7 +371,7 @@
...
@@ -363,7 +371,7 @@
<div
class=
"inspectionResults"
>
<div
class=
"inspectionResults"
>
<el-form
:model=
"inspectInfoList"
label-width=
"42"
>
<el-form
:model=
"inspectInfoList"
label-width=
"42"
>
<el-form-item
label=
"检验结果:"
>
<el-form-item
label=
"检验结果:"
>
<el-radio-group
v-model=
"inspectInfoList.jcResult"
>
<el-radio-group
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
v-model=
"inspectInfoList.jcResult"
>
<el-radio
label=
"1"
>
合格
</el-radio>
<el-radio
label=
"1"
>
合格
</el-radio>
<el-radio
label=
"2"
>
不合格
</el-radio>
<el-radio
label=
"2"
>
不合格
</el-radio>
</el-radio-group>
</el-radio-group>
...
@@ -372,20 +380,21 @@
...
@@ -372,20 +380,21 @@
<el-input
<el-input
v-model=
"inspectInfoList.remarks"
v-model=
"inspectInfoList.remarks"
type=
"textarea"
type=
"textarea"
:disabled=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
:rows=
"4"
:rows=
"4"
placeholder=
"请输入备注"
placeholder=
"请输入备注"
/>
/>
</el-form-item>
</el-form-item>
</el-form>
</el-form>
</div>
</div>
<hr
class=
"twoHr"
>
<hr
class=
"twoHr"
v-if=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')"
>
<div
v-if=
"showPartIv"
class=
"partIv"
>
<div
v-if=
"showPartIv"
class=
"partIv"
>
<div
class=
"auditor"
>
审核人:
{{
inspectsForm
.
approveUser
}}
</div>
<div
class=
"auditor"
>
审核人:
{{
inspectsForm
.
approveUser
}}
</div>
<div
class=
"auditTime"
>
审核时间:
{{
inspectsForm
.
approveDate
}}
</div>
<div
class=
"auditTime"
>
审核时间:
{{
inspectsForm
.
approveDate
}}
</div>
<div
class=
"auditStatus"
>
审核状态:
{{
inspectsForm
.
approveStatus
}}
</div>
<div
class=
"auditStatus"
>
审核状态:
{{
inspectsForm
.
approveStatus
}}
</div>
</div>
</div>
<div
v-show=
"showAuditOpinion
"
class=
"auditOpinion"
>
<div
v-if=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')
"
class=
"auditOpinion"
>
<el-form
:model=
"inspectsForm"
>
<el-form
:model=
"inspectsForm"
>
<el-form-item
label=
"审核意见:"
label-width=
"42"
class=
"myForm"
>
<el-form-item
label=
"审核意见:"
label-width=
"42"
class=
"myForm"
>
<el-input
<el-input
...
@@ -397,13 +406,13 @@
...
@@ -397,13 +406,13 @@
</el-form-item>
</el-form-item>
</el-form>
</el-form>
</div>
</div>
<div
v-if=
"
showButton
"
class=
"submitButton"
>
<div
v-if=
"
(controlsForm.controls ==='2'&& controlsForm.approveStatus ==='0') || (controlsForm.controls ==='2'&& controlsForm.approveStatus ==='3')
"
class=
"submitButton"
>
<el-button
class=
"buttoon"
type=
"primary"
@
click=
"submitControl"
>
保存
</el-button>
<el-button
class=
"buttoon"
type=
"primary"
@
click=
"submitControl"
>
保存
</el-button>
<el-button
class=
"buttoon"
type=
"primary"
@
click=
"present"
>
提交
</el-button>
<el-button
class=
"buttoon"
type=
"primary"
@
click=
"present"
>
提交
</el-button>
</div>
</div>
<div
v-if=
"!showButton
"
class=
"submitButton"
>
<div
v-if=
"(controlsForm.controls ==='1'&& controlsForm.approveStatus ==='1')
"
class=
"submitButton"
>
<el-button
class=
"buttoon"
type=
"primary"
>
同意
</el-button>
<el-button
class=
"buttoon"
type=
"primary"
@
click=
"approve"
>
同意
</el-button>
<el-button
class=
"buttoon"
type=
"primary"
>
驳回
</el-button>
<el-button
class=
"buttoon"
type=
"primary"
@
click=
"reject"
>
驳回
</el-button>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -411,21 +420,25 @@
...
@@ -411,21 +420,25 @@
<
script
>
<
script
>
import
{
getToken
}
from
'@/utils/auth'
import
{
getToken
}
from
'@/utils/auth'
import
{
addIncomeInspectInfo
}
from
'@/api/oneTbale'
import
{
addIncomeInspectInfo
,
approveInformation
,
getIncomeInspectInfo
}
from
'@/api/oneTbale'
import
{
parseTime
}
from
'@/utils'
import
{
parseTime
}
from
'@/utils'
import
{
getInfo
}
from
'@/api/login'
import
{
getInfo
}
from
'@/api/login'
import
{
downLoadFile
}
from
"@/utils/checkList"
;
import
{
downLoadFile
}
from
'@/utils/checkList'
export
default
{
export
default
{
name
:
'CheckList'
,
name
:
'CheckList'
,
data
()
{
data
()
{
return
{
return
{
controlsForm
:
{
controls
:
'2'
,
approveStatus
:
'0'
},
imgList
:
[
imgList
:
[
{
{
businessId
:
1
,
businessId
:
1
,
url
:
'http://49.232.167.247:20010/eduServer/11/20240301/CD7D683B1CF24D8DBD933F0C60D5D8ED.png'
,
url
:
'http://49.232.167.247:20010/eduServer/11/20240301/CD7D683B1CF24D8DBD933F0C60D5D8ED.png'
,
srcList
:
[
'http://49.232.167.247:20010/eduServer/11/20240301/CD7D683B1CF24D8DBD933F0C60D5D8ED.png'
]
srcList
:
[
'http://49.232.167.247:20010/eduServer/11/20240301/CD7D683B1CF24D8DBD933F0C60D5D8ED.png'
]
}
,
}
// {
// {
// businessId: 2,
// businessId: 2,
// url: require('@/assets/image/cadTwo.png'),
// url: require('@/assets/image/cadTwo.png'),
...
@@ -486,9 +499,8 @@ export default {
...
@@ -486,9 +499,8 @@ export default {
// 审核部分
// 审核部分
inspectsForm
:
{
inspectsForm
:
{
approveUser
:
'XXX'
,
approveUser
:
'XXX'
,
approveNote
:
'XXXXX'
,
approveNote
:
''
,
approveDate
:
'2024-05-08'
,
approveDate
:
'2024-05-08'
approveStatus
:
'已审核'
},
},
// 表单二
// 表单二
inspectJbAl2o3List
:
{
inspectJbAl2o3List
:
{
...
@@ -539,16 +551,172 @@ export default {
...
@@ -539,16 +551,172 @@ export default {
recode3
:
[]
recode3
:
[]
}
}
},
},
// 路由跳转,是存储页面的值
beforeRouteLeave
(
to
,
from
,
next
)
{
const
obj
=
{
from3
:
this
.
controlsForm
,
from1
:
this
.
inspectInfoList
,
from2
:
this
.
inspectJbAl2o3List
,
recode1
:
this
.
recode1
,
recode2
:
this
.
recode2
,
recode3
:
this
.
recode3
}
this
.
$store
.
dispatch
(
'searchSave/searchParamsSet'
,
{
path
:
this
.
$route
.
path
,
param
:
obj
})
next
()
},
created
()
{
created
()
{
this
.
resetRecord
()
this
.
resetRecord
()
this
.
judgmentParam
()
this
.
judgmentParam
()
},
},
methods
:
{
methods
:
{
// 审核驳回
reject
()
{
const
obj
=
{
businessId
:
this
.
inspectInfoList
.
businessId
,
approveNote
:
this
.
inspectsForm
.
approveNote
,
approveStatus
:
'3'
}
approveInformation
(
obj
).
then
(
res
=>
{
console
.
log
(
'审核结果'
,
res
)
if
(
res
.
code
===
200
)
{
this
.
$message
.
error
(
'该审核已驳回'
)
this
.
$router
.
push
({
path
:
'/checkOneTbale'
})
}
})
},
// 审核通过
approve
()
{
const
obj
=
{
businessId
:
this
.
inspectInfoList
.
businessId
,
approveNote
:
this
.
inspectsForm
.
approveNote
,
approveStatus
:
'9'
}
approveInformation
(
obj
).
then
(
res
=>
{
console
.
log
(
'审核结果'
,
res
)
if
(
res
.
code
===
200
)
{
this
.
$message
.
success
(
'审核通过'
)
this
.
$router
.
push
({
path
:
'/checkOneTbale'
})
}
})
},
// 获取详情
getRecordInfo
(
id
)
{
getIncomeInspectInfo
(
id
).
then
(
response
=>
{
console
.
log
(
response
)
this
.
inspectInfoList
.
businessId
=
id
this
.
inspectInfoList
.
jcPn
=
response
.
data
.
jcPn
this
.
inspectInfoList
.
jcCj
=
response
.
data
.
jcCj
this
.
inspectInfoList
.
jcCode
=
response
.
data
.
jcCode
this
.
inspectInfoList
.
jcLot
=
response
.
data
.
jcLot
this
.
inspectInfoList
.
jcNum
=
response
.
data
.
jcNum
this
.
inspectInfoList
.
jcRank
=
response
.
data
.
jcRank
this
.
inspectInfoList
.
jcFacadeCy
=
response
.
data
.
jcFacadeCy
this
.
inspectInfoList
.
jcFacadeBl
=
response
.
data
.
jcFacadeBl
this
.
inspectInfoList
.
jcResult
=
response
.
data
.
jcResult
this
.
inspectInfoList
.
remarks
=
response
.
data
.
remarks
console
.
log
(
this
.
inspectInfoList
)
console
.
log
(
'-----------------------------------------------'
)
this
.
inspectJbAl2o3List
.
oneJcUser
=
response
.
data
.
oneJcUser
this
.
inspectJbAl2o3List
.
oneJcDate
=
response
.
data
.
oneJcDate
this
.
inspectJbAl2o3List
.
twoJcUser
=
response
.
data
.
twoJcUser
this
.
inspectJbAl2o3List
.
twoJcDate
=
response
.
data
.
twoJcDate
this
.
inspectJbAl2o3List
.
limitOne
=
response
.
data
.
limitOne
this
.
inspectJbAl2o3List
.
limitTwo
=
response
.
data
.
limitTwo
this
.
inspectJbAl2o3List
.
businessId
=
response
.
data
.
businessId
this
.
inspectJbAl2o3List
.
standardOne
=
response
.
data
.
standardOne
this
.
inspectJbAl2o3List
.
standardTwo
=
response
.
data
.
standardTwo
this
.
inspectJbAl2o3List
.
standardOneData
=
response
.
data
.
standardOneData
this
.
inspectJbAl2o3List
.
standardTwoData
=
response
.
data
.
standardTwoData
// this.inspectJbAl2o3List.recordData = response.data.recordData
this
.
inspectJbAl2o3List
.
inspector
=
response
.
data
.
inspector
this
.
inspectJbAl2o3List
.
firstHdN
=
response
.
data
.
firstHdN
this
.
inspectJbAl2o3List
.
firstHdPn
=
response
.
data
.
firstHdPn
this
.
inspectJbAl2o3List
.
firstHdRes
=
response
.
data
.
firstHdRes
this
.
inspectJbAl2o3List
.
wxN
=
response
.
data
.
wxN
this
.
inspectJbAl2o3List
.
wxPn
=
response
.
data
.
wxPn
this
.
inspectJbAl2o3List
.
wxRes
=
response
.
data
.
wxRes
this
.
inspectJbAl2o3List
.
cyN
=
response
.
data
.
cyN
this
.
inspectJbAl2o3List
.
cyPn
=
response
.
data
.
cyPn
this
.
inspectJbAl2o3List
.
cyRes
=
response
.
data
.
cyRes
this
.
inspectJbAl2o3List
.
finalRes
=
response
.
data
.
finalRes
this
.
inspectJbAl2o3List
.
noProject
=
response
.
data
.
noProject
this
.
inspectJbAl2o3List
.
wgKx
=
response
.
data
.
wgKx
this
.
inspectJbAl2o3List
.
wgLlw
=
response
.
data
.
wgLlw
this
.
inspectJbAl2o3List
.
wgWlw
=
response
.
data
.
wgWlw
this
.
inspectJbAl2o3List
.
wgJbwq
=
response
.
data
.
wgJbwq
this
.
inspectJbAl2o3List
.
wgZk
=
response
.
data
.
wgZk
this
.
inspectJbAl2o3List
.
wgSh
=
response
.
data
.
wgSh
this
.
inspectJbAl2o3List
.
wgBm
=
response
.
data
.
wgBm
this
.
inspectJbAl2o3List
.
wgTc
=
response
.
data
.
wgTc
this
.
inspectJbAl2o3List
.
wgQg
=
response
.
data
.
wgQg
this
.
inspectJbAl2o3List
.
wgCq
=
response
.
data
.
wgCq
this
.
inspectJbAl2o3List
.
wgFf
=
response
.
data
.
wgFf
this
.
inspectJbAl2o3List
.
wgTf
=
response
.
data
.
wgTf
this
.
inspectJbAl2o3List
.
limitData
=
response
.
data
.
limitData
this
.
inspectJbAl2o3List
.
ossId
=
response
.
data
.
ossId
// this.recode1.recordData =
// const qwe = []
// qwe =
// console.log(this.inspectJbAl2o3List.standardOneData.split(','))
// this.recode1.recordData = this.inspectJbAl2o3List.standardOneData.split(',')
this
.
getRecordList
(
this
.
inspectJbAl2o3List
.
standardOneData
.
split
(
','
))
this
.
getRecordTwoList
(
this
.
inspectJbAl2o3List
.
standardTwoData
.
split
(
','
))
this
.
getRecordThreeList
(
this
.
inspectJbAl2o3List
.
limitData
.
split
(
','
))
console
.
log
(
this
.
recode1
)
console
.
log
(
this
.
inspectJbAl2o3List
)
})
},
// 数组1
getRecordList
(
list1
)
{
for
(
let
i
=
0
;
i
<
10
;
i
++
)
{
this
.
recode1
[
i
].
recordData
=
list1
[
i
]
}
},
// 数组2
getRecordTwoList
(
list1
)
{
for
(
let
i
=
0
;
i
<
10
;
i
++
)
{
this
.
recode2
[
i
].
recordData
=
list1
[
i
]
}
},
// 数组3
getRecordThreeList
(
list1
)
{
for
(
let
i
=
0
;
i
<
10
;
i
++
)
{
this
.
recode3
[
i
].
recordData
=
list1
[
i
]
}
},
judgmentParam
()
{
judgmentParam
()
{
if
(
this
.
$route
.
query
.
businessId
!==
undefined
)
{
if
(
this
.
$route
.
query
.
businessId
!==
undefined
)
{
console
.
log
(
this
.
$route
.
query
.
businessId
)
console
.
log
(
this
.
$route
.
query
.
businessId
)
this
.
controlsForm
.
controls
=
this
.
$route
.
query
.
controls
this
.
controlsForm
.
approveStatus
=
this
.
$route
.
query
.
approveStatus
this
.
getRecordInfo
(
this
.
$route
.
query
.
businessId
)
}
else
{
if
(
this
.
$store
.
getters
.
searchParams
[
this
.
$route
.
path
])
{
const
{
searchParams
}
=
this
.
$store
.
getters
;
const
{
path
}
=
this
.
$route
const
param
=
JSON
.
parse
(
searchParams
[
path
])
// 保留着的查询条件
const
obj
=
{
...
param
}
this
.
inspectInfoList
=
obj
.
from1
this
.
inspectJbAl2o3List
=
obj
.
from2
this
.
recode1
=
obj
.
recode1
this
.
recode2
=
obj
.
recode2
this
.
recode3
=
obj
.
recode3
this
.
controlsForm
=
obj
.
from3
}
}
}
},
},
// splitString(recodeList){
// const splitrecord1 =[]
// for (let i = 0; i
<
recodeList
.
length
;
i
++
)
{
// = recodeList[i]
// }
// },
parseTime
,
parseTime
,
// 获取检验时间和检验人
// 获取检验时间和检验人
...
@@ -559,10 +727,10 @@ export default {
...
@@ -559,10 +727,10 @@ export default {
* @return:
* @return:
**/
**/
downloadImage
(
item
)
{
downloadImage
(
item
)
{
le
t
urlList
=
item
.
url
.
split
(
'/'
)
cons
t
urlList
=
item
.
url
.
split
(
'/'
)
console
.
log
(
'urlList'
,
urlList
)
console
.
log
(
'urlList'
,
urlList
)
let
fileName
=
urlList
[
urlList
.
length
-
1
]
const
fileName
=
urlList
[
urlList
.
length
-
1
]
console
.
log
(
'fileName'
,
fileName
)
console
.
log
(
'fileName'
,
fileName
)
const
obj
=
{
const
obj
=
{
downloadUrl
:
item
.
url
,
downloadUrl
:
item
.
url
,
fileName
:
fileName
fileName
:
fileName
...
@@ -609,16 +777,14 @@ export default {
...
@@ -609,16 +777,14 @@ export default {
// xhr.send();
// xhr.send();
},
},
/**
/**
* @description: 删除照片
* @description: 删除照片
* @author: gaoyu
* @author: gaoyu
* @param: index
* @param: index
* @return:
* @return:
**/
**/
handleDelete
(
index
){
handleDelete
(
index
)
{
this
.
imgList
.
splice
(
index
,
1
)
this
.
imgList
.
splice
(
index
,
1
)
},
},
/**
/**
* @description: 动态生成id
* @description: 动态生成id
...
@@ -637,17 +803,17 @@ export default {
...
@@ -637,17 +803,17 @@ export default {
tokenMsg
:
getToken
()
tokenMsg
:
getToken
()
}
}
this
.
$WebView
.
openCamera
(
params
).
then
(
res
=>
{
this
.
$WebView
.
openCamera
(
params
).
then
(
res
=>
{
console
.
log
(
'res'
,
res
)
console
.
log
(
'res'
,
res
)
this
.
imgUrlForm
=
JSON
.
parse
(
res
)
this
.
imgUrlForm
=
JSON
.
parse
(
res
)
console
.
log
(
'imgUrlForm'
,
this
.
imgUrlForm
)
console
.
log
(
'imgUrlForm'
,
this
.
imgUrlForm
)
le
t
obj
=
{
cons
t
obj
=
{
businessId
:
this
.
imgUrlForm
.
businessId
,
businessId
:
this
.
imgUrlForm
.
businessId
,
url
:
this
.
imgUrlForm
.
url
,
url
:
this
.
imgUrlForm
.
url
,
srcList
:
[]
srcList
:
[]
}
}
obj
.
srcList
.
push
(
this
.
imgUrlForm
.
url
)
obj
.
srcList
.
push
(
this
.
imgUrlForm
.
url
)
this
.
imgList
.
push
(
obj
)
this
.
imgList
.
push
(
obj
)
console
.
log
(
'imgList'
,
this
.
imgList
)
console
.
log
(
'imgList'
,
this
.
imgList
)
})
})
},
},
getInspect
()
{
getInspect
()
{
...
@@ -955,6 +1121,7 @@ export default {
...
@@ -955,6 +1121,7 @@ export default {
console
.
log
(
're'
,
response
)
console
.
log
(
're'
,
response
)
if
(
response
.
code
===
200
)
{
if
(
response
.
code
===
200
)
{
this
.
msgSuccess
(
'保存成功'
)
this
.
msgSuccess
(
'保存成功'
)
this
.
getRecordInfo
(
response
.
data
.
incomeInspectInfo
.
businessId
)
}
}
})
})
},
},
...
@@ -1980,7 +2147,7 @@ export default {
...
@@ -1980,7 +2147,7 @@ export default {
.inspectDate
{
.inspectDate
{
display
:
flex
;
display
:
flex
;
justify-content
:
space-between
;
justify-content
:
space-between
;
width
:
26
%
;
width
:
30
%
;
font-family
:
Microsoft
YaHei
,
Microsoft
YaHei-400
;
font-family
:
Microsoft
YaHei
,
Microsoft
YaHei-400
;
font-weight
:
400
;
font-weight
:
400
;
}
}
...
@@ -1996,7 +2163,7 @@ export default {
...
@@ -1996,7 +2163,7 @@ export default {
.inspectPerson
{
.inspectPerson
{
display
:
flex
;
display
:
flex
;
justify-content
:
space-between
;
justify-content
:
space-between
;
width
:
1
3
%
;
width
:
1
9
%
;
font-family
:
Microsoft
YaHei
,
Microsoft
YaHei-400
;
font-family
:
Microsoft
YaHei
,
Microsoft
YaHei-400
;
font-weight
:
400
;
font-weight
:
400
;
}
}
...
@@ -2116,7 +2283,22 @@ export default {
...
@@ -2116,7 +2283,22 @@ export default {
text-align
:
right
;
text-align
:
right
;
}
}
.inspectJbAlInput
{
.inspectJbAlInput
{
width
:
86%
;
width
:
85%
;
}
.inspectJbAlInputProject
{
width
:
84%
;
}
.inspectJbAlInputJbwq
{
width
:
85%
;
}
.radioGroupWxRes
{
margin-left
:
21px
;
}
.radioGroupCyRes
{
margin-left
:
24px
;
}
.radioGroupfinalRes
{
margin-left
:
10px
;
}
}
//height: 100%;
//height: 100%;
//border: 1px solid #d9d9d9;
//border: 1px solid #d9d9d9;
...
@@ -2132,6 +2314,9 @@ export default {
...
@@ -2132,6 +2314,9 @@ export default {
.inspectJbAlInput
{
.inspectJbAlInput
{
width
:
86%
;
width
:
86%
;
}
}
.inspectJbAlInputJbwq
{
width
:
85%
;
}
//height: 100%;
//height: 100%;
//border: 1px solid #d9d9d9;
//border: 1px solid #d9d9d9;
//border-radius: 4px;
//border-radius: 4px;
...
@@ -2175,7 +2360,6 @@ export default {
...
@@ -2175,7 +2360,6 @@ export default {
}
}
}
}
.twoImg
{
.twoImg
{
.twoElImg
{
.twoElImg
{
width
:
112px
;
width
:
112px
;
...
...
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