diff --git a/src/views/onlineHome/bankAgriculture/collectionAccount/collectionAdd.vue b/src/views/onlineHome/bankAgriculture/collectionAccount/collectionAdd.vue
index 2af6e33e..73645f2e 100644
--- a/src/views/onlineHome/bankAgriculture/collectionAccount/collectionAdd.vue
+++ b/src/views/onlineHome/bankAgriculture/collectionAccount/collectionAdd.vue
@@ -10,81 +10,88 @@
添加支付收款账户
- 基础信息
-
-
-
-
-
-
+ 基础信息
+
+
+
+
-
-
-
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
- 公户
- 私户
-
-
-
-
-
-
+
+
+
+ 公户
+ 私户
+
+
+
+
-
-
-
-
- 正常
- 停用
-
-
-
-
-
+
+
+
+
+
+
+ 正常
+ 停用
+
+
+
+
+
+
@@ -96,7 +103,10 @@
return {
showBankType:false,
showPayeeType:false,
- form:{},
+ form:{
+ accountType:'1',
+ status:'0'
+ },
bankType:'',
payeeType:'',
@@ -137,6 +147,10 @@
});
},
+ getError(e){
+ console.log(e)
+ this.$notify({ type: 'danger', message: e.errors[0].message });
+ },
onConfirmBankType(data){
this.bankType = data.text;
this.form.bankType = data.value;
diff --git a/src/views/onlineHome/bankAgriculture/collectionAccount/collectionModify.vue b/src/views/onlineHome/bankAgriculture/collectionAccount/collectionModify.vue
index 1043969b..adc8bf2a 100644
--- a/src/views/onlineHome/bankAgriculture/collectionAccount/collectionModify.vue
+++ b/src/views/onlineHome/bankAgriculture/collectionAccount/collectionModify.vue
@@ -10,81 +10,87 @@
修改支付收款账户
- 基础信息
-
-
-
-
-
-
+ 基础信息
+
+
+
+
-
-
-
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
- 公户
- 私户
-
-
-
-
-
-
+
+
+
+ 公户
+ 私户
+
+
+
+
-
-
-
-
- 正常
- 停用
-
-
-
-
-
+
+
+
+
+
+
+ 正常
+ 停用
+
+
+
+
+
+
@@ -128,6 +134,10 @@
});
},
+ getError(e){
+ console.log(e)
+ this.$notify({ type: 'danger', message: e.errors[0].message });
+ },
onConfirmBankType(data){
this.bankType = data.text;
this.form.bankType = data.value;
diff --git a/src/views/onlineHome/bankAgriculture/paymentAccount/paymentAccountAdd.vue b/src/views/onlineHome/bankAgriculture/paymentAccount/paymentAccountAdd.vue
index 6e69bbe8..ca0f6f61 100644
--- a/src/views/onlineHome/bankAgriculture/paymentAccount/paymentAccountAdd.vue
+++ b/src/views/onlineHome/bankAgriculture/paymentAccount/paymentAccountAdd.vue
@@ -10,72 +10,76 @@
添加出纳账户设置
- 基础信息
-
-
-
-
+ 基础信息
+
+
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
- 是
- 否
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 是
+ 否
+
+
+
+
+
+
@@ -101,7 +105,7 @@
jglxDictionaries:[],
subjectDictionaries:[],
typeDictionaries:[],
- subjectDeatil:[],
+ subjectDeatil:'',
form:{}
};
@@ -111,27 +115,21 @@
},
methods: {
getDetail(){
- // 账户类型
- this.houseGetDicts("account_type_cashier").then((res) => {
- for (var i = 0; i < res.data.length; i++) {
- this.typeDictionaries.push({text: res.data[i].dictLabel, value: res.data[i].dictValue});
- }
- });
- getSubjectDetail().then((res) => {
- for (var i = 0; i < res.rows.length; i++) {
- this.subjectDictionaries.push({text: res.rows[i].subjectNameAll, value: res.rows[i].subjectId});
- }
- });
- },
- selectSubject(datas, value) {
- var actions = [];
- Object.keys(datas).some((key) => {
- if (datas[key].subjectId == ('' + value)) {
- actions.push(datas[key].subjectNameAll);
- return true;
+ // 账户类型
+ this.houseGetDicts("account_type_cashier").then((res) => {
+ for (var i = 0; i < res.data.length; i++) {
+ this.typeDictionaries.push({text: res.data[i].dictLabel, value: res.data[i].dictValue});
+ }
+ });
+ getSubjectDetail().then((res) => {
+ for (var i = 0; i < res.rows.length; i++) {
+ this.subjectDictionaries.push({text: res.rows[i].subjectNameAll, value: res.rows[i].subjectId});
}
- })
- return actions.join('');
+ });
+ },
+ getError(e){
+ console.log(e)
+ this.$notify({ type: 'danger', message: e.errors[0].message });
},
onConfirmSubject(data){
this.subjectDeatil = data.text;
diff --git a/src/views/onlineHome/bankAgriculture/paymentAccount/paymentAccountList.vue b/src/views/onlineHome/bankAgriculture/paymentAccount/paymentAccountList.vue
index e4bb6290..39796022 100644
--- a/src/views/onlineHome/bankAgriculture/paymentAccount/paymentAccountList.vue
+++ b/src/views/onlineHome/bankAgriculture/paymentAccount/paymentAccountList.vue
@@ -30,7 +30,7 @@
¥{{item.balance}}
- {{item.bankAccountNumber}}
+ {{item.bankAccountNumber == null || item.bankAccountNumber == '' ? ' ':item.bankAccountNumber}}
{{item.accountName}}
diff --git a/src/views/onlineHome/bankAgriculture/paymentAccount/paymentAccountModify.vue b/src/views/onlineHome/bankAgriculture/paymentAccount/paymentAccountModify.vue
index f50ae6a8..94981203 100644
--- a/src/views/onlineHome/bankAgriculture/paymentAccount/paymentAccountModify.vue
+++ b/src/views/onlineHome/bankAgriculture/paymentAccount/paymentAccountModify.vue
@@ -7,75 +7,79 @@
@click-left="$router.back(-1)"
>
- 添加出纳账户设置
+ 修改付款账户信息
-
基础信息
-
-
-
-
+ 基础信息
+
+
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
- 是
- 否
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 是
+ 否
+
+
+
+
+
+
@@ -128,6 +132,10 @@
this.form = response.data;
});
},
+ getError(e){
+ console.log(e)
+ this.$notify({ type: 'danger', message: e.errors[0].message });
+ },
selectSubject(datas, value) {
var actions = [];
Object.keys(datas).some((key) => {
diff --git a/src/views/onlineHome/bankAgriculture/paymentApproval/approvalProcess.vue b/src/views/onlineHome/bankAgriculture/paymentApproval/approvalProcess.vue
index 8388e943..3bb2f6bd 100644
--- a/src/views/onlineHome/bankAgriculture/paymentApproval/approvalProcess.vue
+++ b/src/views/onlineHome/bankAgriculture/paymentApproval/approvalProcess.vue
@@ -19,8 +19,10 @@
已申请
- {{processList.申请人}}
- {{processList.申请时间}}
+ {{processList.申请人}}
+
+
+ {{processList.申请时间}}
@@ -35,14 +37,14 @@
乡镇审批
乡镇审批
-
+
审批人:{{processList.乡镇审批人}}
审批人:{{processList.乡镇审批人}}
审批人:{{processList.乡镇审批人}}
-
+
审批时间:{{processList.乡镇审批时间}}
审批时间:{{processList.乡镇审批时间}}
审批时间:{{processList.乡镇审批时间}}