This commit is contained in:
@@ -30,5 +30,5 @@ const config = {
|
|||||||
config.baseUrl = 'http://183.230.235.66:11010/api';
|
config.baseUrl = 'http://183.230.235.66:11010/api';
|
||||||
|
|
||||||
|
|
||||||
// config.baseUrl = 'http://70b1d4b3.r28.cpolar.top';
|
// config.baseUrl = 'http://46a44a1b.r28.cpolar.top';
|
||||||
export default config;
|
export default config;
|
||||||
|
@@ -13,6 +13,9 @@ const install = (Vue, vm) => {
|
|||||||
|
|
||||||
login: (params = {}) => vm.$u.post(config.adminPath+'/auth/login', params),
|
login: (params = {}) => vm.$u.post(config.adminPath+'/auth/login', params),
|
||||||
getUserInfo: (params = {}) => vm.$u.get(config.adminPath+'/system/user/profile', params),
|
getUserInfo: (params = {}) => vm.$u.get(config.adminPath+'/system/user/profile', params),
|
||||||
|
|
||||||
|
//首页公告
|
||||||
|
getNotices:(params = {})=>vm.$u.get(config.adminPath+'/property/mobile/notices/todayList', params),
|
||||||
//工作台列表
|
//工作台列表
|
||||||
getFunList:(params = {})=>vm.$u.get(config.adminPath+'/system/funList/list', params),
|
getFunList:(params = {})=>vm.$u.get(config.adminPath+'/system/funList/list', params),
|
||||||
//我的访客列表
|
//我的访客列表
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -1,87 +1,118 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="detail-container">
|
<view class="detail-container">
|
||||||
<!-- 可滚动内容区 -->
|
<!-- 可滚动内容区 -->
|
||||||
<view class="scroll-content">
|
<view class="scroll-content">
|
||||||
<!-- 问题标题 -->
|
<!-- 问题标题 -->
|
||||||
<view class="question-title">
|
<view class="question-title">
|
||||||
包月停车、临时停车的办理流程及收费标准
|
{{info.title}}
|
||||||
<view class="title-underline"></view>
|
<view class="title-underline"></view>
|
||||||
</view>
|
</view>
|
||||||
<!-- 内容区 -->
|
<!-- 内容区 -->
|
||||||
<view class="question-content">
|
<view class="question-content">
|
||||||
<view class="question-desc">
|
<view class="question-desc">
|
||||||
您好:本项目只有8组团为包月停车,办理流程为:业主携带身份证至物业客户中心前台办理,租户带租赁合同和身份证到前台办理即可;5,6,7,9,10,11组团无包月停车,无需办理包月停车手续;临时停车无需办理。5,6组团为私家车位,无需收费。8组团包月停车的收费标准为:500元/8组团临时停车的收费标准为:小区内9,10,11组团临时停车的收费标准为:二轮车:每小时1元,12小时内5元/次,24小时内10元/次;小型车:每小时3元,12小时内10元/次,24小时内20元/次;大型车:每小时4元,12小时内15元/次,24小时内25元/次
|
{{info.content}}
|
||||||
</view>
|
</view>
|
||||||
<image src="/static/ic_q_d_01.png" class="question-img" mode="widthFix" />
|
|
||||||
</view>
|
<image src="/static/ic_q_d_01.png" class="question-img" mode="widthFix" />
|
||||||
</view>
|
<view class="question-time">{{info.time}}</view>
|
||||||
</view>
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
methods: {
|
data() {
|
||||||
|
return {
|
||||||
}
|
info: {},
|
||||||
}
|
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onLoad(options) {
|
||||||
|
if (options.item) {
|
||||||
|
console.log('t1',options.item)
|
||||||
|
const item = JSON.parse(decodeURIComponent(options.item));
|
||||||
|
this.info = item;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.detail-container {
|
.detail-container {
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.detail-back {
|
.detail-back {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 37rpx;
|
left: 37rpx;
|
||||||
width: 15rpx;
|
width: 15rpx;
|
||||||
height: 33rpx;
|
height: 33rpx;
|
||||||
}
|
}
|
||||||
.detail-title {
|
|
||||||
font-size: 36rpx;
|
.detail-title {
|
||||||
color: #000;
|
font-size: 36rpx;
|
||||||
}
|
color: #000;
|
||||||
.scroll-content {
|
}
|
||||||
flex: 1;
|
|
||||||
overflow-y: auto;
|
.scroll-content {
|
||||||
padding-bottom: 40rpx;
|
flex: 1;
|
||||||
}
|
overflow-y: auto;
|
||||||
.question-title {
|
padding-bottom: 40rpx;
|
||||||
font-size: 36rpx;
|
}
|
||||||
font-weight: bold;
|
|
||||||
color: #000000;
|
.question-title {
|
||||||
margin: 40rpx 32rpx 0 64rpx;
|
font-size: 36rpx;
|
||||||
position: relative;
|
font-weight: bold;
|
||||||
line-height: 1.4;
|
color: #000000;
|
||||||
}
|
margin: 40rpx 32rpx 0 64rpx;
|
||||||
.title-underline {
|
position: relative;
|
||||||
width: 120rpx;
|
line-height: 1.4;
|
||||||
height: 6rpx;
|
}
|
||||||
background: #3B8BFF;
|
|
||||||
border-radius: 3rpx;
|
.title-underline {
|
||||||
margin-top: 8rpx;
|
width: 120rpx;
|
||||||
}
|
height: 6rpx;
|
||||||
.question-content {
|
background: #3B8BFF;
|
||||||
margin: 34rpx 24rpx 0 24rpx;
|
border-radius: 3rpx;
|
||||||
background: #EDF6FF;
|
margin-top: 8rpx;
|
||||||
border-radius: 12rpx;
|
}
|
||||||
border: 2rpx dashed #bfc8d6;
|
|
||||||
padding: 32rpx 24rpx 24rpx 24rpx;
|
.question-content {
|
||||||
display: flex;
|
min-height: 600rpx;
|
||||||
flex-direction: column;
|
margin: 34rpx 24rpx 0 24rpx;
|
||||||
align-items: flex-start;
|
background: #EDF6FF;
|
||||||
}
|
border-radius: 12rpx;
|
||||||
.question-desc {
|
padding: 32rpx 24rpx 24rpx 24rpx;
|
||||||
font-size: 28rpx;
|
display: flex;
|
||||||
color: #4A4A4A;
|
flex-direction: column;
|
||||||
line-height: 1.8;
|
position: relative;
|
||||||
margin-bottom: 24rpx;
|
}
|
||||||
}
|
|
||||||
.question-img {
|
.question-desc {
|
||||||
width: 100%;
|
font-size: 28rpx;
|
||||||
border-radius: 8rpx;
|
color: #4A4A4A;
|
||||||
}
|
line-height: 1.8;
|
||||||
|
margin-bottom: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.question-time {
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #4A4A4A;
|
||||||
|
line-height: 1.8;
|
||||||
|
align-self: flex-end;
|
||||||
|
margin-top: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.question-img {
|
||||||
|
width: 100%;
|
||||||
|
border-radius: 8rpx;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
@@ -17,7 +17,7 @@
|
|||||||
<!-- 常见问题 -->
|
<!-- 常见问题 -->
|
||||||
<view class="faq-title">常见问题</view>
|
<view class="faq-title">常见问题</view>
|
||||||
<view class="faq-list">
|
<view class="faq-list">
|
||||||
<view class="faq-item" v-for="(item, idx) in faqList" :key="idx" @click="goDetail(idx)">
|
<view class="faq-item" v-for="(item, idx) in faqList" :key="idx" @click="goDetail(item)">
|
||||||
<text class="faq-text">{{ item }}</text>
|
<text class="faq-text">{{ item }}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -65,8 +65,13 @@
|
|||||||
phoneNumber: '023950888'
|
phoneNumber: '023950888'
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
goDetail(idx) {
|
goDetail(item) {
|
||||||
uni.navigateTo({ url: '/pages/sys/user/serviceCenter/questionDetail' });
|
let params = {}
|
||||||
|
params.title = item
|
||||||
|
params.content = item
|
||||||
|
params.time = item
|
||||||
|
const itemStr = encodeURIComponent(JSON.stringify(params));
|
||||||
|
uni.navigateTo({ url: '/pages/sys/user/serviceCenter/questionDetail?item=' + itemStr });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -90,7 +90,8 @@ export default {
|
|||||||
},
|
},
|
||||||
onLoad(options) {
|
onLoad(options) {
|
||||||
this.isManager = this.vuex_user?.roles?.[0]?.roleId < 3
|
this.isManager = this.vuex_user?.roles?.[0]?.roleId < 3
|
||||||
this.isNaomalUser = this.vuex_user?.roles?.[0]?.roleId >10
|
// this.isNaomalUser = this.vuex_user?.roles?.[0]?.roleId >10
|
||||||
|
this.isNaomalUser = false
|
||||||
if (options.item) {
|
if (options.item) {
|
||||||
const item = JSON.parse(decodeURIComponent(options.item));
|
const item = JSON.parse(decodeURIComponent(options.item));
|
||||||
this.detail = item;
|
this.detail = item;
|
||||||
|
BIN
static/ic_home_tt.png
Normal file
BIN
static/ic_home_tt.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.6 KiB |
Reference in New Issue
Block a user