index.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. import {
  2. activity,
  3. User
  4. } from "@/config/api.js"
  5. let app = getApp()
  6. export default {
  7. data() {
  8. return {
  9. page_no: 1,
  10. pageSize: 10,
  11. collectList: [],
  12. status: "loadmore",
  13. loadText: {
  14. loadmore: "上拉加载更多",
  15. loading: "加载中",
  16. nomore: "已经到底了",
  17. },
  18. listActivityStaus: [], //状态
  19. listActivityType: [], //类型
  20. listChartPermission: [], //分类
  21. listChartPermissionInit:[],
  22. activityTypeIds: '', //活动类型id 多个用 , 隔开
  23. chartPermissionIds: '', //行业id 多个用 , 隔开
  24. chartPermissionName: '行业分类',
  25. activityTypeName: '活动类型',
  26. selectShow: false,
  27. isShowJurisdiction: false,
  28. isGain: true,
  29. signupType: '', //关注类型
  30. goFollow: false, //是否关注公众号
  31. signupStatus: 'Success', //4个不同的类型提示文案
  32. isShow: false, //弹框
  33. isCancelShow: false,
  34. idTypeCancel: {
  35. id: '',
  36. type: 1,
  37. cutId: '',
  38. state: '',
  39. isNum: false
  40. },
  41. isAreaCode: false,
  42. areaCode: {
  43. id: '',
  44. type: ''
  45. },
  46. isNeedAddCountryCode: false,
  47. isId: 0,
  48. activityIdAdd: '',
  49. // 历史搜索列表
  50. historySearchList: [],
  51. hasPermission: '', //是否有权限
  52. jurisdictionList: {
  53. SellerMobile: '',
  54. PopupMsg: '',
  55. OperationMode: '',
  56. },
  57. isShowhasPermission: false, //拨打销售电话
  58. applyForIsShow: false, //潜在用户
  59. flag: false,
  60. activityTimeList:[{Id: 1, IsChoose: false, StatusName: "今日活动"},{Id: 2, IsChoose: false, StatusName: "明日活动"}],
  61. activityTimeStatus:''
  62. }
  63. },
  64. methods: {
  65. closeTheWindow(type) {
  66. if (type == 'statusstate') {
  67. const state = this.activeState ? this.activeState.split(',').map(Number) : []
  68. this.listActivityStaus.forEach(item => {
  69. if (state.indexOf(item.Id) !== -1) {
  70. item.IsChoose = true
  71. } else {
  72. item.IsChoose = false
  73. }
  74. })
  75. } else if (type == 'genre') {
  76. const types = this.activityTypeIds ? this.activityTypeIds.split(',').map(Number) : []
  77. this.listActivityType.forEach(item => {
  78. if (types.includes(item.ActivityTypeId)) {
  79. item.IsChoose = true
  80. } else {
  81. item.IsChoose = false
  82. }
  83. })
  84. } else {
  85. const chart = this.chartPermissionIds ? this.chartPermissionIds.split(',').map(Number) : []
  86. this.listChartPermission.forEach(item => {
  87. if (chart.includes(item.ChartPermissionId)) {
  88. item.IsChoose = true
  89. } else {
  90. item.IsChoose = false
  91. }
  92. })
  93. }
  94. },
  95. wanttosignup(id) {
  96. this.activityIdAdd = id
  97. this.selectShow = true
  98. },
  99. countryCcode() {
  100. User.countryCcode().then(res => {
  101. if (res.Ret == 200) {
  102. this.isNeedAddCountryCode = res.Data.IsNeedAddCountryCode
  103. }
  104. })
  105. },
  106. //报名
  107. signupAdd(id, type) {
  108. let timer = null;
  109. if (this.flag) return
  110. clearTimeout(timer)
  111. this.flag = true
  112. this.$store.dispatch('checkHandle').then(res => {
  113. app.globalData.isAuth = res.IsAuth;
  114. app.globalData.isBind = res.IsBind;
  115. })
  116. if (app.globalData.isBind && !app.globalData.isAuth) {
  117. uni.navigateTo({
  118. url: '/pages/login/login'
  119. })
  120. return
  121. } else if (app.globalData.isAuth) {
  122. uni.navigateTo({
  123. url: '/pages/authGuide/authGuide'
  124. })
  125. return
  126. }
  127. this.selectShow = false
  128. if (id == 'id') {
  129. id = this.activityIdAdd
  130. }
  131. if (this.isNeedAddCountryCode) {
  132. this.isAreaCode = true
  133. this.areaCode = {
  134. id,
  135. type
  136. }
  137. } else {
  138. activity.signupAdd({
  139. ActivityId: id,
  140. SignupType: type,
  141. }).then(res => {
  142. if (res.Ret == 200) {
  143. this.hasPermission = res.Data.HasPermission
  144. if (this.hasPermission == 1) {
  145. const index = this.collectList.findIndex(item => item.ActivityId == id)
  146. this.collectList[index].SignupType = type
  147. if (res.Data.GoFollow && res.Data.SignupStatus !== 'Success' || !res.Data
  148. .GoFollow) {
  149. this.isShow = true
  150. } else {
  151. this.goFollow = res.Data.GoFollow
  152. }
  153. this.signupType = res.Data.SignupType
  154. this.signupStatus = res.Data.SignupStatus
  155. this.idTypeCancel = {
  156. cutId: res.Data.ActivityId,
  157. state: 1
  158. }
  159. } else if (this.hasPermission == 2) {
  160. this.jurisdictionList.SellerMobile = res.Data.SellerMobile
  161. this.jurisdictionList.PopupMsg = res.Data.PopupMsg
  162. this.isShowhasPermission = true
  163. } else if (this.hasPermission == 3 || this.hasPermission == 4) {
  164. this.jurisdictionList.PopupMsg = res.Data.PopupMsg
  165. this.applyForIsShow = true
  166. }
  167. }
  168. })
  169. }
  170. timer = setTimeout(() => {
  171. this.flag = false
  172. }, 500)
  173. },
  174. signupCancel(id, type, time) {
  175. const str = time.replace(/-/g, '/')
  176. const date = new Date(str)
  177. const times = date.getTime()
  178. const num = new Date().getTime()
  179. if (times - num <= 3600000) {
  180. uni.showModal({
  181. confirmText: '知道了',
  182. showCancel: false,
  183. confirmColor: '#3385FF',
  184. content: type == 1 ? '活动开始前1小时内无法取消预约外呼,请联系对口销售处理' : '活动开始前1小时内无法取消报名,请联系对口销售处理'
  185. })
  186. return
  187. }
  188. this.isCancelShow = true
  189. this.idTypeCancel = {
  190. id,
  191. type,
  192. cutId: '',
  193. state: 0,
  194. isNum: true
  195. }
  196. },
  197. //去往详情页面
  198. goDetail(item) {
  199. this.public('show', true, '/activityPages/activityDetail/activityDetail?id=', item.ActivityId)
  200. },
  201. //是否展示有权限的行业
  202. isJurisdiction() {
  203. this.$store.dispatch('checkHandle').then(res => {
  204. app.globalData.isAuth = res.IsAuth;
  205. app.globalData.isBind = res.IsBind;
  206. if ((!res.IsAuth) && (!res.IsBind)) { //已授权已绑定
  207. if (this.isShowJurisdiction) {
  208. this.isId = 2
  209. } else {
  210. this.isId = 1
  211. }
  212. this.getUserSearchContent('traverse')
  213. } else if (res.IsAuth) { //未授权
  214. uni.navigateTo({
  215. url: '/pages/authGuide/authGuide'
  216. })
  217. } else if (res.IsBind && !res.IsAuth) { //已授权未绑定
  218. uni.navigateTo({
  219. url: '/pages/login/login'
  220. })
  221. }
  222. })
  223. },
  224. /* 初始化判断token */
  225. authentication() {
  226. this.$store.dispatch('checkHandle').then(res => {
  227. app.globalData.isAuth = res.IsAuth;
  228. app.globalData.isBind = res.IsBind;
  229. })
  230. },
  231. /* 新布局产业选项确定按钮 */
  232. replacementConfirm(type) {
  233. this.page_no = 1
  234. if (type == 'statusstate') {
  235. const arr = []
  236. const str = []
  237. this.listActivityStaus.forEach(key => {
  238. if (key.IsChoose) {
  239. arr.push(key.Id)
  240. str.push(key.StatusName)
  241. }
  242. })
  243. this.activeState = arr.join(',')
  244. const arrTwo = []
  245. const strTwo = []
  246. this.activityTimeList.forEach(key => {
  247. if (key.IsChoose) {
  248. arrTwo.push(key.Id)
  249. strTwo.push(key.StatusName)
  250. }
  251. })
  252. this.activityTimeStatus = arrTwo.join(',')
  253. if (strTwo.length > 0) {
  254. this.activeStateName = strTwo.join(',')
  255. }else{
  256. if (str.length == this.listActivityStaus.length) {
  257. this.activeStateName = '所有状态'
  258. } else if (str.length <= 0) {
  259. this.activeStateName = '活动状态'
  260. } else {
  261. this.activeStateName = str.join(',')
  262. }
  263. }
  264. } else if (type == 'industry') {
  265. const arr = []
  266. const str = []
  267. this.listChartPermission.forEach(key => {
  268. if (key.IsChoose) {
  269. arr.push(key.ChartPermissionId)
  270. str.push(key.PermissionName)
  271. }
  272. })
  273. if (str.length == this.listChartPermission.length) {
  274. this.chartPermissionName = '所有行业'
  275. } else if (str.length <= 0) {
  276. this.chartPermissionName = '行业分类'
  277. } else {
  278. this.chartPermissionName = str.join(',')
  279. }
  280. this.chartPermissionIds = arr.join(',')
  281. } else {
  282. const arr = []
  283. const str = []
  284. this.listActivityType.forEach(key => {
  285. if (key.IsChoose) {
  286. arr.push(key.ActivityTypeId)
  287. str.push(key.ActivityTypeName)
  288. }
  289. })
  290. if (str.length == this.listActivityType.length) {
  291. this.activityTypeName = '所有活动'
  292. } else if (str.length <= 0) {
  293. this.activityTypeName = '活动类型'
  294. } else {
  295. this.activityTypeName = str.join(',')
  296. }
  297. this.activityTypeIds = arr.join(',')
  298. }
  299. this.page_no = 1
  300. this.collectList = []
  301. this.getList()
  302. this.selectComponent(`#${type}`).toggle();
  303. },
  304. /* 新布局产业选项重置按钮 */
  305. replacementBtn(type) {
  306. if (type == 'statusstate') {
  307. this.listActivityStaus.forEach(item => item.IsChoose = false)
  308. this.activityTimeList.forEach(key => {key.IsChoose=false})
  309. this.listActivityStaus[0].IsChoose = true
  310. this.activeState = '1'
  311. this.activityTimeStatus=''
  312. this.activeStateName = '未开始'
  313. } else if (type == 'industry') {
  314. this.listChartPermission=this.listChartPermissionInit
  315. this.chartPermissionIds = ''
  316. this.isShowJurisdiction = false
  317. this.isId = 2
  318. // this.getUserSearchContent()
  319. this.listChartPermission.map(item => item.IsChoose = false)
  320. this.chartPermissionName = '行业分类'
  321. } else {
  322. this.listActivityType.forEach(item => item.IsChoose = false)
  323. this.activityTypeIds = ''
  324. this.activityTypeName = '活动类型'
  325. }
  326. },
  327. //状态的下拉选择
  328. overallBtn(type, item) {
  329. this.listActivityStaus.forEach(key => {
  330. if (key.Id == item.Id) {
  331. key.IsChoose = !key.IsChoose
  332. }
  333. })
  334. },
  335. // 行业的下拉选择
  336. overallClick(type, item) {
  337. if (this.isShowJurisdiction) return
  338. this.listChartPermission.forEach(key => {
  339. if (key.ChartPermissionId == item.ChartPermissionId) {
  340. key.IsChoose = !key.IsChoose
  341. }
  342. })
  343. },
  344. //类型的下拉选择
  345. overallActivity(type, item) {
  346. this.listActivityType.forEach(key => {
  347. if (key.ActivityTypeId == item.ActivityTypeId) {
  348. key.IsChoose = !key.IsChoose
  349. }
  350. })
  351. },
  352. init() {
  353. this.signupType = ''
  354. this.goFollow = false
  355. this.signupStatus = ''
  356. this.isShow = false
  357. this.isCancelShow = false
  358. },
  359. public(type, flag, purl, price = '') {
  360. this.$store.dispatch('checkHandle', type).then(res => {
  361. app.globalData.isAuth = res.IsAuth;
  362. app.globalData.isBind = res.IsBind;
  363. if ((!res.IsAuth) && (!res.IsBind)) { //已授权已绑定
  364. if (flag) {
  365. uni.navigateTo({
  366. url: purl + price,
  367. });
  368. }
  369. } else if (res.IsAuth) { //未授权
  370. uni.navigateTo({
  371. url: '/pages/authGuide/authGuide'
  372. })
  373. } else if (res.IsBind && !res.IsAuth) { //已授权未绑定
  374. uni.navigateTo({
  375. url: '/pages/login/login'
  376. })
  377. }
  378. })
  379. },
  380. //今日,明日 活动的选择
  381. timeListBtn(type,item){
  382. this.activityTimeList.forEach(key => {
  383. if (key.Id == item.Id) {
  384. key.IsChoose = !key.IsChoose
  385. }
  386. })
  387. }
  388. },
  389. }