|
@@ -17,6 +17,7 @@
|
|
|
<el-button type="primary" size="mini" style="margin-left: 8px" @click="commonAuditClick()" v-if="auditBtn && parseInt(this.formData.Status) === 4 && parseInt(this.formData.InStyle) !== 2">专业审核</el-button>
|
|
<el-button type="primary" size="mini" style="margin-left: 8px" @click="commonAuditClick()" v-if="auditBtn && parseInt(this.formData.Status) === 4 && parseInt(this.formData.InStyle) !== 2">专业审核</el-button>
|
|
|
<el-button type="primary" size="mini" style="margin-left: 8px" @click="concentrateAuditClick()" v-if="auditBtn && parseInt(this.formData.Status) === 5">集中评审</el-button>
|
|
<el-button type="primary" size="mini" style="margin-left: 8px" @click="concentrateAuditClick()" v-if="auditBtn && parseInt(this.formData.Status) === 5">集中评审</el-button>
|
|
|
<el-button type="primary" size="mini" style="margin-left: 8px" @click="secUnitSeparateAuditClick()" v-if="parseInt(this.formData.Status) === 10">分办</el-button>
|
|
<el-button type="primary" size="mini" style="margin-left: 8px" @click="secUnitSeparateAuditClick()" v-if="parseInt(this.formData.Status) === 10">分办</el-button>
|
|
|
|
|
+ <el-button type="primary" size="mini" style="margin-left: 8px" @click="paySureClick()" v-if="auditBtn && parseInt(this.formData.Status) === 6">交费</el-button>
|
|
|
<!--<router-link>-->
|
|
<!--<router-link>-->
|
|
|
<el-button type="primary" size="mini" style="margin-left: 8px" onclick="window.history.go(-1)">返回</el-button>
|
|
<el-button type="primary" size="mini" style="margin-left: 8px" onclick="window.history.go(-1)">返回</el-button>
|
|
|
<!--</router-link>-->
|
|
<!--</router-link>-->
|
|
@@ -367,7 +368,6 @@
|
|
|
<el-button type="primary" @click="secUnitSeparateAuditMakeSure()" :loading="loading">确定</el-button>
|
|
<el-button type="primary" @click="secUnitSeparateAuditMakeSure()" :loading="loading">确定</el-button>
|
|
|
</span>
|
|
</span>
|
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
-
|
|
|
|
|
<choose-auditor ref="chooseAuditor" @close="setAuditer" @hideChooseAuditer="chooseAuditorVisible=false"
|
|
<choose-auditor ref="chooseAuditor" @close="setAuditer" @hideChooseAuditer="chooseAuditorVisible=false"
|
|
|
:visible="chooseAuditorVisible"></choose-auditor>
|
|
:visible="chooseAuditorVisible"></choose-auditor>
|
|
|
</div>
|
|
</div>
|
|
@@ -1206,6 +1206,59 @@
|
|
|
this.dialogConcentrateAuditVisible = true
|
|
this.dialogConcentrateAuditVisible = true
|
|
|
this.radioChange()
|
|
this.radioChange()
|
|
|
},
|
|
},
|
|
|
|
|
+ paySureClick () {
|
|
|
|
|
+ console.log('交费按钮')
|
|
|
|
|
+ this.$confirm('是否确认交费', '提示', {
|
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
|
+ cancelButtonText: '取消'
|
|
|
|
|
+ type: 'warning'
|
|
|
|
|
+ }).then(() => {
|
|
|
|
|
+ var payRes = this.payMakeSure()
|
|
|
|
|
+ if (payRes) {
|
|
|
|
|
+ this.$message({
|
|
|
|
|
+ type: 'success',
|
|
|
|
|
+ message: '确认成功!'
|
|
|
|
|
+ })
|
|
|
|
|
+ } else {
|
|
|
|
|
+ this.$message({
|
|
|
|
|
+ type: 'success',
|
|
|
|
|
+ message: '确认失败!'
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ }).catch(() => {
|
|
|
|
|
+ this.$message({
|
|
|
|
|
+ type: 'info',
|
|
|
|
|
+ message: '已取消'
|
|
|
|
|
+ });
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ payMakeSure () {
|
|
|
|
|
+ console.log('交费结果确认')
|
|
|
|
|
+ this.loading = true
|
|
|
|
|
+ let params = {
|
|
|
|
|
+ payStatus: this.payStatus
|
|
|
|
|
+ }
|
|
|
|
|
+ console.log('交费结果确认提交参数:', params)
|
|
|
|
|
+ apiCert.updatePayStatus(this.certId, params, this.$axios).then(res => {
|
|
|
|
|
+ if (res.data.code === 0) {
|
|
|
|
|
+ console.log('交费成功')
|
|
|
|
|
+ this.initDatas()
|
|
|
|
|
+ this.$message({
|
|
|
|
|
+ type: 'success',
|
|
|
|
|
+ message: res.data.message
|
|
|
|
|
+ })
|
|
|
|
|
+ } else {
|
|
|
|
|
+ this.$message({
|
|
|
|
|
+ type: 'warning',
|
|
|
|
|
+ message: res.data.message
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ this.dialogSecUnitSeparateVisible = false
|
|
|
|
|
+ this.loading = false
|
|
|
|
|
+ }).catch(err => {
|
|
|
|
|
+ console.error(err)
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
concentrateAuditEntityMakeSure () {
|
|
concentrateAuditEntityMakeSure () {
|
|
|
console.log('集中评审提交审核结果')
|
|
console.log('集中评审提交审核结果')
|
|
|
var checkRes = this.concentrateAuditParamsCheck()
|
|
var checkRes = this.concentrateAuditParamsCheck()
|