Commit 2031afb8 by lichengming

添加了报告签发的按钮权限

parent 20018f17
...@@ -92,12 +92,12 @@ export default { ...@@ -92,12 +92,12 @@ export default {
btn: [ btn: [
{ {
type: 'primary', type: 'primary',
id: '', id: 'report-issue-sum-submit',
name: '提交' name: '提交'
}, },
{ {
type: 'primary', type: 'primary',
id: '', id: 'report-issue-sum-back',
name: '退回' name: '退回'
} }
], ],
...@@ -107,7 +107,9 @@ export default { ...@@ -107,7 +107,9 @@ export default {
entrustId: '' entrustId: ''
}, },
dateList: [], dateList: [],
iconMsg: [{ type: 'ios-book', id: '', name: '预览报告' }], iconMsg: [
{ type: 'ios-book', id: 'report-issue-sum-view', name: '预览报告' }
],
// 签发日期 // 签发日期
issueDateTemp: '', issueDateTemp: '',
issueDate: '', issueDate: '',
......
...@@ -124,13 +124,13 @@ export default { ...@@ -124,13 +124,13 @@ export default {
selectIds: [], selectIds: [],
selectData: [], selectData: [],
iconMsg: [ iconMsg: [
{ type: 'md-cloud', id: '', name: '附件' }, { type: 'md-cloud', id: 'report-issue-upload-his', name: '附件' },
{ {
type: 'ios-clock', type: 'ios-clock',
id: '', id: 'report-issue-record-his',
name: '操作日志' name: '操作日志'
}, },
{ id: '', type: 'md-trash', name: '删除' } { id: 'report-issue-delete-his', type: 'md-trash', name: '删除' }
] ]
} }
}, },
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
<div> <div>
<Row> <Row>
<Form <Form
v-show="searchOpen"
id="lab-sample-form" id="lab-sample-form"
v-show="searchOpen"
:label-width="70" :label-width="70"
inline inline
onsubmit="return false" onsubmit="return false"
...@@ -11,10 +11,10 @@ ...@@ -11,10 +11,10 @@
> >
<label class="label-sign" /> <label class="label-sign" />
<Form-item class="search-item" label="委托方:"> <Form-item class="search-item" label="委托方:">
<Input name="client" placeholder="请输入委托方" clearable @on-enter="_formSearch" /> <Input @on-enter="_formSearch" name="client" placeholder="请输入委托方" clearable />
</Form-item> </Form-item>
<Form-item class="search-item" label="委托编号:"> <Form-item class="search-item" label="委托编号:">
<Input name="entrustCode" placeholder="请输入委托编号" clearable @on-enter="_formSearch" /> <Input @on-enter="_formSearch" name="entrustCode" placeholder="请输入委托编号" clearable />
</Form-item> </Form-item>
<!-- <Form-item class="search-item" label="报检时间:">--> <!-- <Form-item class="search-item" label="报检时间:">-->
<!-- <Date-picker--> <!-- <Date-picker-->
...@@ -30,13 +30,13 @@ ...@@ -30,13 +30,13 @@
<!-- <input type="hidden" name="inspectionDateEnd">--> <!-- <input type="hidden" name="inspectionDateEnd">-->
<!-- </Form-item>--> <!-- </Form-item>-->
<Form-item class="search-btn"> <Form-item class="search-btn">
<Button type="primary" @click="_formSearch"> <Button @click="_formSearch" type="primary">
搜索 搜索
</Button> </Button>
</Form-item> </Form-item>
</Form> </Form>
<Col span="24"> <Col span="24">
<btn-list :open="searchOpen" show-search-btn="true" @on-result-change="_btnClick" /> <btn-list :open="searchOpen" @on-result-change="_btnClick" show-search-btn="true" />
</Col> </Col>
<!-- <Col span="24">--> <!-- <Col span="24">-->
<!-- &lt;!&ndash; <Button type="primary" @click="_submitReportCheck">&ndash;&gt;--> <!-- &lt;!&ndash; <Button type="primary" @click="_submitReportCheck">&ndash;&gt;-->
...@@ -57,9 +57,9 @@ ...@@ -57,9 +57,9 @@
:table-height="tableHeight" :table-height="tableHeight"
:get-page="getPage" :get-page="getPage"
:icon-msg="iconMsg" :icon-msg="iconMsg"
@on-result-change="_tableResultChange"
show-check-box show-check-box
select-data select-data
@on-result-change="_tableResultChange"
> >
<vxe-table-column <vxe-table-column
v-for="item in pageColumns" v-for="item in pageColumns"
...@@ -135,10 +135,14 @@ export default { ...@@ -135,10 +135,14 @@ export default {
selectIds: [], selectIds: [],
selectData: [], selectData: [],
iconMsg: [ iconMsg: [
{ id: '', type: 'md-image', name: '预览报告' }, { id: 'report-issue-view', type: 'md-image', name: '预览报告' },
{ id: '', type: 'ios-book', name: '查看汇总报告' }, {
{ id: '', type: 'ios-cloud', name: '附件' }, id: 'report-issue-view-report',
{ id: '', type: 'ios-clock', name: '操作日志' } type: 'ios-book',
name: '查看汇总报告'
},
{ id: 'report-issue-upload', type: 'ios-cloud', name: '附件' },
{ id: 'report-issue-record', type: 'ios-clock', name: '操作日志' }
] ]
} }
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment