信息备案
Showing
5 changed files
with
10 additions
and
9 deletions
| 1 | /* | 1 | /* |
| 2 | * @Description: 企业银行接口 | 2 | * @Description: 企业银行接口 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-11-01 08:41:46 | 4 | * @LastEditTime: 2024-03-29 14:11:30 |
| 5 | */ | 5 | */ |
| 6 | import request from '@/utils/request' | 6 | import request from '@/utils/request' |
| 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
| ... | @@ -129,14 +129,15 @@ export function editCompanyMaterialList (data, bsmCompany) { | ... | @@ -129,14 +129,15 @@ export function editCompanyMaterialList (data, bsmCompany) { |
| 129 | * @description: 是否覆盖才材料信息 | 129 | * @description: 是否覆盖才材料信息 |
| 130 | * @author: renchao | 130 | * @author: renchao |
| 131 | */ | 131 | */ |
| 132 | export function replace (bsmCompany, bsmSlsq, bsmSldy) { | 132 | export function replace (bsmCompany, bsmSlsq, bsmSldy, qlrlx) { |
| 133 | return request({ | 133 | return request({ |
| 134 | url: SERVER.SERVERAPI + '/rest/sys/company/replace', | 134 | url: SERVER.SERVERAPI + '/rest/sys/company/replace', |
| 135 | method: 'get', | 135 | method: 'get', |
| 136 | params: { | 136 | params: { |
| 137 | bsmCompany: bsmCompany, | 137 | bsmCompany: bsmCompany, |
| 138 | bsmSlsq: bsmSlsq, | ||
| 138 | bsmSldy: bsmSldy, | 139 | bsmSldy: bsmSldy, |
| 139 | bsmSlsq: bsmSlsq | 140 | qlrlx: qlrlx |
| 140 | } | 141 | } |
| 141 | }) | 142 | }) |
| 142 | } | 143 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2024-03-19 13:17:22 | 4 | * @LastEditTime: 2024-03-29 14:12:16 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <dialogBox | 7 | <dialogBox |
| ... | @@ -571,7 +571,7 @@ | ... | @@ -571,7 +571,7 @@ |
| 571 | cancelButtonText: '取消', | 571 | cancelButtonText: '取消', |
| 572 | distinguishCancelAndClose: true,//区分取消与关闭 | 572 | distinguishCancelAndClose: true,//区分取消与关闭 |
| 573 | }).then(() => { | 573 | }).then(() => { |
| 574 | replace(val.bsmCompany, this.$route.query.bsmSlsq, bsmSldy).then(res => { | 574 | replace(val.bsmCompany, this.$route.query.bsmSlsq, bsmSldy, this.details.qlrlx).then(res => { |
| 575 | that.$emit("updateDetail", _.cloneDeep({ ...val, sqrlx: '2', id: getUuid(16) })); | 575 | that.$emit("updateDetail", _.cloneDeep({ ...val, sqrlx: '2', id: getUuid(16) })); |
| 576 | that.$emit("input", false); | 576 | that.$emit("input", false); |
| 577 | if (res.code == 200) { | 577 | if (res.code == 200) { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2024-01-18 14:55:20 | 4 | * @LastEditTime: 2024-03-29 14:03:52 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div> | 7 | <div> |
| 8 | <lb-table :column="column" :pagination="false" :key="key" :heightNumSetting="true" :minHeight="0" :rowStyleHeight='25' | 8 | <lb-table :column="column" :pagination="false" :key="key" :heightNumSetting="true" :minHeight="0" :rowStyleHeight='25' |
| 9 | :data="tableDataList"> | 9 | :data="tableDataList"> |
| 10 | </lb-table> | 10 | </lb-table> |
| 11 | <addQlr v-model="dialog" :details="details" :showButton="disabled" @updateDetail="handleupdateDetail" /> | 11 | <addQlr v-model="dialog" :details="{qlrlx: 1,...details}" :showButton="disabled" @updateDetail="handleupdateDetail" /> |
| 12 | </div> | 12 | </div> |
| 13 | </template> | 13 | </template> |
| 14 | <script> | 14 | <script> | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2024-01-18 15:03:10 | 4 | * @LastEditTime: 2024-03-29 14:04:33 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div> | 7 | <div> |
| 8 | <lb-table :column="column" :pagination="false" :key="key" :heightNumSetting="true" :minHeight="0" :rowStyleHeight='25' | 8 | <lb-table :column="column" :pagination="false" :key="key" :heightNumSetting="true" :minHeight="0" :rowStyleHeight='25' |
| 9 | :data="tableDataList"> | 9 | :data="tableDataList"> |
| 10 | </lb-table> | 10 | </lb-table> |
| 11 | <addQlr v-model="dialog" :details="details" :showButton="disabled" @updateDetail="handleupdateDetail" /> | 11 | <addQlr v-model="dialog" :details="{qlrlx: 2,...details}" :showButton="disabled" @updateDetail="handleupdateDetail" /> |
| 12 | </div> | 12 | </div> |
| 13 | </template> | 13 | </template> |
| 14 | <script> | 14 | <script> | ... | ... |
This diff is collapsed.
Click to expand it.
-
Please register or sign in to post a comment