From a4b3ee325c7354579d495bc74a777e494e5ec38c Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Fri, 06 Feb 2026 18:18:44 +0800
Subject: [PATCH] 商品可以价格面议 选择走访时显示输入走访企业名 分会添加活动时要总会审核 分类添加人数限制,添加活动选择了填写人数限制的分类时活动名额下显示该分类人数限制为15 同一个企业30天内只能走访一次,在30天内走访同一个企业时提示该企业已被走访xx天后才可以从新走访
---
mobile/pages/branch/activity/detail/popup/reg.vue | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/mobile/pages/branch/activity/detail/popup/reg.vue b/mobile/pages/branch/activity/detail/popup/reg.vue
index 64711e8..839f23b 100644
--- a/mobile/pages/branch/activity/detail/popup/reg.vue
+++ b/mobile/pages/branch/activity/detail/popup/reg.vue
@@ -14,9 +14,9 @@
<view class="tips f28 p20 radius12 friend" v-if="is_friend"><text class="iconfont icon-gantanhao mr10"></text>您正在帮朋友报名,以下信息请填写您朋友的信息</view> -->
<view class="common-form">报名信息</view>
<view class="item d-s-c">
- <view class="item-name">走访活动编号</view>
- <input type="text" maxlength="30" class="flex-1 f28" placeholder="请输入走访活动编号"
- v-model="formData.real_name" placeholder-class="placeholder" />
+ <view class="item-name">活动编号</view>
+ <input type="text" maxlength="30" class="flex-1 f28" placeholder="请输入活动编号"
+ v-model="formData.activity_number" placeholder-class="placeholder" />
</view>
<view class="item d-s-c">
<view class="item-name">真实姓名</view>
@@ -190,6 +190,7 @@
province_id: 0,
city_id: 0,
region_id: 0,
+ activity_number:''
},
/*尺寸比例*/
ratio: 1,
@@ -264,7 +265,7 @@
},
getRegistrationInformation() {
let self = this;
- self._get('branch.activity/getRegistrationInformation', {}, function(res) {
+ self._get('branch.activity/getRegistrationInformation', {activity_id:self.activityData.activity_id}, function(res) {
if (res.data.registrationInformation) {
let data=res.data.registrationInformation;
self.formData.province_id = data.province_id;
@@ -276,6 +277,7 @@
self.formData.mobile = data.mobile;
self.formData.branch_id = data.branch_id;
self.formData.company = data.company;
+ self.formData.activity_number = data.activity_number;
self.selectCity = res.data.registrationInformation.region;
if (res.data.registrationInformation.branch_name) {
self.branch_name = res.data.registrationInformation.branch_name;
--
Gitblit v1.9.2