Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
patzn-cloud-web-back-soil
Overview
Overview
Details
Activity
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
wangweidong
patzn-cloud-web-back-soil
Commits
4bd71917
Commit
4bd71917
authored
Jun 16, 2020
by
wangweidong
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
b397bc68
97d919c8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
592 additions
and
47 deletions
+592
-47
Operation.vue
components/operation/Operation.vue
+114
-0
MeterAptitudeStandard.vue
pages/meter-aptitude/standard/MeterAptitudeStandard.vue
+1
-0
MeterCertificateCheck.vue
pages/meter-certificate/check/MeterCertificateCheck.vue
+11
-9
MeterCertificateIssue.vue
pages/meter-certificate/issue/MeterCertificateIssue.vue
+5
-2
MeterCertificateMake.vue
pages/meter-certificate/make/MeterCertificateMake.vue
+4
-2
MeterGoOutEntrust.vue
pages/meter-entrust/go-out-test/MeterGoOutEntrust.vue
+7
-4
MeterGoOutOperation.vue
pages/meter-entrust/go-out-test/MeterGoOutOperation.vue
+114
-0
MeterOutPersonalTask.vue
pages/meter-out/personal-task/MeterOutPersonalTask.vue
+11
-8
MeterReviewEntrust.vue
pages/meter-review/MeterReviewEntrust.vue
+10
-8
MeterSubcontractor.vue
pages/meter-subcontract/subcontractor/MeterSubcontractor.vue
+4
-3
HisRevision.vue
pages/meter-subcontract/subpackage-input/HisRevision.vue
+149
-0
MeterSubSampleManage.vue
...ter-subcontract/subpackage-input/MeterSubSampleManage.vue
+39
-7
MeterSubpackageInput.vue
...ter-subcontract/subpackage-input/MeterSubpackageInput.vue
+4
-2
SubResultInputEdit.vue
...meter-subcontract/subpackage-input/SubResultInputEdit.vue
+0
-0
UploadByReport.vue
pages/meter-subcontract/subpackage-input/UploadByReport.vue
+115
-0
MeterSubpackageTask.vue
...meter-subcontract/subpackage-task/MeterSubpackageTask.vue
+4
-2
No files found.
components/operation/Operation.vue
0 → 100644
View file @
4bd71917
<
template
>
<div>
<Modal
v-model=
"showModal"
width=
"900"
class=
"modal-footer-none zIndex-1100"
>
<p
slot=
"header"
>
操作日志
</p>
<div>
<Row>
<!--查询-->
<Col
span=
"24"
>
<Form
id=
"search-contract-record"
:label-width=
"70"
inline
onsubmit=
"return false"
>
<label
class=
"label-sign"
></label>
<Form-item
label=
"操作阶段:"
>
<Input
v-model=
"formObj.origin"
@
on-enter=
"_search"
placeholder=
"请输入操作阶段"
style=
"width: 200px"
clearable
/>
</Form-item>
<Form-item
class=
"search-btn"
>
<Button
@
click=
"_search"
type=
"primary"
>
搜索
</Button>
</Form-item>
</Form>
</Col>
<!-- 表格 -->
<Col
span=
"24"
>
<PTVXETable
ref=
"pageTable"
:tableHeight=
"tableHeight"
@
on-result-change=
"_tableResultChange"
:getPage=
"getPage"
hide-checkbox
>
<vxe-table-column
:field=
"item.key"
:title=
"item.title"
:min-width=
"item.width?item.width:200"
:fixed=
"item.fixed?item.fixed:undefined"
v-for=
"item in pageColumns"
:key=
"item.key"
>
<template
slot-scope=
"scope"
>
<span
v-if=
"item.key==='type'"
>
{{
scope
.
row
[
item
.
key
]
===
0
?
'流转'
:
scope
.
row
[
item
.
key
]
===
1
?
'退回'
:
scope
.
row
[
item
.
key
]
===
2
?
'更新'
:
scope
.
row
[
item
.
key
]
===
3
?
'转发'
:
'文件'
}}
</span>
<span
v-else-if=
"item.key==='ctime'"
>
{{
scope
.
row
[
item
.
key
]?
$dateformat
(
scope
.
row
[
item
.
key
],
'yyyy-mm-dd HH:MM:ss'
):
''
}}
</span>
<span
v-else
>
{{
scope
.
row
[
item
.
key
]
}}
</span>
</
template
>
</vxe-table-column>
</PTVXETable>
</Col>
</Row>
</div>
</Modal>
</div>
</template>
<
script
>
/**
* 操作日志-委托
*/
import
{
meterEntrust
}
from
'../../api'
export
default
{
data
()
{
return
{
showModal
:
false
,
getPage
:
{},
pageColumns
:
[
{
title
:
'操作类型'
,
key
:
'type'
,
width
:
80
},
{
title
:
'操作阶段'
,
key
:
'origin'
,
width
:
120
},
{
title
:
'目标阶段'
,
key
:
'target'
,
width
:
120
},
{
title
:
'操作人'
,
key
:
'operator'
,
width
:
80
},
{
title
:
'操作时间'
,
key
:
'ctime'
,
width
:
150
},
{
title
:
'操作原因'
,
key
:
'remark'
},
{
title
:
'责任人'
,
key
:
'liable'
,
width
:
80
}
],
formObj
:
{
origin
:
''
,
contractId
:
''
}
}
},
computed
:
{
tableHeight
:
function
()
{
return
this
.
$tableHeight
(
'tableModal'
)
}
},
methods
:
{
_open
(
contractId
)
{
this
.
showModal
=
true
this
.
formObj
.
contractId
=
contractId
this
.
formObj
.
origin
=
''
this
.
_page
()
},
_page
:
async
function
()
{
console
.
log
(
'要传的参数'
)
console
.
log
(
this
.
formObj
)
const
result
=
await
meterEntrust
.
pageOutTaskOperation
(
this
.
formObj
)
console
.
log
(
result
)
if
(
result
)
{
this
.
getPage
=
result
}
// this.$refs.pageTable._page(
// 'search-contract-record',
// 'FoodContractRecord/page',
// this.$serializeFormSearch(this.formObj)
// )
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
case
'page'
:
this
.
getPage
=
this
.
$store
.
state
.
FoodContractRecord
.
page
break
case
'changeSize'
:
this
.
_page
()
break
}
},
_search
()
{
this
.
$refs
.
pageTable
.
_pageChange
(
1
)
}
}
}
</
script
>
pages/meter-aptitude/standard/MeterAptitudeStandard.vue
View file @
4bd71917
...
...
@@ -152,6 +152,7 @@ export default {
this
.
getPage
=
result
console
.
log
(
123456789
)
console
.
log
(
this
.
getPage
)
this
.
$refs
.
pageTable
.
_hideLoading
()
}
},
_formSearch
()
{
...
...
pages/meter-certificate/check/MeterCertificateCheck.vue
View file @
4bd71917
...
...
@@ -6,29 +6,29 @@
<Row>
<!--查询-->
<Col
span=
"24"
style=
"margin-top: 10px"
>
<Form
v-show=
"searchOpen"
id=
"formId
"
:label-width=
"90"
inline
onsubmit=
"return false"
>
<Form
id=
"formId"
v-show=
"searchOpen
"
:label-width=
"90"
inline
onsubmit=
"return false"
>
<label
class=
"label-sign"
></label>
<Form-item
class=
"search-item"
label=
"实验室名称:"
>
<Input
v-model=
"formObj.name"
name=
"name"
placeholder=
"请输入实验室名称"
clearable
@
on-enter=
"_formSearch"
/>
<Input
v-model=
"formObj.name"
@
on-enter=
"_formSearch"
name=
"name"
placeholder=
"请输入实验室名称"
clearable
/>
</Form-item>
<Form-item
class=
"search-item"
label=
"资质:"
>
<Input
v-model=
"formObj.aptitude"
name=
"aptitude"
placeholder=
"请输入资质"
clearable
@
on-enter=
"_formSearch"
/>
<Input
v-model=
"formObj.aptitude"
@
on-enter=
"_formSearch"
name=
"aptitude"
placeholder=
"请输入资质"
clearable
/>
</Form-item>
<Form-item
class=
"search-btn"
>
<Button
type=
"primary"
@
click=
"_formSearch
"
>
搜索
</Button>
<Button
@
click=
"_formSearch"
type=
"primary
"
>
搜索
</Button>
</Form-item>
</Form>
</Col>
<!--操作-->
<Col
span=
"24"
>
<btn-list
:msg=
"btn"
:open=
"searchOpen"
:show-search-btn=
"true"
class=
"contHide
"
@
on-result-change=
"_btnClick
"
></btn-list>
<btn-list
:msg=
"btn"
:open=
"searchOpen"
:show-search-btn=
"true"
@
on-result-change=
"_btnClick
"
class=
"contHide
"
></btn-list>
</Col>
<!--表格-->
<Col
span=
"24"
>
<PTVXETable
ref=
"pageTable"
:table-height=
"tableHeight"
:form-id=
"formId"
:loading=
"true"
:get-page=
"getPage"
:icon-msg=
"iconMsg"
select-data
@
on-result-change=
"_tableResultChange"
>
:get-page=
"getPage"
:icon-msg=
"iconMsg"
@
on-result-change=
"_tableResultChange"
select-data
>
<vxe-table-column
v-for=
"item in pageColumns"
:key=
"item.key"
...
...
@@ -46,13 +46,15 @@
</div>
</div>
<Reason
ref=
"reasonModal"
@
on-result-change=
"_reasonResult"
></Reason>
<operationModal
ref=
"operationModal"
></operationModal>
</div>
</template>
<
script
>
import
{
meterSample
}
from
'../../../api'
import
Reason
from
'../../../components/base/Reason'
import
operationModal
from
'../../../components/operation/Operation'
export
default
{
components
:
{
Reason
},
components
:
{
Reason
,
operationModal
},
data
()
{
return
{
currentComponent
:
''
,
...
...
@@ -251,7 +253,7 @@ export default {
}
},
_record
(
id
)
{
this
.
$refs
.
ref
Modal
.
_open
(
id
)
this
.
$refs
.
operation
Modal
.
_open
(
id
)
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
...
...
pages/meter-certificate/issue/MeterCertificateIssue.vue
View file @
4bd71917
...
...
@@ -45,12 +45,15 @@
</Row>
</div>
</div>
<operationModal
ref=
"operationModal"
></operationModal>
</div>
</template>
<
script
>
import
{
meterSample
}
from
'../../../api'
import
operationModal
from
'../../../components/operation/Operation'
export
default
{
components
:
{},
components
:
{
operationModal
},
data
()
{
return
{
currentComponent
:
''
,
...
...
@@ -204,7 +207,7 @@ export default {
this
.
$refs
.
personModal
.
_open
(
data
.
id
)
},
_record
(
id
)
{
this
.
$refs
.
ref
Modal
.
_open
(
id
)
this
.
$refs
.
operation
Modal
.
_open
(
id
)
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
...
...
pages/meter-certificate/make/MeterCertificateMake.vue
View file @
4bd71917
...
...
@@ -48,15 +48,17 @@
<CreateReport
ref=
"CreateReport"
></CreateReport>
<CarManage
ref=
"carEdit"
></CarManage>
<InstruMentEdit
ref=
"InstruEdit"
></InstruMentEdit>
<operationModal
ref=
"operationModal"
></operationModal>
</div>
</template>
<
script
>
import
{
meterSample
}
from
'../../../api'
import
operationModal
from
'../../../components/operation/Operation'
import
CreateReport
from
'./CreateReport'
import
CarManage
from
'./CarManage'
import
InstruMentEdit
from
'./InstrumentEdit'
export
default
{
components
:
{
CreateReport
,
CarManage
,
InstruMentEdit
},
components
:
{
CreateReport
,
CarManage
,
InstruMentEdit
,
operationModal
},
data
()
{
return
{
currentComponent
:
''
,
...
...
@@ -263,7 +265,7 @@ export default {
}
},
_record
(
id
)
{
this
.
$refs
.
ref
Modal
.
_open
(
id
)
this
.
$refs
.
operation
Modal
.
_open
(
id
)
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
...
...
pages/meter-entrust/go-out-test/MeterGoOutEntrust.vue
View file @
4bd71917
...
...
@@ -47,13 +47,15 @@
</div>
<MeterSubcontractorEdit
ref=
"editSubcontractorModal"
@
on-result-change=
"_formSearch"
></MeterSubcontractorEdit>
<operationModal
ref=
"operationModal"
></operationModal>
</div>
</template>
<
script
>
import
{
meterEntrust
}
from
'../../../api'
import
MeterSubcontractorEdit
from
'./MeterGoOutTestEdit'
import
operationModal
from
'./MeterGoOutOperation'
export
default
{
components
:
{
MeterSubcontractorEdit
},
components
:
{
MeterSubcontractorEdit
,
operationModal
},
data
()
{
return
{
currentComponent
:
''
,
...
...
@@ -182,13 +184,14 @@ export default {
this
.
_deleteByIds
([
data
.
id
])
break
case
'操作日志'
:
this
.
_record
(
data
.
id
)
this
.
_record
(
data
)
break
}
})
},
_record
(
id
)
{
this
.
$refs
.
refModal
.
_open
(
id
)
_record
(
data
)
{
console
.
log
(
data
)
this
.
$refs
.
operationModal
.
_open
(
data
.
id
)
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
...
...
pages/meter-entrust/go-out-test/MeterGoOutOperation.vue
0 → 100644
View file @
4bd71917
<
template
>
<div>
<Modal
v-model=
"showModal"
width=
"900"
class=
"modal-footer-none zIndex-1100"
>
<p
slot=
"header"
>
操作日志
</p>
<div>
<Row>
<!--查询-->
<Col
span=
"24"
>
<Form
id=
"search-contract-record"
:label-width=
"70"
inline
onsubmit=
"return false"
>
<label
class=
"label-sign"
></label>
<Form-item
label=
"操作阶段:"
>
<Input
v-model=
"formObj.origin"
@
on-enter=
"_search"
placeholder=
"请输入操作阶段"
style=
"width: 200px"
clearable
/>
</Form-item>
<Form-item
class=
"search-btn"
>
<Button
@
click=
"_search"
type=
"primary"
>
搜索
</Button>
</Form-item>
</Form>
</Col>
<!-- 表格 -->
<Col
span=
"24"
>
<PTVXETable
ref=
"pageTable"
:tableHeight=
"tableHeight"
@
on-result-change=
"_tableResultChange"
:getPage=
"getPage"
hide-checkbox
>
<vxe-table-column
:field=
"item.key"
:title=
"item.title"
:min-width=
"item.width?item.width:200"
:fixed=
"item.fixed?item.fixed:undefined"
v-for=
"item in pageColumns"
:key=
"item.key"
>
<template
slot-scope=
"scope"
>
<span
v-if=
"item.key==='type'"
>
{{
scope
.
row
[
item
.
key
]
===
0
?
'流转'
:
scope
.
row
[
item
.
key
]
===
1
?
'退回'
:
scope
.
row
[
item
.
key
]
===
2
?
'更新'
:
scope
.
row
[
item
.
key
]
===
3
?
'转发'
:
'文件'
}}
</span>
<span
v-else-if=
"item.key==='ctime'"
>
{{
scope
.
row
[
item
.
key
]?
$dateformat
(
scope
.
row
[
item
.
key
],
'yyyy-mm-dd HH:MM:ss'
):
''
}}
</span>
<span
v-else
>
{{
scope
.
row
[
item
.
key
]
}}
</span>
</
template
>
</vxe-table-column>
</PTVXETable>
</Col>
</Row>
</div>
</Modal>
</div>
</template>
<
script
>
/**
* 操作日志-委托
*/
import
{
meterEntrust
}
from
'../../../api'
export
default
{
data
()
{
return
{
showModal
:
false
,
getPage
:
{},
pageColumns
:
[
{
title
:
'操作类型'
,
key
:
'type'
,
width
:
80
},
{
title
:
'操作阶段'
,
key
:
'origin'
,
width
:
120
},
{
title
:
'目标阶段'
,
key
:
'target'
,
width
:
120
},
{
title
:
'操作人'
,
key
:
'operator'
,
width
:
80
},
{
title
:
'操作时间'
,
key
:
'ctime'
,
width
:
150
},
{
title
:
'操作原因'
,
key
:
'remark'
},
{
title
:
'责任人'
,
key
:
'liable'
,
width
:
80
}
],
formObj
:
{
origin
:
''
,
contractId
:
''
}
}
},
computed
:
{
tableHeight
:
function
()
{
return
this
.
$tableHeight
(
'tableModal'
)
}
},
methods
:
{
_open
(
contractId
)
{
this
.
showModal
=
true
this
.
formObj
.
contractId
=
contractId
this
.
formObj
.
origin
=
''
this
.
_page
()
},
_page
:
async
function
()
{
console
.
log
(
'要传的参数'
)
console
.
log
(
this
.
formObj
)
const
result
=
await
meterEntrust
.
pageOutTaskOperation
(
this
.
formObj
)
console
.
log
(
result
)
if
(
result
)
{
this
.
getPage
=
result
}
// this.$refs.pageTable._page(
// 'search-contract-record',
// 'FoodContractRecord/page',
// this.$serializeFormSearch(this.formObj)
// )
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
case
'page'
:
this
.
getPage
=
this
.
$store
.
state
.
FoodContractRecord
.
page
break
case
'changeSize'
:
this
.
_page
()
break
}
},
_search
()
{
this
.
$refs
.
pageTable
.
_pageChange
(
1
)
}
}
}
</
script
>
pages/meter-out/personal-task/MeterOutPersonalTask.vue
View file @
4bd71917
...
...
@@ -6,24 +6,24 @@
<Row>
<!--查询-->
<Col
span=
"24"
style=
"margin-top: 10px"
>
<Form
v-show=
"searchOpen"
id=
"formId
"
:label-width=
"90"
inline
onsubmit=
"return false"
>
<Form
id=
"formId"
v-show=
"searchOpen
"
:label-width=
"90"
inline
onsubmit=
"return false"
>
<label
class=
"label-sign"
></label>
<Form-item
class=
"search-item"
label=
"实验室名称:"
>
<Input
v-model=
"formObj.name"
name=
"name"
placeholder=
"请输入实验室名称"
clearable
@
on-enter=
"_formSearch"
/>
<Input
v-model=
"formObj.name"
@
on-enter=
"_formSearch"
name=
"name"
placeholder=
"请输入实验室名称"
clearable
/>
</Form-item>
<Form-item
class=
"search-item"
label=
"资质:"
>
<Input
v-model=
"formObj.aptitude"
name=
"aptitude"
placeholder=
"请输入资质"
clearable
@
on-enter=
"_formSearch"
/>
<Input
v-model=
"formObj.aptitude"
@
on-enter=
"_formSearch"
name=
"aptitude"
placeholder=
"请输入资质"
clearable
/>
</Form-item>
<Form-item
class=
"search-btn"
>
<Button
type=
"primary"
@
click=
"_formSearch
"
>
搜索
</Button>
<Button
@
click=
"_formSearch"
type=
"primary
"
>
搜索
</Button>
</Form-item>
</Form>
</Col>
<!--操作-->
<Col
span=
"24"
>
<btn-list
:msg=
"btn"
:open=
"searchOpen"
:show-search-btn=
"true"
class=
"contHide
"
@
on-result-change=
"_btnClick
"
></btn-list>
<btn-list
:msg=
"btn"
:open=
"searchOpen"
:show-search-btn=
"true"
@
on-result-change=
"_btnClick
"
class=
"contHide
"
></btn-list>
</Col>
<!--表格-->
<Col
span=
"24"
>
...
...
@@ -45,6 +45,7 @@
</Row>
</div>
</div>
<operationModal
ref=
"operationModal"
></operationModal>
<SelEquip
ref=
"SelEquip"
@
on-result-change=
"_equipSelectBack"
></SelEquip>
<CarManage
ref=
"carEdit"
></CarManage>
<InstruMentEdit
ref=
"InstruEdit"
></InstruMentEdit>
...
...
@@ -55,6 +56,7 @@
<
script
>
import
{
meterDevice
,
meterSample
}
from
'../../../api'
import
SelEquip
from
'../../../components/select-equip/SelEquip'
import
operationModal
from
'../../../components/operation/Operation'
import
MeterSubcontractorEdit
from
'./MeterGoOutTestEdit'
import
CarManage
from
'./CarManage'
import
MeterPersonItemTaskManage
from
'./MeterPersonItemTaskManage'
...
...
@@ -65,7 +67,8 @@ export default {
CarManage
,
MeterPersonItemTaskManage
,
SelEquip
,
InstruMentEdit
InstruMentEdit
,
operationModal
},
data
()
{
return
{
...
...
@@ -261,7 +264,7 @@ export default {
},
_record
(
id
)
{
this
.
$refs
.
ref
Modal
.
_open
(
id
)
this
.
$refs
.
operation
Modal
.
_open
(
id
)
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
...
...
pages/meter-review/MeterReviewEntrust.vue
View file @
4bd71917
...
...
@@ -6,24 +6,24 @@
<Row>
<!--查询-->
<Col
span=
"24"
style=
"margin-top: 10px"
>
<Form
v-show=
"searchOpen"
id=
"formId
"
:label-width=
"90"
inline
onsubmit=
"return false"
>
<Form
id=
"formId"
v-show=
"searchOpen
"
:label-width=
"90"
inline
onsubmit=
"return false"
>
<label
class=
"label-sign"
></label>
<Form-item
class=
"search-item"
label=
"实验室名称:"
>
<Input
v-model=
"formObj.name"
name=
"name"
placeholder=
"请输入实验室名称"
clearable
@
on-enter=
"_formSearch"
/>
<Input
v-model=
"formObj.name"
@
on-enter=
"_formSearch"
name=
"name"
placeholder=
"请输入实验室名称"
clearable
/>
</Form-item>
<Form-item
class=
"search-item"
label=
"资质:"
>
<Input
v-model=
"formObj.aptitude"
name=
"aptitude"
placeholder=
"请输入资质"
clearable
@
on-enter=
"_formSearch"
/>
<Input
v-model=
"formObj.aptitude"
@
on-enter=
"_formSearch"
name=
"aptitude"
placeholder=
"请输入资质"
clearable
/>
</Form-item>
<Form-item
class=
"search-btn"
>
<Button
type=
"primary"
@
click=
"_formSearch
"
>
搜索
</Button>
<Button
@
click=
"_formSearch"
type=
"primary
"
>
搜索
</Button>
</Form-item>
</Form>
</Col>
<!--操作-->
<Col
span=
"24"
>
<btn-list
:msg=
"btn"
:open=
"searchOpen"
:show-search-btn=
"true"
class=
"contHide
"
@
on-result-change=
"_btnClick
"
></btn-list>
<btn-list
:msg=
"btn"
:open=
"searchOpen"
:show-search-btn=
"true"
@
on-result-change=
"_btnClick
"
class=
"contHide
"
></btn-list>
</Col>
<!--表格-->
<Col
span=
"24"
>
...
...
@@ -47,14 +47,16 @@
</div>
<MeterSampleManage
ref=
"meterSampleManageModal"
@
on-result-change=
"_componentResult"
></MeterSampleManage>
<MeterEntrustDetail
ref=
"meterSampleEdit"
@
on-result-change=
"_componentResult"
></MeterEntrustDetail>
<Operation
ref=
"operation"
></Operation>
</div>
</template>
<
script
>
import
{
meterEntrust
,
meterSubcontractor
}
from
'../../api'
import
Operation
from
'../../components/operation/Operation'
import
MeterSampleManage
from
'./MeterSampleManage'
import
MeterEntrustDetail
from
'./MeterEntrustDetail'
export
default
{
components
:
{
MeterSampleManage
,
MeterEntrustDetail
},
components
:
{
MeterSampleManage
,
MeterEntrustDetail
,
Operation
},
data
()
{
return
{
currentComponent
:
'FoodSampleGovern'
,
...
...
@@ -212,7 +214,7 @@ export default {
}
},
_record
(
id
)
{
this
.
$refs
.
refModal
.
_open
(
id
)
this
.
$refs
.
operation
.
_open
(
id
)
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
...
...
pages/meter-subcontract/subcontractor/MeterSubcontractor.vue
View file @
4bd71917
...
...
@@ -45,15 +45,16 @@
</Row>
</div>
</div>
<operationModal
ref=
"operationModal"
></operationModal>
<MeterSubcontractorEdit
ref=
"editSubcontractorModal"
@
on-result-change=
"_formSearch"
></MeterSubcontractorEdit>
</div>
</template>
<
script
>
import
{
meterSubcontractor
}
from
'../../../api'
import
operationModal
from
'../../../components/operation/Operation'
import
MeterSubcontractorEdit
from
'./MeterSubcontractorEdit'
export
default
{
components
:
{
MeterSubcontractorEdit
},
components
:
{
MeterSubcontractorEdit
,
operationModal
},
data
()
{
return
{
currentComponent
:
''
,
...
...
@@ -157,7 +158,7 @@ export default {
})
},
_record
(
id
)
{
this
.
$refs
.
ref
Modal
.
_open
(
id
)
this
.
$refs
.
operation
Modal
.
_open
(
id
)
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
...
...
pages/meter-subcontract/subpackage-input/HisRevision.vue
0 → 100644
View file @
4bd71917
<
template
>
<div>
<Modal
v-model=
"showModal"
width=
"1200"
class=
"modal-footer-none zIndex-1000"
>
<p
slot=
"header"
>
历史版本
</p>
<Row>
<Col
span=
"24"
>
<PTVXETable
ref=
"pageTable"
:pageColumns=
"pageColumns"
:tableHeight=
"tableHeight"
@
on-result-change=
"_tableResultChange"
:getPage=
"getPage"
:iconMsg=
"iconMsg"
hide-checkbox
>
<vxe-table-column
:field=
"item.key"
:title=
"item.title"
:min-width=
"item.width?item.width:200"
:fixed=
"item.fixed?item.fixed:undefined"
v-for=
"item in pageColumns"
:key=
"item.key"
sortable
>
<template
slot-scope=
"scope"
>
<span
v-if=
"item.dateTime"
>
{{
scope
.
row
[
item
.
key
]?
$dateformat
(
scope
.
row
[
item
.
key
],
'yyyy-mm-dd HH:MM:ss'
):
''
}}
</span>
<span
v-else
>
{{
scope
.
row
[
item
.
key
]
}}
</span>
</
template
>
</vxe-table-column>
</PTVXETable>
</Col>
</Row>
</Modal>
</div>
</template>
<
script
>
/**
* 报告的历史版本
*/
import
global
from
'../../../api/config'
// import { meterSample } from '../../../api'
export
default
{
data
()
{
return
{
iconMsg
:
[],
checkOut
:
[{
type
:
'arrow-return-left'
,
id
:
''
,
name
:
'签入'
}],
defVal
:
[
{
type
:
'android-image'
,
id
:
''
,
name
:
'预览'
},
{
type
:
'ios-download'
,
id
:
''
,
name
:
'下载'
}
],
pageColumns
:
[
{
title
:
'报告编号'
,
key
:
'reportSn'
,
width
:
180
},
{
title
:
'变更人'
,
key
:
'maker'
},
{
title
:
'变更时间'
,
key
:
'ctime'
,
width
:
240
,
dateTime
:
true
},
{
title
:
'版本'
,
key
:
'version'
}
],
getPage
:
{},
reportId
:
''
,
showModal
:
false
}
},
computed
:
{
tableHeight
:
function
()
{
return
this
.
$tableHeight
(
'tableModal'
)
}
},
methods
:
{
_open
(
reportId
,
reportType
)
{
this
.
showModal
=
true
this
.
reportId
=
reportId
this
.
iconMsg
=
[]
// 报告编制、报告档案模块调用
if
(
reportType
===
'FOOD_REPORT_MAKE'
||
reportType
===
'FOOD_REPORT_MANAGE'
)
{
this
.
iconMsg
=
this
.
defVal
.
concat
(
this
.
checkOut
)
}
else
{
this
.
iconMsg
=
this
.
defVal
}
this
.
_page
()
},
_page
()
{
const
data
=
{
reportId
:
this
.
reportId
}
// this.$refs.pageTable._page('', 'FoodSampleReportDetail/page', data)
console
.
log
(
data
)
// const result = meterSample.pageHis(data)
// console.log('result', result)
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
case
'page'
:
this
.
getPage
=
this
.
$store
.
state
.
FoodSampleReportDetail
.
page
break
case
'iconClick'
:
this
.
_iconClick
(
data
.
name
,
data
.
rowData
)
break
case
'changeSize'
:
this
.
_page
()
break
}
},
_iconClick
(
res
,
data
)
{
switch
(
res
)
{
case
'预览'
:
this
.
_viewReport
(
data
.
id
)
break
case
'下载'
:
this
.
_download
(
data
.
id
)
break
case
'签入'
:
this
.
_checkOut
(
data
.
id
)
break
}
},
// 下载
_download
(
id
)
{
window
.
open
(
global
.
baseURL
+
'/food/v1/sample_report/download_by_report_id/'
+
id
,
'_blank'
)
},
// 预览
_viewReport
(
id
)
{
this
.
$store
.
dispatch
(
'FoodSampleReport/getByPreviewId'
,
id
).
then
(()
=>
{
const
data
=
this
.
$store
.
state
.
FoodSampleReport
.
model
if
(
data
!==
undefined
)
{
this
.
$openWindowModeless
({
objectKey
:
data
.
objectKey
,
id
:
id
,
isReport
:
0
})
}
})
},
_checkOut
(
id
)
{
this
.
$Modal
.
confirm
({
title
:
'提示'
,
content
:
'确定该操作?'
,
onOk
:
()
=>
{
this
.
$store
.
dispatch
(
'FoodSampleReportDetail/checkOut'
,
{
id
})
.
then
(()
=>
{
if
(
this
.
$store
.
state
.
FoodSampleReportDetail
.
success
)
{
this
.
$Message
.
success
(
'操作成功!'
)
this
.
_page
()
this
.
$emit
(
'on-result-change'
)
}
})
}
})
}
}
}
</
script
>
pages/meter-subcontract/subpackage-input/MeterSubSampleManage.vue
View file @
4bd71917
...
...
@@ -10,24 +10,24 @@
<Form
id=
"formId"
:label-width=
"80"
inline
onsubmit=
"return false"
>
<label
class=
"label-sign"
></label>
<Form-item
label=
"样品名称:"
class=
"search-item"
>
<Input
v-model=
"formObj.name"
placeholder=
"请输入样品名称"
clearable
@
on-enter=
"_formSearch"
/>
<Input
v-model=
"formObj.name"
@
on-enter=
"_formSearch"
placeholder=
"请输入样品名称"
clearable
/>
</Form-item>
<Form-item
label=
"样品编号:"
class=
"search-item"
>
<Input
v-model=
"formObj.code"
placeholder=
"请输入样品编号"
clearable
@
on-enter=
"_formSearch"
/>
<Input
v-model=
"formObj.code"
@
on-enter=
"_formSearch"
placeholder=
"请输入样品编号"
clearable
/>
</Form-item>
<Form-item
class=
"search-btn"
style=
"margin-left: -10px"
>
<Button
type=
"primary"
@
click=
"_formSearch
"
>
搜索
</Button>
<Button
@
click=
"_formSearch"
type=
"primary
"
>
搜索
</Button>
</Form-item>
</Form>
</Col>
<Col
span=
"24"
>
<btn-list
:msg=
"btn"
:open=
"searchOpen"
:show-search-btn=
"true"
class=
"contHide
"
@
on-result-change=
"_btnClick
"
></btn-list>
<btn-list
:msg=
"btn"
:open=
"searchOpen"
:show-search-btn=
"true"
@
on-result-change=
"_btnClick
"
class=
"contHide
"
></btn-list>
</Col>
<Col
span=
"24"
>
<PTVXETable
ref=
"pageTable"
:table-height=
"tableHeight"
:form-id=
"formId"
:get-page=
"getPage"
:icon-msg=
"iconMsg"
select-data
@
on-result-change=
"_tableResultChange"
>
:icon-msg=
"iconMsg"
@
on-result-change=
"_tableResultChange"
select-data
>
<vxe-table-column
v-for=
"item in pageColumns"
:key=
"item.key"
...
...
@@ -61,16 +61,25 @@
</Modal>
<MeterSubSampleEdit
ref=
"batchEditModal"
@
on-result-change=
"_page"
></MeterSubSampleEdit>
<SubOutWarehouse
ref=
"OutWarehouseModal"
></SubOutWarehouse>
<SubResultInput
ref=
"ResultInputModal"
></SubResultInput>
<UploadByReport
ref=
"UploadModal"
></UploadByReport>
<HisRevision
ref=
"HisModal"
></HisRevision>
</div>
</template>
<
script
>
import
{
meterSample
}
from
'../../../api'
import
MeterSubSampleEdit
from
'./MeterSubSampleEdit'
import
SubOutWarehouse
from
'./SubOutWarehouse'
import
SubResultInput
from
'./SubResultInputEdit'
import
UploadByReport
from
'./UploadByReport'
import
HisRevision
from
'./HisRevision'
export
default
{
components
:
{
MeterSubSampleEdit
,
SubOutWarehouse
SubOutWarehouse
,
SubResultInput
,
UploadByReport
,
HisRevision
// FoodSampleGovernDetail,
// CopyModal,
// FoodSampleGovernLYEdits
...
...
@@ -89,6 +98,9 @@ export default {
// {id: '', name: '删除'},
// ],
iconMsg
:
[
{
type
:
'md-create'
,
id
:
''
,
name
:
'检测结果录入'
},
{
type
:
'ios-list'
,
id
:
''
,
name
:
'历史版本'
},
{
type
:
'ios-cloud-upload'
,
id
:
''
,
name
:
'上传'
},
{
type
:
'compose'
,
id
:
''
,
name
:
'编辑'
},
{
type
:
'ios-copy'
,
id
:
''
,
name
:
'复制'
,
componentName
:
'CopyModal'
},
{
type
:
'trash-a'
,
id
:
''
,
name
:
'删除'
}
...
...
@@ -124,6 +136,7 @@ export default {
}
],
formId
:
'meterReviewSampleManageFormId'
,
reportType
:
'FOOD_REPORT_MAKE'
,
showModal
:
false
,
modalTitle
:
'管理样品'
,
selectIds
:
[],
...
...
@@ -228,6 +241,15 @@ export default {
this
.
currentComponent
=
componentName
this
.
$nextTick
(
function
()
{
switch
(
res
)
{
case
'历史版本'
:
this
.
_HisEdit
(
data
)
break
case
'上传'
:
this
.
_upload
(
data
)
break
case
'检测结果录入'
:
this
.
_resultModal
(
data
)
break
case
'编辑'
:
localStorage
.
setItem
(
'type'
,
data
.
type
)
if
(
data
.
type
===
2
)
{
...
...
@@ -248,6 +270,16 @@ export default {
}
})
},
_HisEdit
(
data
)
{
this
.
$refs
.
HisModal
.
_open
(
data
.
id
,
this
.
reportType
)
},
_upload
(
data
)
{
this
.
$refs
.
UploadModal
.
_open
(
data
.
id
)
},
_resultModal
(
data
)
{
console
.
log
(
data
.
id
)
this
.
$refs
.
ResultInputModal
.
_open
(
data
.
id
)
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
case
'selectData'
:
...
...
pages/meter-subcontract/subpackage-input/MeterSubpackageInput.vue
View file @
4bd71917
...
...
@@ -46,13 +46,15 @@
</div>
</div>
<subSampleManage
ref=
"subSampleManage"
></subSampleManage>
<operationModal
ref=
"operationModal"
></operationModal>
</div>
</template>
<
script
>
import
{
meterEntrust
,
meterSubcontractor
}
from
'../../../api'
import
operationModal
from
'../../../components/operation/Operation'
import
subSampleManage
from
'./MeterSubSampleManage'
export
default
{
components
:
{
subSampleManage
},
components
:
{
subSampleManage
,
operationModal
},
data
()
{
return
{
currentComponent
:
''
,
...
...
@@ -173,7 +175,7 @@ export default {
this
.
$refs
.
subSampleManage
.
_open
(
data
.
id
)
},
_record
(
id
)
{
this
.
$refs
.
ref
Modal
.
_open
(
id
)
this
.
$refs
.
operation
Modal
.
_open
(
id
)
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
...
...
pages/meter-subcontract/subpackage-input/SubResultInputEdit.vue
0 → 100644
View file @
4bd71917
This diff is collapsed.
Click to expand it.
pages/meter-subcontract/subpackage-input/UploadByReport.vue
0 → 100644
View file @
4bd71917
<
template
>
<div>
<Modal
v-model=
"showSubmitModal"
>
<p
slot=
"header"
>
{{
modalTitle
}}
</p>
<div
v-show=
"isLoad"
>
<Spin
fix
>
<Icon
type=
"load-c"
size=
18
class=
"file-spin-icon-load"
></Icon>
<div>
正在上传,请稍后...
</div>
</Spin>
</div>
<Alert
type=
"warning"
show-icon
>
请填写修改信息,例:xxx由xxx修改为xxx,多条填写时以‘;’分隔!
</Alert>
<Input
v-model=
"remark"
:autosize=
"
{minRows: 3,maxRows: 5}" @on-keyup="_blurChange"
type="textarea" placeholder="请输入内容">
</Input>
<div
style=
"margin-top:10px"
>
<Form
:label-width=
"80"
onsubmit=
"return false"
>
<Form-item
label=
"报告名称:"
>
<Input
v-model=
"reportName"
@
on-blur=
"_action"
placeholder=
"请输入报告名称"
/>
</Form-item>
</Form>
</div>
<div
slot=
"footer"
class=
"btn-width"
>
<label
style=
"margin-bottom: 0"
>
<Upload
:action=
"action"
:on-success=
"_handelsuccess"
:before-upload=
"_beupload"
:on-progress=
"_handelprogress"
:data=
"dataObj"
:with-credentials=
"true"
:show-upload-list=
"false"
>
<Button
@
click=
"_cancel"
style=
"margin-left: 8px"
>
取消
</Button>
<Button
:disabled=
"isDisable"
type=
"primary"
>
上传
</Button>
</Upload>
</label>
</div>
</Modal>
</div>
</
template
>
<
script
>
/**
* 上传报告-----报告台账上传报告
*/
import
global
from
'../../../api/config'
export
default
{
components
:
{},
data
()
{
return
{
ids
:
[],
// 合同ids
modalTitle
:
'上传报告'
,
showSubmitModal
:
false
,
isLoad
:
false
,
action
:
''
,
dataObj
:
{
file
:
''
},
remark
:
''
,
reportId
:
0
,
isDisable
:
true
,
isReport
:
false
,
// 是否有过报告,
reportName
:
''
}
},
methods
:
{
_open
(
reportId
)
{
this
.
showSubmitModal
=
true
this
.
isLoad
=
false
this
.
reportId
=
reportId
this
.
reportName
=
''
this
.
remark
=
''
},
_blurChange
()
{
if
(
this
.
remark
!==
''
)
{
this
.
_action
()
this
.
isDisable
=
false
}
else
{
this
.
isDisable
=
true
}
},
_action
()
{
this
.
action
=
global
.
baseURL
+
'/food/v1/sample_report/upload_report/'
+
this
.
reportId
+
'?reason='
+
this
.
remark
+
'&reportName='
+
this
.
reportName
},
_beupload
(
file
)
{
this
.
dataObj
.
file
=
file
.
name
},
_handelprogress
(
event
,
file
,
fileList
)
{
this
.
isLoad
=
true
},
_handelsuccess
(
response
,
file
,
fileList
)
{
// 上传成功
if
(
response
.
success
)
{
this
.
isLoad
=
false
this
.
$Message
.
success
(
'上传成功!'
)
this
.
$emit
(
'on-result-change'
)
this
.
showSubmitModal
=
false
}
else
{
this
.
isLoad
=
false
this
.
$Message
.
error
(
response
.
msg
)
}
},
_cancel
()
{
this
.
showSubmitModal
=
false
}
}
}
</
script
>
pages/meter-subcontract/subpackage-task/MeterSubpackageTask.vue
View file @
4bd71917
...
...
@@ -46,13 +46,15 @@
</div>
</div>
<subSampleManage
ref=
"subSampleManage"
></subSampleManage>
<operationModal
ref=
"operationModal"
></operationModal>
</div>
</template>
<
script
>
import
{
meterEntrust
,
meterSubcontractor
}
from
'../../../api'
import
operationModal
from
'../../../components/operation/Operation'
import
subSampleManage
from
'./MeterSubSampleManage'
export
default
{
components
:
{
subSampleManage
},
components
:
{
subSampleManage
,
operationModal
},
data
()
{
return
{
currentComponent
:
''
,
...
...
@@ -173,7 +175,7 @@ export default {
this
.
$refs
.
subSampleManage
.
_open
(
data
.
id
)
},
_record
(
id
)
{
this
.
$refs
.
ref
Modal
.
_open
(
id
)
this
.
$refs
.
operation
Modal
.
_open
(
id
)
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
...
...
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