819f4e2b by 杨炀

no message

1 parent 89d47a89
......@@ -73,7 +73,7 @@
<div v-if="needPersonNum>0" class="fakeFormItem">
<label>需填写{{ needPersonNum }}位游客</label>
<div>
<div v-show="needPersonNum > hasPersonNum">还需填写{{ needPersonNum-hasPersonNum }}位游客</div>
<label class="text-warning" v-show="needPersonNum > hasPersonNum">还需填写{{ needPersonNum-hasPersonNum }}位游客</label>
</div>
</div>
<div v-for="(n,i) in gateList" :key="i">
......@@ -237,6 +237,7 @@ const checkPersonNum = () => {
_.each(gateList.value, item => {
needPersonNum.value += item.count
_.each(item.personArr, person => {
console.log(person)
if (person.customerId) {
hasPersonNum.value++
}
......
......@@ -123,7 +123,7 @@ function popRemark(type) {
(form.value.isMealView == 0 && type == '4') ||
(form.value.isPhotoView == 0 && type == '5') ||
(form.value.isTicket == 0 && type == '0') ||
(form.value.isTravel == 0 && type == '8')
(form.value.isScenicView == 0 && type == '8')
) {
building()
return
......
......@@ -171,7 +171,7 @@ function popRemark(type) {
|| (form.value.isMealView == 0 && type == '4')
|| (form.value.isPhotoView == 0 && type == '5')
|| (form.value.isTicket == 0 && type == '0')
|| (form.value.isTravel == 0 && type == '8')
|| (form.value.isScenicView == 0 && type == '8')
) {
building()
return
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!