|
|
@@ -6,7 +6,7 @@
|
|
|
<el-breadcrumb-item>基建类供方准入评审表</el-breadcrumb-item>
|
|
|
</el-breadcrumb>
|
|
|
|
|
|
- <no-ssr>
|
|
|
+ <!--<no-ssr>
|
|
|
<div>
|
|
|
<float-img-btn ref="floatBtn" text="下一步" :itemWidth="58" :itemHeight="30" :coefficientHeight="0.8"
|
|
|
@onFloatBtnClicked="nextTab">
|
|
|
@@ -15,7 +15,7 @@
|
|
|
@onFloatBtnClicked="backTab" v-if="certId">
|
|
|
</float-img-btn>
|
|
|
</div>
|
|
|
- </no-ssr>
|
|
|
+ </no-ssr>-->
|
|
|
|
|
|
<el-card class="box-card">
|
|
|
<div slot="header">
|
|
|
@@ -237,7 +237,13 @@
|
|
|
<el-tab-pane label="供方缴费" v-if="formDataCert.Status == 5">
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
+
|
|
|
+ <div style="float: right; margin: 20px;">
|
|
|
+ <el-button ref="floatNxtBtn" type="primary" plain size="mini" @click="backTab" v-if="parseInt(activeName) > 0">上一步</el-button>
|
|
|
+ <el-button ref="floatBtn" type="primary" plain size="mini" @click="nextTab" v-if="parseInt(activeName) < totalTab">下一步</el-button>
|
|
|
+ </div>
|
|
|
</el-card>
|
|
|
+
|
|
|
<el-dialog title="提交初审" :visible.sync="dialogVisible" width="520px">
|
|
|
<el-form ref="searchForm" label-width="100px">
|
|
|
<el-row>
|
|
|
@@ -326,10 +332,12 @@
|
|
|
import ChooseAuditorFen from '@/components/oilsupplier/chooseauditorfenban'
|
|
|
import ChooseAuditor from '@/components/oilsupplier/chooseauditor'
|
|
|
import FloatImgBtn from '@/components/floatButton/index'
|
|
|
+ import ElButton from "../../../../../node_modules/element-ui/packages/button/src/button";
|
|
|
|
|
|
export default {
|
|
|
|
|
|
components: {
|
|
|
+ ElButton,
|
|
|
FloatImgBtn,
|
|
|
SupplierFileTable,
|
|
|
WfMultiHistory,
|
|
|
@@ -377,6 +385,7 @@
|
|
|
}
|
|
|
};
|
|
|
return {
|
|
|
+ totalTab: 3,
|
|
|
activeName: '0',
|
|
|
chooseAuditorVisible: false,
|
|
|
chooseAuditorVisibleFen: false,
|
|
|
@@ -745,18 +754,17 @@
|
|
|
.formDataCert.InStyle)
|
|
|
},
|
|
|
nextTab() {
|
|
|
- let totalTab = 3
|
|
|
if (this.formData.AuditIndex > 0) {
|
|
|
- totalTab = 4
|
|
|
+ this.totalTab = 4
|
|
|
}
|
|
|
if (this.formDataCert.Status > 0) {
|
|
|
- totalTab = 5
|
|
|
+ this.totalTab = 4
|
|
|
}
|
|
|
if (this.formDataCert.Status < 0) {
|
|
|
- totalTab = 5
|
|
|
+ this.totalTab = 4
|
|
|
}
|
|
|
if (this.formDataCert.Status >= 5) {
|
|
|
- totalTab = 6
|
|
|
+ this.totalTab = 5
|
|
|
}
|
|
|
|
|
|
let valid = true
|
|
|
@@ -769,7 +777,7 @@
|
|
|
return false
|
|
|
}
|
|
|
let activeIdx = parseInt(this.activeName)
|
|
|
- if (activeIdx < totalTab) {
|
|
|
+ if (activeIdx < this.totalTab) {
|
|
|
this.activeName = (activeIdx + 1) + ''
|
|
|
} else {
|
|
|
this.activeName = '0'
|
|
|
@@ -777,25 +785,24 @@
|
|
|
},
|
|
|
|
|
|
backTab() {
|
|
|
- let totalTab = 3
|
|
|
if (this.formData.AuditIndex > 0) {
|
|
|
- totalTab = 4
|
|
|
+ this.totalTab = 4
|
|
|
}
|
|
|
if (this.formDataCert.Status > 0) {
|
|
|
- totalTab = 5
|
|
|
+ this.totalTab = 4
|
|
|
}
|
|
|
if (this.formDataCert.Status < 0) {
|
|
|
- totalTab = 5
|
|
|
+ this.totalTab = 4
|
|
|
}
|
|
|
if (this.formDataCert.Status >= 5) {
|
|
|
- totalTab = 6
|
|
|
+ this.totalTab = 5
|
|
|
}
|
|
|
|
|
|
let activeIdx = parseInt(this.activeName)
|
|
|
if (activeIdx > 0) {
|
|
|
this.activeName = (activeIdx - 1) + ''
|
|
|
} else {
|
|
|
- this.activeName = totalTab + ''
|
|
|
+ this.activeName = this.totalTab + ''
|
|
|
}
|
|
|
},
|
|
|
getDictOptions() {
|