workGuide.wxml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!--pages/indexPages/workGuide/workGuide.wxml-->
  2. <view class="background">
  3. <image src="https://smzc-1253299035.cos.ap-nanjing.myqcloud.com/pdjh/miniProgrameYyQh/workGuideBg1.png" mode="widthFix" />
  4. </view>
  5. <view class="tips">办理指南</view>
  6. <!-- <view class="tip">增值税申报-所需资料</view> -->
  7. <view class="tip">{{business.ywxxmc?business.ywxxmc + '—':''}}所需资料</view>
  8. <view class="guide-container">
  9. <scroll-view class="lists" scroll-y>
  10. <view class="list" wx:for="{{guideList}}" wx:key="index">
  11. <view class="index"></view>
  12. <view class="content">
  13. <view class="title">{{item.zlmc}}</view>
  14. <view wx:if="{{item.zlms && item.zlms != 'null'}}" class="introduce">{{item.zlms}}</view>
  15. </view>
  16. <view wx:if="{{item.zllj && item.zllj != 'null'}}" class="look" hover-class="active" data-item="{{item}}" catch:tap="look">查看</view>
  17. </view>
  18. </scroll-view>
  19. <view class="list-tip">
  20. <view>备注:</view>
  21. <view>除以上资料外需携带营业执照副本原件或复印件加盖公章、公章(便于查询)。</view>
  22. <view>具体相关资料根据税务机关实际要求出具。</view>
  23. </view>
  24. </view>
  25. <view wx:if="{{type == 1}}" class="toHandle" hover-class="active" bind:tap="toYy">
  26. <span>立即预约</span>
  27. </view>
  28. <view wx:if="{{type == 2}}" class="toHandle" hover-class="active" bind:tap="toPd">
  29. <span>立即取号</span>
  30. </view>