not.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <template>
  2. <view>
  3. <image src="../static/images/bg.png" mode="widthFix" class="bg"></image>
  4. <view class="con">
  5. <view class="title">AI智能名片</view>
  6. <view class="list">
  7. <view class="li dflex">
  8. <image src="../static/images/card_ico1.png"></image>
  9. 低成本拓客,线索一键入库
  10. </view>
  11. <view class="li dflex">
  12. <image src="../static/images/card_ico2.png"></image>
  13. 定制企业/个人专属名片
  14. </view>
  15. <view class="li dflex">
  16. <image src="../static/images/card_ico3.png"></image>
  17. 无需加好友,随时随地畅聊
  18. </view>
  19. <view class="li dflex">
  20. <image src="../static/images/card_ico4.png"></image>
  21. 客户轨迹追踪推送,快速成交
  22. </view>
  23. </view>
  24. <view class="btn" @click="tocreate()">创建一张电子名片</view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. const req = require('../../utils/request.js');
  30. const api = require('../../utils/api.js');
  31. const util = require('../../utils/util.js');
  32. var app = getApp();
  33. export default {
  34. components: {},
  35. data() {
  36. return {
  37. systems: {},
  38. swiperCurrent: 0,
  39. bannerList: ['../../static/images/n_ban.png', '../../static/images/n_ban.png'],
  40. identy: 1,
  41. isShowIdenty: false,
  42. userInfo: {},
  43. typeRole: '',
  44. identityRole: 2 //默认销售
  45. };
  46. },
  47. onLoad() {},
  48. onShow() {},
  49. methods: {
  50. jumpUrl(url) {
  51. uni.redirectTo({
  52. url: url
  53. });
  54. },
  55. tocreate() {
  56. this.jumpUrl('/card/create/create');
  57. }
  58. }
  59. };
  60. </script>
  61. <style>
  62. @import './not.css';
  63. </style>