sellerRegulations.vue 1015 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template name="regulations">
  2. <view class="regulations-template">
  3. <view class="regulations-title" @tap.stop="hanldOperationConfim">
  4. <text class="text">售后条例:</text>
  5. <text>{{regulaText}}</text>
  6. <text class="iconfont icon-xiayibu"></text>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default{
  12. name:'regulations',
  13. props:{
  14. regulaDatas:{
  15. type:Object
  16. }
  17. },
  18. data(){
  19. return{
  20. regulaText:'无条理',
  21. }
  22. }
  23. }
  24. </script>
  25. <style lang="scss">
  26. .regulations-template{
  27. width: 100%;
  28. height: auto;
  29. background: #FFFFFF;
  30. float: left;
  31. margin-top: 24rpx;
  32. .regulations-title{
  33. width: 702rpx;
  34. padding: 0 24rpx;
  35. height: 88rpx;
  36. line-height: 88rpx;
  37. position: relative;
  38. border-bottom: 1px solid #EBEBEB;
  39. .text{
  40. font-size: $font-size-28;
  41. color: $text-color;
  42. }
  43. .iconfont{
  44. width: 50rpx;
  45. height: 88rpx;
  46. line-height: 88rpx;
  47. color: #999999;
  48. display: block;
  49. position: absolute;
  50. right: 0;
  51. top: 0;
  52. }
  53. }
  54. }
  55. </style>