flow.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. <template>
  2. <view class="flow">
  3. <!-- #ifdef H5 -->
  4. <u-navbar v-if="mixin_type=='H5'" back-text=" " :custom-back='goBack' title="流量卡" :border-bottom="false" :background="{backgroundColor: '#d52e4c'}" back-icon-color="#fff" title-color="#fff"></u-navbar>
  5. <!-- #endif -->
  6. <view class="share" @tap="Message()" v-if="shareBtn">
  7. {{shareHideText}}
  8. </view>
  9. <view class="query" @tap.stop="kefu()">
  10. <image src="../../static/img/lianxikefu@2x.png" mode=""></image>联系客服
  11. <!-- <button open-type="contact" class="douyinbutton" v-if="platformType==2&&mixin_type=='TOUTIAO'">
  12. </button> -->
  13. <button open-type="byteHi" data-im-id='28040772090' class="douyinbutton" v-if="platformType==2&&mixin_type=='TOUTIAO'">
  14. </button>
  15. </view>
  16. <view class="top">
  17. <button open-type="contact">
  18. <!-- <image :src="configAll.flow_main_logo" @tap.stop="kefu()" @tap="Herf()" mode="widthFix"></image> -->
  19. <image :src="configAll.flow_main_logo" @tap.stop="kefu()" mode="widthFix"></image>
  20. </button>
  21. </view>
  22. <view class="queryLine" @tap="flowOrder()">
  23. 订单查询
  24. </view>
  25. <view class="list">
  26. <view class="box" v-for="(item,index) in boxList" :key="index" @tap="ListClick(item)">
  27. <view class="mark">{{ index + 1 }}</view>
  28. <image :src="item.logo" class="img" mode="aspectFill"></image>
  29. <view class="boxCon">
  30. <view class="tit">
  31. {{item.name}}
  32. </view>
  33. <text>{{item.summary}}</text>
  34. <view class="boxBtn">
  35. 立即选购
  36. </view>
  37. </view>
  38. </view>
  39. <u-loadmore margin-top="30" margin-bottom="30" :status="status" icon-color="#fff" color="#fff"/>
  40. </view>
  41. <!-- 联系客服 -->
  42. <w-Load :wx="wx" :isFlow="true" v-on:childByValue="childByValue"></w-Load>
  43. <u-popup v-model="copeHide" border-radius="20" mode="center">
  44. <view class="agreement copeHide">
  45. <image src="/static/img/up.png" class="label2" @tap="copeHide = false"></image>
  46. <view class="title">
  47. 温馨提示
  48. </view>
  49. <view class="copyText">客服电话:{{configAll.flow_service_tel}}</view>
  50. <view class="btn" @tap="buttonTypePhone()">
  51. 一键拨打
  52. </view>
  53. </view>
  54. </u-popup>
  55. </view>
  56. </template>
  57. <script>
  58. import wLoad from "@/components/w-load/w-load.vue"
  59. export default {
  60. components:{
  61. wLoad : wLoad
  62. },
  63. data() {
  64. return {
  65. platformType:'',//平台类型
  66. wx:false, //微信公众号二维码展示
  67. copeHide:false,
  68. status: 'loadmore',
  69. list: 10,
  70. page: 1,
  71. boxList:[],
  72. shareBtn:false,//按钮是否显示直播 视频
  73. shareHideText:'直播',
  74. configAll:'',//基本配置
  75. }
  76. },
  77. onShow() {
  78. console.log(341,getCurrentPages())
  79. if(this.mixin_type!='TOUTIAO' && this.mixin_type!='H5'){
  80. console.log(ks.getLaunchOptionsSync().scene)
  81. let scene=ks.getLaunchOptionsSync().scene
  82. if(scene=='011041'||scene=='021041'|| scene=='1041'){
  83. // 直播间
  84. this.shareHideText='直播'
  85. this.shareBtn=true
  86. }else if(scene=='011040'||scene=='021040'||scene=='1040'){
  87. // 视频
  88. this.shareHideText='视频'
  89. this.shareBtn=true
  90. }
  91. }
  92. },
  93. onBackPress(options) {
  94. console.log(12,options)
  95. console.log(34,getCurrentPages())
  96. if(getCurrentPages().length==1){
  97. return true;
  98. }else{
  99. return false;
  100. }
  101. },
  102. onLoad(option) {
  103. this.commonConfig()
  104. if(option.chanId){
  105. uni.setStorageSync('chanId', option.chanId);
  106. }else{
  107. uni.removeStorageSync('chanId');
  108. }
  109. this.$http.list({type:2,page:this.page,limit:10})
  110. .then(res=>{
  111. console.log(res)
  112. if(res.data.code==1){
  113. this.boxList=res.data.data.data
  114. }
  115. })
  116. },
  117. methods: {
  118. goBack(){
  119. if(getCurrentPages().length==1){
  120. return
  121. }else{
  122. let chanid=uni.getStorageSync('chanId')?uni.getStorageSync('chanId'):''
  123. uni.redirectTo({
  124. url:'/pages/index/index?chanId='+chanid
  125. })
  126. }
  127. },
  128. // 系统配置
  129. commonConfig(){
  130. this.$http.commonConfig()
  131. .then(res=>{
  132. if(res.data.code==1){
  133. this.configAll=res.data.data
  134. // #ifdef MP-TOUTIAO
  135. this.platformType= res.data.data.flow_service_dy
  136. // #endif
  137. // #ifdef MP-KUAISHOU
  138. this.platformType= res.data.data.flow_service_ks
  139. // #endif
  140. // #ifdef H5
  141. this.platformType= res.data.data.flow_service_h5
  142. // #endif
  143. // if(this.mixin_type!='TOUTIAO' && this.mixin_type!='H5'){
  144. // this.platformType= res.data.data.flow_service_ks
  145. // }if(this.mixin_type=='H5'){
  146. // this.platformType= res.data.data.flow_service_h5
  147. // }if(this.mixin_type=='TOUTIAO'){
  148. // this.platformType= res.data.data.flow_service_dy
  149. // }
  150. // uni.showModal({
  151. // title:this.mixin_type+'----'+this.platformType
  152. // })
  153. }
  154. })
  155. },
  156. childByValue: function (childValue) {
  157. this.wx = childValue
  158. },
  159. buttonTypePhone(){
  160. if(this.mixin_type!='TOUTIAO' && this.mixin_type!='H5'){
  161. ks.makePhoneCall({
  162. phoneNumber: this.configAll.flow_service_tel, // 仅为示例,并非真实的电话号码
  163. });
  164. }else{
  165. uni.makePhoneCall({
  166. phoneNumber: this.configAll.flow_service_tel
  167. });
  168. }
  169. },
  170. kefu(){
  171. // if(this.mixin_type!='TOUTIAO' && this.mixin_type!='H5'){
  172. // this.copeHide=true;
  173. // }else if(this.mixin_type=='H5'){
  174. // this.wx=true;
  175. // }
  176. if(this.platformType==1){
  177. this.copeHide=true;
  178. }
  179. if(this.platformType==2&&this.mixin_type!='TOUTIAO'){
  180. if(this.mixin_type=='H5'){
  181. window.location.href=this.configAll.flow_service_link
  182. }else{
  183. uni.navigateTo({
  184. url:'/pages/webview/webview?url='+encodeURIComponent(JSON.stringify(this.configAll.flow_service_link))
  185. })
  186. }
  187. }
  188. if(this.platformType==3){
  189. this.wx=true;
  190. }
  191. },
  192. // H5 跳转
  193. Herf(url){
  194. if(!this.platformType){
  195. //#ifdef H5
  196. window.location.href = this.configAll.flow_main_link
  197. //#endif
  198. }else{
  199. this.kefu()
  200. }
  201. },
  202. // 跳转到直播设置界面
  203. Message(){
  204. uni.navigateTo({
  205. url: '/pages/Message/Message?url='+'/pages/flow/flow',
  206. })
  207. },
  208. flowHref(){
  209. this.url = decodeURIComponent(this.configAll.flow_main_link)
  210. },
  211. // 号码详情
  212. ListClick(item){
  213. if(item.link){
  214. if(this.mixin_type=='H5'){
  215. window.location.href=item.link
  216. }else{
  217. uni.navigateTo({
  218. url:'/pages/webview/webview?url='+encodeURIComponent(JSON.stringify(item.link))
  219. })
  220. }
  221. }else{
  222. uni.navigateTo({
  223. url: '/pages/flowDetails/flowDetails?id='+item.id+'&chanId='+uni.getStorageSync('chanId'),
  224. })
  225. }
  226. },
  227. // 查询界面
  228. flowOrder(){
  229. uni.navigateTo({
  230. url: '/pages/flowOrder/flowOrder?chanId='+uni.getStorageSync('chanId'),
  231. })
  232. },
  233. },
  234. onReachBottom() {
  235. this.status = 'loading';
  236. this.page = ++ this.page;
  237. this.$http.list({type:2,page:this.page,limit:10}).then(res=>{
  238. // console.log(res)
  239. if(res.data.code==1){
  240. if(this.page<res.data.data.per_page || this.page == res.data.data.per_page){
  241. let arr=this.boxList.concat(res.data.data.data)
  242. this.boxList=arr;
  243. }
  244. this.status = 'nomore'
  245. }else{
  246. this.status = 'nomore'
  247. }
  248. })
  249. }
  250. }
  251. </script>
  252. <style lang="scss">
  253. @import '../index/index.scss';
  254. .agreement{
  255. width: 600rpx;
  256. max-height: 930rpx;
  257. padding:0 30rpx;
  258. // box-sizing: border-box;
  259. .copyText{
  260. margin: 60rpx 0;
  261. text-align: center;
  262. font-size: 36rpx;
  263. // font-weight: 700;
  264. }
  265. .label2{
  266. float: right;
  267. width: 21rpx;
  268. height: 21rpx;
  269. margin-top:28rpx;
  270. }
  271. .title{
  272. font-size: 30rpx;
  273. font-weight: 700;
  274. margin:20rpx 0;
  275. text-align: center;
  276. }
  277. /deep/ .u-drawer__scroll-view{
  278. position: relative;
  279. }
  280. .btn{
  281. padding: 20rpx;
  282. border-radius: 10rpx;
  283. text-align: center;
  284. border:1rpx solid #d8d8d8;
  285. font-size: 28rpx;
  286. width: 100%;
  287. margin-bottom: 10rpx;
  288. background-color: $uni-color-BGC;
  289. color: #fff;
  290. }
  291. }
  292. page{
  293. min-height: 100%;
  294. display: flex;
  295. background-color: #5a70f8;
  296. }
  297. .flow{
  298. background-color: #5a70f8;
  299. flex: 1;
  300. .share{
  301. position: fixed;
  302. right: 30rpx;
  303. bottom: 360rpx;
  304. height: 100rpx;
  305. line-height: 100rpx;
  306. text-align: center;
  307. width: 100rpx;
  308. background-color: $uni-color-BGC;
  309. font-size: 30rpx;
  310. color: #fff;
  311. border-radius: 50%;
  312. z-index: 111;
  313. }
  314. .query{
  315. .douyinbutton{
  316. position: absolute;
  317. top: 0;
  318. right: 0;
  319. bottom: 0;
  320. left: 0;
  321. opacity: 0;
  322. }
  323. image{
  324. width: 28rpx;
  325. height: 28rpx;
  326. margin-right: 8rpx;
  327. vertical-align: middle;
  328. }
  329. position: fixed;
  330. top: 160rpx;
  331. right: -20rpx;
  332. width: 180rpx;
  333. height: 60rpx;
  334. line-height: 60rpx;
  335. text-align: center;
  336. border-radius: 24rpx;
  337. font-size: 24rpx;
  338. color: #fff;
  339. background-color: $uni-color-BGC;
  340. z-index: 100;
  341. box-shadow: 10rpx 1rpx 10rpx 1rpx rgba(0,0,0,0.5)
  342. }
  343. .top{
  344. button{
  345. background: transparent;
  346. line-height: 1;
  347. padding: 0;
  348. border: 0;
  349. }
  350. button::after{
  351. display: none;
  352. }
  353. image{
  354. width: 100%;
  355. }
  356. }
  357. .queryLine{
  358. width: 670rpx;
  359. margin: 30rpx auto 0;
  360. background-color: $uni-color-BGC;
  361. border-radius: 26rpx;
  362. font-size: 34rpx;
  363. height: 80rpx;
  364. line-height: 80rpx;
  365. text-align: center;
  366. color: #fff;
  367. }
  368. .list{
  369. width: 670rpx;
  370. margin: 20rpx auto;
  371. .box{
  372. position: relative;
  373. background-color: #fff;
  374. border-radius: 10rpx;
  375. box-sizing: border-box;
  376. padding: 20rpx 30rpx;
  377. padding-left: 290rpx;
  378. padding-bottom: 100rpx;
  379. margin-bottom: 20rpx;
  380. .mark{
  381. background:rgba(0,0,0,0.5);
  382. color: white;
  383. position: absolute;
  384. left: 0;
  385. top: 0;
  386. border-radius:10rpx 0 10rpx 0 ;
  387. width: 50rpx;
  388. text-align: center;
  389. }
  390. .img{
  391. position: absolute;
  392. width: 220rpx;
  393. height: 140rpx;
  394. left: 30rpx;
  395. top: 50%;
  396. transform: translateY(-50%);
  397. }
  398. .tit{
  399. font-weight: bold;
  400. font-size: 26rpx;
  401. color: #2A2A2A;
  402. margin-bottom: 20rpx;
  403. }
  404. text{
  405. display: inline-block;
  406. font-size: 24rpx;
  407. color: #7A7A7A;
  408. height: 50rpx;
  409. }
  410. .boxBtn{
  411. margin-top: 30rpx;
  412. width: 170rpx;
  413. height: 47rpx;
  414. line-height: 47rpx;
  415. text-align: center;
  416. background: $uni-color-BGC;
  417. border-radius: 10rpx;
  418. font-size: 26rpx;
  419. color: #fff;
  420. float: right;
  421. }
  422. }
  423. }
  424. }
  425. </style>