index.wxml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <view class="container {{CanScrollCSS}} FlexColumn" style='min-height:{{Containnerheight}}rpx;'>
  2. <view class="panelTop {{CanScrollCSS}} FlexColumn">
  3. <view class="panel1 FlexColumn">
  4. <image src="../images/pic_01.png" class="pic_01" bind:tap="goto" data-url="../../packageReader/main/index"></image>
  5. </view>
  6. <view class="panel2 FlexColumn">
  7. <view id="txtWordsInput" class="btn01 FlexColumn" bind:tap="goto" data-url="wordsinput">
  8. <view>制作</view>
  9. </view>
  10. <view class="btn02 FlexColumn" bind:tap="goto" data-url="myinfo">
  11. <view>我的文库</view>
  12. <view class="btn021 FlexColumn" wx:if="{{UnReadCount>0}}">未读</view>
  13. </view>
  14. </view>
  15. <view class="panel3 FlexColumn">
  16. <view class="panel31 FlexRow" bind:tap="initGuide">
  17. <image src="../images/sysIcon_b19.png" class="sysIcon_b19"></image>
  18. <view>新手引导</view>
  19. </view>
  20. <view class="panelLine"></view>
  21. <view class="panel31 FlexRow" bind:tap="goto" data-url="help">
  22. <image src="../images/sysIcon_a01.png" class="sysIcon_a01"></image>
  23. <view>如何提升AI生成内容的质量</view>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="panelFooter FlexColumn">
  28. <view class="panelFooter1 FlexColumn">
  29. <image src="../images/pic_02.png" class="pic_02"></image>
  30. </view>
  31. <view class="panelFooter2 FlexRow">
  32. <view class="panelFooterBtn FlexColumn" >
  33. <view>制作</view>
  34. <view class="panelFooterLine1"></view>
  35. </view>
  36. <view class="panelFooterBtn FlexColumn" bind:tap="goto" data-url="articlefine">
  37. <view style="color:#4d4d4d">精选</view>
  38. <view class="panelFooterLine"></view>
  39. </view>
  40. <view class="panelFooterBtn FlexColumn" bind:tap="goto" data-url="../../packageProduct/main/product">
  41. <view style="color:#4d4d4d">秒过</view>
  42. <view class="panelFooterLine"></view>
  43. </view>
  44. </view>
  45. <view class="iphone10plus" wx:if="{{IsIPhoneX}}"></view>
  46. </view>
  47. </view>
  48. <view wx:if="{{IsShowRemind}}" class="panelRemindParent {{parentAnimation}} container FlexColumn" style='min-height:{{Containnerheight}}rpx;'>
  49. <view class="panelRemind {{panelAnimation}} FlexColumn">
  50. <image src="../images/sysIcon_b10.png" class="sysIcon_b10"></image>
  51. <view class="panelRemind1 FlexRow">
  52. <image src="../images/sysIcon_b09.png" class="sysIcon_b09"></image>
  53. <view>次数上限</view>
  54. </view>
  55. <view class="panelRemind2 FlexColumn">
  56. <view class="textRemind FlexColumn">
  57. <text>很抱歉,您今日的生成次数已达到上限。请您明日再次使用,我们将继续为您提供服务。</text>
  58. <text style="margin-top: 20rpx;">每天可生成文章{{MaxCount}}次。感谢您的支持。</text>
  59. </view>
  60. <view class="btnReind1 FlexColumn" catch:tap="showRemind">知道了</view>
  61. <view class="btnReind2 FlexColumn" catch:tap="goto" data-url="myarticles">去我的文库看看</view>
  62. </view>
  63. </view>
  64. </view>
  65. <!-- 引入引导模板 -->
  66. <import src="../templates/guide-container.wxml"/>
  67. <!-- 显示引导 -->
  68. <template is="guide-container" data="{{IsShowGuideContainer, panelGuideContainerTop, panelGuideContainerWidth1, panelGuideContainerHeight1, panelGuideContainerLeft2, Containnerheight, panelGuideContainerImage, panelGuideContainerImageLeft, panelGuideContainerImageTop, panelGuideContainerCloseLeft, panelGuideContainerCloseTop}}"/>