diff --git a/src/views/standardsAssociation/PaymentInfo/modules/CombinationPaymentModal.vue b/src/views/standardsAssociation/PaymentInfo/modules/CombinationPaymentModal.vue
index da80e3c..1f1a605 100644
--- a/src/views/standardsAssociation/PaymentInfo/modules/CombinationPaymentModal.vue
+++ b/src/views/standardsAssociation/PaymentInfo/modules/CombinationPaymentModal.vue
@@ -121,7 +121,7 @@
v-decorator="['paymentRecord', validatorRules.paymentRecord]">
- 需上传"垫付款说明(盖章"文件)
+ 需上传"垫付款说明(盖章"文件)
@@ -246,6 +246,7 @@
@@ -554,7 +556,7 @@ export default {
required: true, message: '请输入会员缴费金额'
},
{
- pattern: /^[1-9](\d{1,8})?(\.\d{1,2})$|^0\.([1-9](\d{0,1})|\d[1-9])$|^[1-9]\d{0,8}$|^0$/,
+ pattern: /^[1-9](\d{1,7})?(\.\d{1,2})$|^0\.([1-9](\d{0,1})|\d[1-9])$|^[1-9]\d{0,8}$|^0$/,
message: '请输入合法的金额数字,最多2位小数,8位正数'
}
],
@@ -566,7 +568,7 @@ export default {
required: true, message: '请输入凭证金额'
},
{
- pattern: /^[1-9](\d{1,8})?(\.\d{1,2})$|^0\.([1-9](\d{0,1})|\d[1-9])$|^[1-9]\d{0,8}$|^0$/,
+ pattern: /^[1-9](\d{1,7})?(\.\d{1,2})$|^0\.([1-9](\d{0,1})|\d[1-9])$|^[1-9]\d{0,8}$|^0$/,
message: '请输入合法的金额数字,最多2位小数,8位正数'
}
],
@@ -610,7 +612,7 @@ export default {
rules: [{ required: false, message: '请选择失效日期' }],
validateTrigger: ['blur', 'change']
},
- paymentRecord: { rules: [{ required: true, message: '请山川缴费凭证/付款说明' }] },
+ paymentRecord: { rules: [{ required: true, message: '请上传缴费凭证/付款说明' }] },
paymentRecord1: { rules: [{ required: true, message: '请上传打包协议' }] },
headerName: {
rules: [
@@ -1336,15 +1338,15 @@ export default {
.paymentRecord-notice {
color: #f5222d;
position: absolute;
- bottom: 4px;
+ bottom: 25px;
left: 15%
}
// 发票选择无 增加样式
.other-notice {
color: #f5222d;
position: absolute;
- bottom: 4px;
- left: 25%
+ bottom: -45px;
+ left: 0
}
diff --git a/src/views/standardsAssociation/PaymentInfo/modules/PaymentInfoModal.vue b/src/views/standardsAssociation/PaymentInfo/modules/PaymentInfoModal.vue
index 01a2138..9985727 100644
--- a/src/views/standardsAssociation/PaymentInfo/modules/PaymentInfoModal.vue
+++ b/src/views/standardsAssociation/PaymentInfo/modules/PaymentInfoModal.vue
@@ -289,6 +289,7 @@