Browse Source

弹框文案修改

feature/3.1.0-小区合伙人
lfs3 6 years ago
parent
commit
ef30c2cd20
2 changed files with 16 additions and 11 deletions
  1. 10
      src/view/choose-community.vue
  2. 17
      src/view/home.vue

10
src/view/choose-community.vue

@ -34,7 +34,7 @@
<div class="title">
<span class="f-ml15 f-font-14 f-text-666">附近小区</span>
</div>
<div v-for="item in communityList" :key="item.housingEstateId" v-if="item.housingEstateId != estateId" class="f-flex f-flex-justify f-h60 f-ml15 f-mr15" style="border-bottom: 1px solid #f3f3f3;" @click="chooseCommunity(item)">
<div v-for="item in communityList" :key="item.housingEstateId" v-if="item.housingEstateId !== estateId" class="f-flex f-flex-justify f-h60 f-ml15 f-mr15" style="border-bottom: 1px solid #f3f3f3;" @click="chooseCommunity(item)">
<div>
<div class="f-text-333 f-font-16">{{item.housingEstateName}}</div>
<div class="f-text-666 f-font-12">{{item.prefixAddress}}</div>
@ -268,8 +268,8 @@ export default {
];
this.$vux.confirm.show({
title: "选择小区",
content: "确定选择:" + item.cityName+item.districtName +"【" + item.housingEstateName + "】",
title: "确定选择",
content: item.cityName+item.districtName +"【" + item.housingEstateName + "】",
confirmText: "确定",
cancelText: "取消",
onCancel: () => {},
@ -446,8 +446,12 @@ export default {
};
</script>
<style lang="scss" scoped>
.container {
background-color: #fff;
-webkit-search-cancel-button{
-webkit-appearance: none!important;//×
};
.top {
position: relative;
width: 100%;

17
src/view/home.vue

@ -372,8 +372,8 @@ export default {
this.defaultDistrict +
"【" +
this.defaultCommunity +
"】" +
"暂无开通服务",
"】",
content: "暂无开通服务",
onHide: () => {
this.chooseCommunity();
}
@ -554,6 +554,7 @@ export default {
// onConfirm: () => {}
// });
this.getId();
let eId = this.$route.query.estateId;
console.log("eId----" + eId + "estateId---" + this.estateId);
@ -586,8 +587,8 @@ export default {
this.defaultDistrict +
"【" +
this.defaultCommunity +
"】" +
"暂无开通服务",
"】",
content: "暂无开通服务",
onHide: () => {
this.chooseCommunity();
}
@ -624,10 +625,9 @@ export default {
this.defaultDistrict +
"【" +
this.defaultCommunity +
"】" +
"暂无开通服务",
"】",
content: "暂无开通服务",
onHide: () => {
this.showLoading = false;
this.chooseCommunity();
}
});
@ -667,7 +667,7 @@ export default {
linkEstate.districtName +
"【" +
linkEstate.housingEstateName +
"】,是否切换为:",
"】",
confirmText: "不切换",
cancelText: "确定",
onCancel: () => {
@ -788,6 +788,7 @@ export default {
background-color: rgba(255, 255, 255, 1);
}
.weui-dialog__hd {
margin-top: 10px;
padding: 0;
}
</style>

Loading…
Cancel
Save