diff --git a/src/api/inconmeMeetingApi.js b/src/api/inconmeMeetingApi.js
index 3f1e061..796708b 100644
--- a/src/api/inconmeMeetingApi.js
+++ b/src/api/inconmeMeetingApi.js
@@ -2,7 +2,10 @@ import {getAction} from "@api/manage";
// 通过用户id获取用户信息
const getUserInfo = (params) => getAction('/sys/user/queryById',params)
+// 通过会议id获取会议的详细信息
+const getMeetInfoById = (params) => getAction('/meeting/payMeeting/queryById',params)
export {
- getUserInfo
+ getUserInfo,
+ getMeetInfoById
}
diff --git a/src/views/incomePayments/meetManage/AddOrDetailMeet.vue b/src/views/incomePayments/meetManage/AddOrDetailMeet.vue
index 81ee7b0..385434d 100644
--- a/src/views/incomePayments/meetManage/AddOrDetailMeet.vue
+++ b/src/views/incomePayments/meetManage/AddOrDetailMeet.vue
@@ -15,12 +15,12 @@
event.target.value = event.target.value.trim()"
- v-decorator="['meetingName']">
+ v-decorator="['meetingName',validatorRules.meetingName]">
-
@@ -28,7 +28,7 @@
-
@@ -39,7 +39,7 @@
@change="changeConvokeTime"
format="YYYY-MM-DD HH:mm:00"
:show-time="{ format: 'HH:mm' }"
- v-decorator="['convokeTime']"
+ v-decorator="['convokeTime',validatorRules.convokeTime]"
:trigger-change="true"
style="width: 100%"/>
@@ -47,7 +47,7 @@
-
+
@@ -62,9 +62,10 @@
@@ -78,7 +79,7 @@
-
@@ -88,7 +89,7 @@
{e.target.value = (e.target.value + '').trim()}"/>
@@ -102,14 +103,14 @@
event.target.value = event.target.value.trim()"
:maxLength='50'
>
@@ -127,32 +128,36 @@
event.target.value = event.target.value.trim()"
:maxLength='50'
- v-decorator="[ 'vipInvitationCode']">
+ v-decorator="['vipInvitationCode',validatorRules.invitationCode]">
event.target.value = event.target.value.trim()"
:maxLength='50'
- v-decorator="[ 'speakerInvitationCode']">
+ v-decorator="[ 'speakerInvitationCode',validatorRules.invitationCode]">
event.target.value = event.target.value.trim()"
:maxLength='50'
- v-decorator="[ 'guestInvitationCode']">
+ v-decorator="[ 'guestInvitationCode',validatorRules.invitationCode]">
event.target.value = event.target.value.trim()"
:maxLength='50'
- v-decorator="[ 'cooperativeInvitationCode']">
+ v-decorator="[ 'cooperativeInvitationCode',validatorRules.invitationCode]">
@@ -167,7 +172,8 @@
+ @change="(e) => {e.target.value = e.target.value.replace(/[^0-9.]/g,'')}"
+ v-decorator="[ 'meetingCosts',validatorRules.meetingCosts]">
元/人
@@ -176,7 +182,8 @@
+ @change="(e) => {e.target.value = e.target.value.replace(/[^0-9.]/g,'')}"
+ v-decorator="[ 'meetingCostsVip',validatorRules.meetingCostsVip]">
元/人
@@ -197,7 +204,8 @@
{e.target.value = e.target.value.replace(/[^0-9.]/g,'')}"
v-decorator="['directorPhone']">
@@ -206,7 +214,8 @@
+ @change="event => event.target.value = event.target.value.trim()"
+ v-decorator="['hotelName',validatorRules.hotelName]">
@@ -214,7 +223,8 @@
+ @change="event => event.target.value = event.target.value.trim()"
+ v-decorator="[ 'hotelAddress',validatorRules.hotelAddress]">
@@ -233,10 +243,10 @@
event.target.value = event.target.value.trim()"
+ @change="(e) => {e.target.value = e.target.value.replace(/[^0-9.]/g,'')}"
:maxLength="15"
- v-decorator="['hotelList['+index+'].telephoneNumber']"
- placeholder="请输入酒店电话">
+ v-decorator="['hotelList['+index+'].telephoneNumber',validatorRules.telephoneNumber]"
+ placeholder="请输入联系人手机号">
@@ -269,7 +279,7 @@
@@ -277,7 +287,7 @@