model_3.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <view class="mone">
  3. </view>
  4. </template>
  5. <script>
  6. import {
  7. mapState,
  8. mapMutations
  9. } from 'vuex';
  10. import {
  11. getUserCardInfo,
  12. getCommonUserCardInfo,
  13. getShowTemplateItem,
  14. subShowTemplateOrder
  15. } from '@/api/model.js'
  16. import {
  17. getUser
  18. } from '@/api/user.js';
  19. export default {
  20. props: {
  21. isShare:{
  22. type: Boolean,
  23. default:false
  24. },
  25. //1为模板2为用户
  26. isLook:{
  27. type: Number,
  28. default:0
  29. },
  30. cardInfo: {
  31. type: Object,
  32. default: () => {
  33. return {
  34. name: '佚名',
  35. avatar: 'https://api.myjie.cn/resource/icon/base/f.png',
  36. age: '41',
  37. twelve: '鼠',
  38. work_year: '10',
  39. constellation: '处女座',
  40. ancestral_place: '浙江',
  41. minority: '汉族',
  42. education: '本科',
  43. service_area_all: ['浙江省台州市路桥区'],
  44. service_min_price: 100,
  45. service_max_price: 200,
  46. service_time_type_title: '每小时',
  47. service_intro_content: '高级育婴师证|高级催乳师证|早产儿护理师母婴护理证|金牌月嫂证|产后恢复师证|公共营养师证|月子药膳调理师证|国际宝宝睡眠咨询师证|普通话二级甲等|中央广播电视大学学历|学前教育专业,深耕幼教十年,技能全面,性格活泼,有亲和力,做事干净利落,有很强的责任心。对宝宝有爱心,体贴新手妈妈。专业技能熟练。应急能力强。让家人放心、产妇舒心的坐好月子。',
  48. service_intro_imgs: ['https://api.myjie.cn/resource/icon/base/pj1.png',
  49. 'https://api.myjie.cn/resource/icon/base/pj2.png',
  50. 'https://api.myjie.cn/resource/icon/base/pj3.png',
  51. 'https://api.myjie.cn/resource/icon/base/pj4.png'
  52. ],
  53. service_audit_imgs: ['https://api.myjie.cn/resource/icon/base/zs1.png',
  54. 'https://api.myjie.cn/resource/icon/base/zs2.png',
  55. 'https://api.myjie.cn/resource/icon/base/zs3.png',
  56. 'https://api.myjie.cn/resource/icon/base/zs4.png'
  57. ],
  58. service_project_ar: [{
  59. title: '婴幼儿睡眠管理',
  60. content: '如:日夜颠倒、睡眠不规律、乳头混淆、奶睡、抱睡等问题,帮助宝爸宝妈规律孩子作息、解决婴幼儿喂养困扰,培养良好的生活、学习习惯。'
  61. }, {
  62. title: '特色月子餐',
  63. content: '套用客户的一句话“养眼、养心更养胃”!家常菜、面食、点心、甜品、靓汤、五谷杂粮粥、婴幼儿花样辅食等。'
  64. },
  65. {
  66. title: '早产儿特殊护理',
  67. content: '包括早产儿基础护理、安全喂养方法、追赶性生长、消化与免疫系统等技能,根据宝宝具体情况给予早产儿家长的科学入户指导。'
  68. },
  69. {
  70. title: '0-6岁早期教育',
  71. content: '在婴孩最敏感最能接受的时期进行事半功倍的适时教育,针对不同年龄段的孩子,开发婴幼儿潜能的教育,为孩子多元化和健康人格打下良好基础。'
  72. }
  73. ],
  74. is_type_audit: 1
  75. }
  76. }
  77. },
  78. },
  79. data() {
  80. return {
  81. }
  82. },
  83. computed: {
  84. ...mapState(['baseURL']),
  85. ...mapState('user', ['userInfo'])
  86. },
  87. onShow() {
  88. // this.getUser()
  89. },
  90. onUnload() {
  91. let pages = getCurrentPages(); //获取加载的页面
  92. let currentPage = pages[pages.length - 2]; //获取当前页面的对象
  93. if (currentPage.route == 'pages/public/wxLogin') {
  94. uni.switchTab({
  95. url: '/pages/index/index'
  96. })
  97. }
  98. },
  99. methods: {}
  100. }
  101. </script>
  102. <style lang="scss" scoped>
  103. .mone {
  104. background-color: #f8e1df;
  105. padding-bottom: 30rpx;
  106. }
  107. </style>