From 149f8c929884c35f2f7260bc80651a69d5dbb4fb Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期五, 01 十二月 2023 11:15:17 +0800 Subject: [PATCH] 11 --- src/views/project/fund/applyDetail/index.vue | 90 ++++++++++++++++++++++++++++++--------------- 1 files changed, 60 insertions(+), 30 deletions(-) diff --git a/src/views/project/fund/applyDetail/index.vue b/src/views/project/fund/applyDetail/index.vue index 1b3fbdf..ef54219 100644 --- a/src/views/project/fund/applyDetail/index.vue +++ b/src/views/project/fund/applyDetail/index.vue @@ -323,6 +323,23 @@ </template> </el-table-column> <el-table-column + prop="taxamount" + align="center" + label="鎵g◣閲戦" + width="120" + v-if=" + (this.ismanager == true) & + (form.applytype == '1' || form.applytype == '2') + " + > + <template slot-scope="scope"> + <el-input + v-model="scope.row.taxamount" + placeholder="鎵g◣閲戦" + /> + </template> + </el-table-column> + <el-table-column prop="taxedamount" align="center" label="绋庡悗閲戦" @@ -451,6 +468,9 @@ <template slot-scope="scope"> <el-form-item :error="scope.row.error" label-width="0"> <el-input + :disabled=" + userprofile.nickName != '闄堟厱鍗�' && businessType == 1 + " v-model.number="scope.row.idcardno" @input="tableParValueChange1(scope.row)" placeholder="韬唤璇佸彿" @@ -467,6 +487,9 @@ <!-- v-if="form.applytype != '4'" --> <template slot-scope="scope"> <el-input + :disabled=" + userprofile.nickName != '闄堟厱鍗�' && businessType == 1 + " v-model="scope.row.depositbank" placeholder="寮�鎴烽摱琛�" /> @@ -480,13 +503,16 @@ > <template slot-scope="scope"> <el-input + :disabled=" + userprofile.nickName != '闄堟厱鍗�' && businessType == 1 + " v-model="scope.row.bankcardno" placeholder="閾惰甯愬彿" /> </template> </el-table-column> <el-table-column - prop="itemdescribe" + prop="itemdescrisca" align="center" width="330" label="椤圭洰璇存槑" @@ -1182,10 +1208,10 @@ <el-button type="success" size="mini" - icon="el-icon-search" circle + icon="el-icon-search" + circle @click.native.prevent.stop="Downloadfile(scope.row)" - ></el-button - > + ></el-button> </template> </el-table-column> </el-table> @@ -1285,10 +1311,10 @@ <el-button type="success" size="mini" - icon="el-icon-search" circle + icon="el-icon-search" + circle @click.native.prevent.stop="Downloadfile(scope.row)" - ></el-button - > + ></el-button> </template> </el-table-column> </el-table> @@ -2294,31 +2320,35 @@ JSON.stringify(this.rbDetails) ); sessionStorage.setItem("apiform", JSON.stringify(this.form)); - addorupdateFund(this.form).then(response => { - console.log(this.form); - console.log(response, "淇濆瓨杩斿弬"); - if (response.code === 200) { - if (this.form.id) { - this.$modal.msgSuccess("鐢宠鍗曚慨鏀规垚鍔燂紒"); - this.$router.go(-1); + addorupdateFund(this.form) + .then(response => { + console.log(this.form); + console.log(response, "淇濆瓨杩斿弬"); + if (response.code === 200) { + if (this.form.id) { + this.$modal.msgSuccess("鐢宠鍗曚慨鏀规垚鍔燂紒"); + this.$router.go(-1); + } else { + this.$modal.msgSuccess("鐢宠鍗曚繚瀛樻垚鍔燂紒"); + this.$store.dispatch("tagsView/delView", this.$route); + this.$router.push({ + path: "/finance/applyDetail/", + query: { + id: response.data, + businessType: "2", + operationType: "update", + curCase: this.curCase + } + }); + } + this.form.id = response.data; } else { - this.$modal.msgSuccess("鐢宠鍗曚繚瀛樻垚鍔燂紒"); - this.$store.dispatch("tagsView/delView", this.$route); - this.$router.push({ - path: "/finance/applyDetail/", - query: { - id: response.data, - businessType: "2", - operationType: "update", - curCase: this.curCase - } - }); + this.$modal.msgError("鐢宠鍗曚繚瀛樺け璐ワ細" + response.msg); } - this.form.id = response.data; - } else { - this.$modal.msgError("鐢宠鍗曚繚瀛樺け璐ワ細" + response.msg); - } - }); + }) + .catch(res => { + this.$modal.msgError("鐢宠鍗曚繚瀛樺け璐ワ細" + res); + }); //鍏抽棴绐楀彛 this.loading = false; // this.getfundList(); -- Gitblit v1.9.3