0866f7cc by 任超

style:业务申请

1 parent 33a30d15
<template>
<div>
<dialogBox title="查询权利信息" @submitForm="submitForm" saveButton="发起申请" width="85%" @closeDialog="closeDialog"
v-model="myValue">
<dialogBox title="查询权利信息" @submitForm="submitForm" :saveloding="saveloding" saveButton="发起申请" width="85%"
@closeDialog="closeDialog" v-model="myValue">
<div class="from-clues">
<!-- 表单部分 -->
<div class="from-clues-header">
......@@ -43,7 +43,7 @@
</div>
<!-- 表格 -->
<div class="from-clues-content">
<lb-table :page-size="pageData.pageSize" heightNumSetting :current-page.sync="pageData.currentPage"
<lb-table :page-size="pageData.pageSize" heightNum="400" :current-page.sync="pageData.currentPage"
:total="tableData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange"
@selection-change="handleSelectionChange" :column="tableData.columns" :data="tableData.data">
</lb-table>
......@@ -81,6 +81,7 @@ export default {
bdcdyid: '',
bdcdyh: '',
myValue: this.value,
saveloding: false
};
},
mounted () {
......@@ -110,13 +111,15 @@ export default {
this.$message.error('请至少选择一条数据');
return
}
this.saveloding = true
startBusinessFlow({
bsmSqyw: this.bsmSqyw,
bdcdyid: this.bdcdyid,
bdcdyh: this.bdcdyh
}).then(res => {
this.saveloding = false
this.$emit('input', false)
const { href } = this.$router.resolve('/fqsq?bsmSqyw=' + this.bsmSqyw+'&bsmSlsq='+res.message)
const { href } = this.$router.resolve('/fqsq?bsmSqyw=' + this.bsmSqyw + '&bsmSlsq=' + res.message)
window.open(href, '_blank');
})
},
......