Commit 2031afb8 by lichengming

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

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