123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <template>
- <view class="mone">
-
-
- </view>
- </template>
- <script>
- import {
- mapState,
- mapMutations
- } from 'vuex';
- import {
- getUserCardInfo,
- getCommonUserCardInfo,
- getShowTemplateItem,
- subShowTemplateOrder
- } from '@/api/model.js'
- import {
- getUser
- } from '@/api/user.js';
- export default {
- props: {
- isShare:{
- type: Boolean,
- default:false
- },
- //1为模板2为用户
- isLook:{
- type: Number,
- default:0
- },
- cardInfo: {
- type: Object,
- default: () => {
- return {
- name: '佚名',
- avatar: 'https://api.myjie.cn/resource/icon/base/f.png',
- age: '41',
- twelve: '鼠',
- work_year: '10',
- constellation: '处女座',
- ancestral_place: '浙江',
- minority: '汉族',
- education: '本科',
- service_area_all: ['浙江省台州市路桥区'],
- service_min_price: 100,
- service_max_price: 200,
- service_time_type_title: '每小时',
- service_intro_content: '高级育婴师证|高级催乳师证|早产儿护理师母婴护理证|金牌月嫂证|产后恢复师证|公共营养师证|月子药膳调理师证|国际宝宝睡眠咨询师证|普通话二级甲等|中央广播电视大学学历|学前教育专业,深耕幼教十年,技能全面,性格活泼,有亲和力,做事干净利落,有很强的责任心。对宝宝有爱心,体贴新手妈妈。专业技能熟练。应急能力强。让家人放心、产妇舒心的坐好月子。',
- service_intro_imgs: ['https://api.myjie.cn/resource/icon/base/pj1.png',
- 'https://api.myjie.cn/resource/icon/base/pj2.png',
- 'https://api.myjie.cn/resource/icon/base/pj3.png',
- 'https://api.myjie.cn/resource/icon/base/pj4.png'
- ],
- service_audit_imgs: ['https://api.myjie.cn/resource/icon/base/zs1.png',
- 'https://api.myjie.cn/resource/icon/base/zs2.png',
- 'https://api.myjie.cn/resource/icon/base/zs3.png',
- 'https://api.myjie.cn/resource/icon/base/zs4.png'
- ],
- service_project_ar: [{
- title: '婴幼儿睡眠管理',
- content: '如:日夜颠倒、睡眠不规律、乳头混淆、奶睡、抱睡等问题,帮助宝爸宝妈规律孩子作息、解决婴幼儿喂养困扰,培养良好的生活、学习习惯。'
- }, {
- title: '特色月子餐',
- content: '套用客户的一句话“养眼、养心更养胃”!家常菜、面食、点心、甜品、靓汤、五谷杂粮粥、婴幼儿花样辅食等。'
- },
- {
- title: '早产儿特殊护理',
- content: '包括早产儿基础护理、安全喂养方法、追赶性生长、消化与免疫系统等技能,根据宝宝具体情况给予早产儿家长的科学入户指导。'
- },
- {
- title: '0-6岁早期教育',
- content: '在婴孩最敏感最能接受的时期进行事半功倍的适时教育,针对不同年龄段的孩子,开发婴幼儿潜能的教育,为孩子多元化和健康人格打下良好基础。'
- }
- ],
- is_type_audit: 1
- }
- }
- },
- },
- data() {
- return {
- }
- },
- computed: {
- ...mapState(['baseURL']),
- ...mapState('user', ['userInfo'])
- },
- onShow() {
- // this.getUser()
- },
- onUnload() {
- let pages = getCurrentPages(); //获取加载的页面
- let currentPage = pages[pages.length - 2]; //获取当前页面的对象
- if (currentPage.route == 'pages/public/wxLogin') {
- uni.switchTab({
- url: '/pages/index/index'
- })
- }
- },
- methods: {}
- }
- </script>
- <style lang="scss" scoped>
- .mone {
- background-color: #f8e1df;
- padding-bottom: 30rpx;
- }
- </style>
|