style:业务申请
Showing
1 changed file
with
7 additions
and
4 deletions
1 | <template> | 1 | <template> |
2 | <div> | 2 | <div> |
3 | <dialogBox title="查询权利信息" @submitForm="submitForm" saveButton="发起申请" width="85%" @closeDialog="closeDialog" | 3 | <dialogBox title="查询权利信息" @submitForm="submitForm" :saveloding="saveloding" saveButton="发起申请" width="85%" |
4 | v-model="myValue"> | 4 | @closeDialog="closeDialog" v-model="myValue"> |
5 | <div class="from-clues"> | 5 | <div class="from-clues"> |
6 | <!-- 表单部分 --> | 6 | <!-- 表单部分 --> |
7 | <div class="from-clues-header"> | 7 | <div class="from-clues-header"> |
... | @@ -43,7 +43,7 @@ | ... | @@ -43,7 +43,7 @@ |
43 | </div> | 43 | </div> |
44 | <!-- 表格 --> | 44 | <!-- 表格 --> |
45 | <div class="from-clues-content"> | 45 | <div class="from-clues-content"> |
46 | <lb-table :page-size="pageData.pageSize" heightNumSetting :current-page.sync="pageData.currentPage" | 46 | <lb-table :page-size="pageData.pageSize" heightNum="400" :current-page.sync="pageData.currentPage" |
47 | :total="tableData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange" | 47 | :total="tableData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange" |
48 | @selection-change="handleSelectionChange" :column="tableData.columns" :data="tableData.data"> | 48 | @selection-change="handleSelectionChange" :column="tableData.columns" :data="tableData.data"> |
49 | </lb-table> | 49 | </lb-table> |
... | @@ -81,6 +81,7 @@ export default { | ... | @@ -81,6 +81,7 @@ export default { |
81 | bdcdyid: '', | 81 | bdcdyid: '', |
82 | bdcdyh: '', | 82 | bdcdyh: '', |
83 | myValue: this.value, | 83 | myValue: this.value, |
84 | saveloding: false | ||
84 | }; | 85 | }; |
85 | }, | 86 | }, |
86 | mounted () { | 87 | mounted () { |
... | @@ -110,13 +111,15 @@ export default { | ... | @@ -110,13 +111,15 @@ export default { |
110 | this.$message.error('请至少选择一条数据'); | 111 | this.$message.error('请至少选择一条数据'); |
111 | return | 112 | return |
112 | } | 113 | } |
114 | this.saveloding = true | ||
113 | startBusinessFlow({ | 115 | startBusinessFlow({ |
114 | bsmSqyw: this.bsmSqyw, | 116 | bsmSqyw: this.bsmSqyw, |
115 | bdcdyid: this.bdcdyid, | 117 | bdcdyid: this.bdcdyid, |
116 | bdcdyh: this.bdcdyh | 118 | bdcdyh: this.bdcdyh |
117 | }).then(res => { | 119 | }).then(res => { |
120 | this.saveloding = false | ||
118 | this.$emit('input', false) | 121 | this.$emit('input', false) |
119 | const { href } = this.$router.resolve('/fqsq?bsmSqyw=' + this.bsmSqyw+'&bsmSlsq='+res.message) | 122 | const { href } = this.$router.resolve('/fqsq?bsmSqyw=' + this.bsmSqyw + '&bsmSlsq=' + res.message) |
120 | window.open(href, '_blank'); | 123 | window.open(href, '_blank'); |
121 | }) | 124 | }) |
122 | }, | 125 | }, | ... | ... |
-
Please register or sign in to post a comment