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
91ee90a1
Commit
91ee90a1
authored
Sep 12, 2020
by
lichengming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改了委托登记
parent
f492fbe5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
643 additions
and
10 deletions
+643
-10
index.js
api/index.js
+1
-0
soil-entrust.js
api/soil/soil-entrust.js
+13
-0
AutoCompletes.vue
components/base/AutoCompletes.vue
+17
-9
EntrustIndex.vue
pages/meter-entrust/entrust-register/EntrustIndex.vue
+51
-0
EntrustRegister.vue
pages/meter-entrust/entrust-register/EntrustRegister.vue
+335
-0
EntrustRegisterEdit.vue
pages/meter-entrust/entrust-register/EntrustRegisterEdit.vue
+0
-0
EntrustRegisterHis.vue
pages/meter-entrust/entrust-register/EntrustRegisterHis.vue
+224
-0
soil-routes.js
router/soil-routes.js
+2
-1
No files found.
api/index.js
View file @
91ee90a1
...
...
@@ -27,3 +27,4 @@ export { default as workbench } from './meter/workbench/workbench'
export
{
default
as
meterEntrust
}
from
'./meter/meter-entrust'
export
{
default
as
meterSample
}
from
'./meter/meter-sample'
export
{
default
as
soilAptitude
}
from
'./soil/soil-aptitude'
export
{
default
as
soilEntrust
}
from
'./soil/soil-entrust'
api/soil/soil-entrust.js
0 → 100644
View file @
91ee90a1
/**
* 工作台
*/
import
http
from
'../http'
// import { https } from '../https'
export
default
{
// page
page
:
data
=>
http
.
post
(
'soil/v1/entrust/page'
,
data
).
then
(
res
=>
res
),
getVOById
:
data
=>
http
.
get
(
'soil/v1/entrust/'
+
data
).
then
(
res
=>
res
),
deleteById
:
data
=>
http
.
delete
(
'soil/v1/entrust/'
+
data
).
then
(
res
=>
res
)
}
components/base/AutoCompletes.vue
View file @
91ee90a1
...
...
@@ -82,7 +82,6 @@ export default {
},
watch
:
{
value
:
function
(
newVal
,
oldVal
)
{
console
.
log
(
newVal
)
this
.
dataValue
=
newVal
}
},
...
...
@@ -123,7 +122,7 @@ export default {
},
// 聚焦
_inputFocus
()
{
console
.
log
(
'下拉选项'
,
this
.
downData
,
this
.
showKey
)
//
console.log('下拉选项', this.downData, this.showKey)
// this.isFocus = true;
if
(
this
.
focus
!==
undefined
)
{
this
.
$emit
(
'on-result-change'
,
'focus'
,
''
,
this
.
dataHandObj
)
...
...
@@ -133,17 +132,26 @@ export default {
}
</
script
>
<
style
>
.ivu-modal-mask
{
z-index
:
1000
!important
;
}
.ivu-modal-wrap
{
z-index
:
1000
!important
;
}
/*.ivu-modal-mask {*/
/* z-index: 1000 !important;*/
/*}*/
/*.ivu-modal-wrap {*/
/* z-index: 1000 !important;*/
/*}*/
.iview-input-error
.ivu-input
{
border
:
1px
solid
#eb6877
!important
;
}
/*.el-dropdown-menu__item {*/
/* z-index: 3000 !important;*/
/* max-width: 400px !important;*/
/*}*/
.el-dropdown-menu
{
z-index
:
2147483647
!important
;
}
.el-select-dropdown
{
z-index
:
2147483647
!important
;
}
.el-dropdown-menu__item
{
z-index
:
3000
!important
;
max-width
:
400px
!important
;
}
</
style
>
pages/meter-entrust/entrust-register/EntrustIndex.vue
0 → 100644
View file @
91ee90a1
<
template
>
<div>
<div
class=
"layout-content-padding"
>
<div
class=
"layout-content-main"
>
<el-tabs
v-model=
"activeName"
@
tab-click=
"_changeTabs"
>
<el-tab-pane
label=
"待完成"
name=
"wait"
>
<MeterSendEntrust
ref=
"waitTabs"
></MeterSendEntrust>
</el-tab-pane>
<el-tab-pane
label=
"历史记录"
name=
"his"
>
<MeterSendEntrustHis
ref=
"hisTabs"
></MeterSendEntrustHis>
</el-tab-pane>
</el-tabs>
</div>
</div>
</div>
</
template
>
<
script
>
import
MeterSendEntrust
from
'./EntrustRegister'
import
MeterSendEntrustHis
from
'./EntrustRegisterHis'
export
default
{
name
:
'MeterSendEntrustIndex'
,
components
:
{
MeterSendEntrust
,
MeterSendEntrustHis
},
data
()
{
return
{
activeName
:
'wait'
}
},
mounted
()
{
this
.
activeName
=
'wait'
this
.
_page
()
},
methods
:
{
_changeTabs
(
tab
,
event
)
{
if
(
tab
.
name
===
'wait'
)
{
this
.
_page
()
}
else
{
this
.
$refs
.
hisTabs
.
_page
()
}
},
_page
()
{
this
.
$refs
.
waitTabs
.
_page
()
}
}
}
</
script
>
<
style
scoped
>
</
style
>
pages/meter-entrust/entrust-register/EntrustRegister.vue
0 → 100644
View file @
91ee90a1
This diff is collapsed.
Click to expand it.
pages/meter-entrust/entrust-register/EntrustRegisterEdit.vue
0 → 100644
View file @
91ee90a1
This diff is collapsed.
Click to expand it.
pages/meter-entrust/entrust-register/EntrustRegisterHis.vue
0 → 100644
View file @
91ee90a1
<
template
>
<div>
<!--内容-->
<div
class=
"layout-content-padding"
>
<div
class=
"layout-content-main"
>
<Row>
<!--查询-->
<Col
span=
"24"
style=
"margin-top: 10px"
>
<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.client"
@
on-enter=
"_formSearch"
name=
"client"
placeholder=
"请输入委托单位"
clearable
/>
</Form-item>
<Form-item
class=
"search-item"
label=
"委托单号:"
>
<Input
v-model=
"formObj.entrustCode"
@
on-enter=
"_formSearch"
name=
"entrustCode"
placeholder=
"请输入委托单号"
clearable
/>
</Form-item>
<Form-item
class=
"search-btn"
>
<Button
@
click=
"_formSearch"
type=
"primary"
>
搜索
</Button>
</Form-item>
</Form>
</Col>
<!--操作-->
<Col
span=
"24"
>
<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"
@
on-result-change=
"_tableResultChange"
>
<vxe-table-column
v-for=
"item in pageColumns"
:key=
"item.key"
:field=
"item.key"
:title=
"item.title"
:min-width=
"item.width?item.width:200"
:fixed=
"item.fixed?item.fixed:undefined"
sortable
>
<template
slot-scope=
"scope"
>
<span
v-if=
"item.key==='edate'"
>
{{
scope
.
row
[
item
.
key
]?
$dateformat
(
scope
.
row
[
item
.
key
],
'yyyy-mm-dd'
):
''
}}
</span>
<span
v-else
>
{{
scope
.
row
[
item
.
key
]
}}
</span>
</
template
>
</vxe-table-column>
</PTVXETable>
</Col>
</Row>
</div>
</div>
<MeterEntrustRecord
ref=
"entrustRecordModal"
@
on-result-change=
"_page"
></MeterEntrustRecord>
</div>
</template>
<
script
>
import
{
soilAptitude
}
from
'../../../api'
import
MeterEntrustRecord
from
'../../../components/operation/Operation'
export
default
{
components
:
{
MeterEntrustRecord
},
data
()
{
return
{
currentComponent
:
''
,
formId
:
'meterSubcontractorFormId'
,
searchOpen
:
true
,
btn
:
[
// {
// type: 'success',
// id: '',
// name: '添加'
// }
],
iconMsg
:
[
{
type
:
'ios-clock'
,
id
:
''
,
name
:
'操作日志'
}
],
formObj
:
{
client
:
undefined
,
entrustCode
:
undefined
},
selectIds
:
[],
getPage
:
{},
pageColumns
:
[
{
title
:
'委托单位'
,
key
:
'client'
,
width
:
200
},
{
title
:
'联系人'
,
key
:
'person'
,
width
:
120
},
{
title
:
'委托编号'
,
key
:
'entrustCode'
,
width
:
120
},
{
title
:
'联系电话'
,
key
:
'tel'
,
width
:
120
},
{
title
:
'传真'
,
key
:
'fax'
,
width
:
120
},
{
title
:
'详细地址'
,
key
:
'address'
,
width
:
250
},
{
title
:
'邮编'
,
key
:
'postcode'
},
{
title
:
'E-mail'
,
key
:
'email'
,
width
:
120
},
{
title
:
'委托日期'
,
key
:
'edate'
,
width
:
120
},
{
title
:
'费用合计'
,
key
:
'fee'
,
width
:
120
},
{
title
:
'合同号'
,
key
:
'contractCode'
,
width
:
120
},
{
title
:
'备注'
,
key
:
'remark'
}
]
}
},
computed
:
{
tableHeight
:
function
()
{
if
(
this
.
searchOpen
)
{
return
this
.
$tableHeight
(
'search'
)
}
else
{
return
this
.
$tableHeight
(
'noSearch'
)
}
}
},
mounted
()
{
this
.
_page
()
},
methods
:
{
_btnClick
(
msg
,
componentName
)
{
this
.
currentComponent
=
componentName
this
.
$nextTick
(
function
()
{
switch
(
msg
)
{
case
'添加'
:
this
.
_editModal
(
false
)
break
case
'search'
:
this
.
searchOpen
=
!
this
.
searchOpen
break
}
})
},
_iconClick
(
res
,
data
,
componentName
)
{
this
.
currentComponent
=
componentName
this
.
$nextTick
(
function
()
{
switch
(
res
)
{
case
'编辑'
:
this
.
_editModal
(
true
,
data
.
id
)
break
case
'资质项目'
:
this
.
_itemModal
(
data
.
id
)
break
case
'附件'
:
this
.
_upload
(
data
.
id
)
break
case
'删除'
:
this
.
_deleteByIds
([
data
.
id
])
break
case
'操作日志'
:
this
.
_record
(
data
.
id
)
break
case
'查看样品'
:
this
.
_sampleManage
(
data
.
id
)
break
}
})
},
_sampleManage
(
data
)
{
// 管理样品
this
.
$refs
.
meterSampleManageModal
.
_open
(
data
)
},
_record
(
id
)
{
this
.
$refs
.
entrustRecordModal
.
_open
(
id
)
},
_tableResultChange
(
msg
,
data
)
{
switch
(
msg
)
{
case
'iconClick'
:
this
.
_iconClick
(
data
.
name
,
data
.
rowData
,
data
.
componentName
)
break
case
'changeSize'
:
this
.
_page
()
break
}
},
_page
:
async
function
()
{
Object
.
assign
(
this
.
formObj
,
this
.
$refs
.
pageTable
.
_searchParams
())
console
.
log
(
'this.formObj'
,
this
.
formObj
)
const
result
=
await
soilAptitude
.
page
(
this
.
formObj
)
if
(
result
)
{
this
.
$refs
.
pageTable
.
_hideLoading
()
this
.
getPage
=
result
}
},
_formSearch
()
{
this
.
$refs
.
pageTable
.
_pageChange
(
1
)
},
// 删除
_deleteByIds
(
ids
,
content
)
{
this
.
$Modal
.
confirm
({
title
:
'提示'
,
content
:
content
||
'确定删除该记录?'
,
onOk
:
()
=>
{
this
.
_delete
(
ids
)
}
})
},
// 编辑&添加
_editModal
(
edit
,
id
)
{
if
(
edit
)
{
// 编辑
// this.$refs.editSubcontractorModal._open(id)
this
.
_getById
(
id
)
}
else
{
// 添加
this
.
$refs
.
editSubcontractorModal
.
_open
()
}
},
// 追加项目
_itemModal
(
data
)
{
this
.
$refs
.
refModal
.
_open
(
data
)
},
_upload
(
id
)
{
// 上传文件
this
.
$refs
.
refModal
.
_open
(
id
,
'subcontractorId'
)
},
_getById
:
async
function
(
id
)
{
const
result
=
await
soilAptitude
.
getById
(
id
)
if
(
result
)
{
this
.
$refs
.
editSubcontractorModal
.
_open
(
result
)
}
},
_delete
:
async
function
(
ids
)
{
const
result
=
await
soilAptitude
.
deleteById
(
ids
)
if
(
result
)
{
this
.
_formSearch
()
this
.
$Message
.
success
(
'删除成功!'
)
}
}
}
}
</
script
>
router/soil-routes.js
View file @
91ee90a1
...
...
@@ -5,6 +5,7 @@
import
workbench
from
'../pages/workbench/workbench'
import
StandardManage
from
'../pages/meter-aptitude/standard-manage/StandardManage'
import
ExperimentItemManage
from
'../pages/meter-aptitude/item-manage/ExperimentItemManage'
import
EntrustIndex
from
'../pages/meter-entrust/entrust-register/EntrustIndex'
import
Blank
from
'~/pages/blank'
export
default
[
{
...
...
@@ -18,7 +19,7 @@ export default [
children
:
[
{
path
:
'entrust_register'
,
component
:
workbench
,
component
:
EntrustIndex
,
meta
:
{
title
:
'试验委托登记'
}
},
{
...
...
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