Commit e5ecb0c4 by lichengming

修改了分项报告管理模块名称

parent ca11241a
<template> <template>
<div> <div>
<Modal v-model="showModal" v-drag width="1050" class="modal-footer-none zIndex-1100"> <Modal v-model="showModal" v-drag width="1050" class="modal-footer-none zIndex-1100">
<p slot="header">项目试验项目编制</p> <p slot="header">分项报告审核</p>
<div> <div>
<Row> <Row>
<!--查询--> <!--查询-->
...@@ -68,7 +68,7 @@ export default { ...@@ -68,7 +68,7 @@ export default {
{ title: '创建人', key: 'uname' }, { title: '创建人', key: 'uname' },
{ title: '创建时间', key: 'ctime', dateTime: true } { title: '创建时间', key: 'ctime', dateTime: true }
], ],
btn: [{ id: 'item-check-submit', type: 'primary', name: '提交至签发' }], btn: [{ id: 'item-check-submit', type: 'primary', name: '提交至复核' }],
iconMsg: [ iconMsg: [
{ {
type: 'ios-book', type: 'ios-book',
...@@ -97,7 +97,7 @@ export default { ...@@ -97,7 +97,7 @@ export default {
}, },
_btnClick(msg, data) { _btnClick(msg, data) {
switch (msg) { switch (msg) {
case '提交至签发': case '提交至复核':
this._submitExpReportCheck() this._submitExpReportCheck()
break break
case 'search': case 'search':
......
...@@ -3,10 +3,10 @@ ...@@ -3,10 +3,10 @@
<div class="layout-content-padding"> <div class="layout-content-padding">
<div class="layout-content-main"> <div class="layout-content-main">
<el-tabs v-model="activeName" @tab-click="_changeTabs"> <el-tabs v-model="activeName" @tab-click="_changeTabs">
<el-tab-pane label="试验项目报告批准" name="lab"> <el-tab-pane label="试验项目报告复核" name="lab">
<reportMake ref="labTabs" /> <reportMake ref="labTabs" />
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="试验项目报告批准历史" name="his"> <el-tab-pane label="试验项目报告复核历史" name="his">
<historyTask ref="hisTabs" /> <historyTask ref="hisTabs" />
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
......
<template> <template>
<div> <div>
<Modal v-model="showModal" v-drag width="1050" class="modal-footer-none zIndex-1100"> <Modal v-model="showModal" v-drag width="1050" class="modal-footer-none zIndex-1100">
<p slot="header">项目试验报告签发</p> <p slot="header">分项报告复核</p>
<div> <div>
<Row> <Row>
<!--查询--> <!--查询-->
......
...@@ -272,22 +272,22 @@ export default [ ...@@ -272,22 +272,22 @@ export default [
{ {
path: 'make', path: 'make',
component: SoilExpReportMakeIndex, component: SoilExpReportMakeIndex,
meta: { title: '项目报告编制' } meta: { title: '分项报告编制' }
}, },
{ {
path: 'check', path: 'check',
component: SoilExpReportCheckIndex, component: SoilExpReportCheckIndex,
meta: { title: '项目报告审核' } meta: { title: '分项报告审核' }
}, },
{ {
path: 'issue', path: 'issue',
component: SoilExpReportIssueIndex, component: SoilExpReportIssueIndex,
meta: { title: '项目报告签发' } meta: { title: '分项报告复核' }
}, },
{ {
path: 'end', path: 'end',
component: SoilExpReportEndIndex, component: SoilExpReportEndIndex,
meta: { title: '项目报告汇总' } meta: { title: '分项报告汇总' }
} }
] ]
}, },
......
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