bind.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view class="app-content">
  3. <view class="bind-des_box">
  4. <view>
  5. 花极客
  6. </view>
  7. <view>
  8. 您好,我在整理客户信息,帮忙填下以下内容
  9. </view>
  10. </view>
  11. <AppBindInfo
  12. @bindInfo="bindInfo"
  13. nameTetx="店长姓名"></AppBindInfo>
  14. <view class="btn-wrap">
  15. <button class="admin-button-com blue big">确认</button>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. import AppBindInfo from "@/components/app-bind-info";
  21. export default {
  22. name:'MenberBind',
  23. components:{
  24. AppBindInfo
  25. },
  26. methods:{
  27. // 绑定信息
  28. bindInfo(val){
  29. console.log(val)
  30. }
  31. }
  32. }
  33. </script>
  34. <style lang="scss" scoped>
  35. .app-content {
  36. padding-top: 20upx;
  37. & .btn-wrap {
  38. padding: 60upx 30upx;
  39. & .admin-button-com {
  40. width: 100%;
  41. }
  42. }
  43. }
  44. .bind-des_box {
  45. margin-bottom: 20upx;
  46. padding: 30upx;
  47. background-color: #FFFFFF;
  48. & > view:nth-child(1) {
  49. color: #333333;
  50. font-size: 28upx;
  51. font-weight: 600;
  52. margin-bottom: 19upx;
  53. }
  54. & > view:nth-child(2) {
  55. color: #666666;
  56. font-size: 28upx;
  57. font-weight: 400;
  58. }
  59. }
  60. </style>