| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357 |
- <template>
- <view class="simple-address" v-if="showPopup" @touchmove.stop.prevent="clear">
- <!-- 遮罩层 -->
- <view class="simple-address-mask" @touchmove.stop.prevent="clear" v-if="maskClick" :class="[ani+'-mask', animation ? 'mask-ani' : '']" :style="{
- 'background-color': maskBgColor
- }"
- @tap="hideMask(true)"></view>
- <view class="simple-address-content simple-address--fixed" :class="[type,ani+'-content', animation ? 'content-ani' : '']">
- <view class="simple-address__header">
- <view class="simple-address__header-btn-box" @click="pickerCancel">
- <text class="simple-address__header-text">取消</text>
- </view>
- <view class="simple-address__header-btn-box" @click="pickerConfirm">
- <text class="simple-address__header-text confirm-text">确定</text>
- </view>
- </view>
- <view class="simple-address__box">
- <picker-view indicator-style="height: 70rpx;" class="simple-address-view" :value="pickerValue" @change="pickerChange">
- <picker-view-column>
- <!-- #ifndef APP-NVUE -->
- <view class="picker-item" v-for="(item,index) in region" :key="index">{{item.name}}</view>
- <!-- #endif -->
- <!-- #ifdef APP-NVUE -->
- <!-- <text class="picker-item" v-for="(item,index) in provinceDataList" :key="index">{{item.name}}</text> -->
- <!-- #endif -->
- </picker-view-column>
- <picker-view-column>
- <!-- #ifndef APP-NVUE -->
- <view class="picker-item" v-for="(item,index) in region[pickerValue[0]].children" :key="index">{{item.name}}</view>
- <!-- #endif -->
- <!-- #ifdef APP-NVUE -->
- <!-- <text class="picker-item" v-for="(item,index) in cityDataList" :key="index">{{item.name}}</text> -->
- <!-- #endif -->
- </picker-view-column>
- <!-- <picker-view-column> -->
- <!-- #ifndef APP-NVUE -->
- <!-- <view class="picker-item" v-for="(item,index) in areaDataList" :key="index">{{item.name}}</view> -->
- <!-- #endif -->
- <!-- #ifdef APP-NVUE -->
- <!-- <text class="picker-item" v-for="(item,index) in areaDataList" :key="index">{{item.name}}</text> -->
- <!-- #endif -->
- <!-- </picker-view-column> -->
- </picker-view>
- </view>
- </view>
- </view>
- </template>
- <script>
- // import provinceData from './city-data/province.js'
- // import cityData from './city-data/city.js'
- // import areaData from './city-data/area.js'
- export default {
- name: 'simpleAddress',
- props: {
- // 开启动画
- animation: {
- type: Boolean,
- default: true
- },
- /* 弹出层类型,可选值;
- bottom:底部弹出层
- */
- type: {
- type: String,
- default: 'bottom'
- },
- // maskClick
- maskClick: {
- type: Boolean,
- default: true
- },
- show: {
- type: Boolean,
- default: true
- },
- maskBgColor: {
- type: String,
- default: 'rgba(0, 0, 0, 0.4)' // 背景颜色 rgba(0, 0, 0, 0.4) 为空则调用 uni.scss
- },
- /* 默认值 */
- pickerValueDefault: {
- type: Array,
- default() {
- return [0, 0]
- }
- },
- // 省市区数据
- region: {
- type: Array,
- default() {
- return []
- }
- }
- },
- data() {
- return {
- ani: '',
- showPopup: false,
- pickerValue: [0, 0],
- provinceDataList: [],
- cityDataList: [],
- areaDataList: []
- }
- },
- watch: {
- show(newValue) {
- if (newValue) {
- this.open()
- } else {
- this.close()
- }
- },
- pickerValueDefault() {
- this.init()
- }
- },
- created() {
- this.init()
- },
- methods: {
- init() {
- // this.handPickValueDefault() // 对 pickerValueDefault 做兼容处理
- // this.provinceDataList = JSON.parse(JSON.stringify(this.region))
- // this.cityDataList = []
- },
- handPickValueDefault() {
- // if (this.pickerValueDefault !== [0, 0]) {
- // if (this.pickerValueDefault[0] > provinceData.length - 1) {
- // this.pickerValueDefault[0] = provinceData.length - 1
- // }
- // if (this.pickerValueDefault[1] > cityData[this.pickerValueDefault[0]].length - 1) {
- // this.pickerValueDefault[1] = cityData[this.pickerValueDefault[0]].length - 1
- // }
- // if (this.pickerValueDefault[2] > areaData[this.pickerValueDefault[0]][this.pickerValueDefault[1]].length - 1) {
- // this.pickerValueDefault[2] = areaData[this.pickerValueDefault[0]][this.pickerValueDefault[1]].length - 1
- // }
- // }
- },
- pickerChange(e) {
- this.pickerValue = e.detail.value
- this._$emit('onChange')
- },
- _$emit(emitName) {
- let pickObj = {
- label: this._getLabel(),
- value: this.pickerValue,
- provinceName: this.region[this.pickerValue[0]].name,
- cityName: this.region[this.pickerValue[0]].children[this.pickerValue[1]].name,
- provinceCode: this._getProvinceCode(),
- cityCode: this._getCityCode()
- // areaCode: this._getAreaCode(),
- }
- console.log(pickObj)
- this.$emit(emitName, pickObj)
- },
- _getLabel() {
- let pcikerLabel = this.region[this.pickerValue[0]].name + '-' + this.region[this.pickerValue[0]].children[this.pickerValue[1]].name
- return pcikerLabel
- },
- _getProvinceCode() {
- return this.region[this.pickerValue[0]].id
- },
- _getCityCode() {
- return this.region[this.pickerValue[0]].children[this.pickerValue[1]].id
- },
- _getAreaCode() {
- return this.region[this.pickerValue[0]].children[this.pickerValue[1]].children[this.pickerValue[2]].id
- },
- clear() {
- },
- hideMask() {
- this._$emit('onCancel')
- this.close()
- },
- pickerCancel() {
- this._$emit('onCancel')
- this.close()
- },
- pickerConfirm() {
- this._$emit('onConfirm')
- this.close()
- },
- open() {
- this.showPopup = true
- this.$nextTick(() => {
- setTimeout(() => {
- this.ani = 'simple-' + this.type
- }, 100)
- })
- },
- close(type) {
- if (!this.maskClick && type) return
- this.ani = ''
- this.$nextTick(() => {
- setTimeout(() => {
- this.showPopup = false
- }, 300)
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .simple-address {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: column;
- }
- .simple-address-mask {
- position: fixed;
- bottom: 0;
- top: 0;
- left: 0;
- right: 0;
- transition-property: opacity;
- transition-duration: 0.3s;
- opacity: 0;
- /* #ifndef APP-NVUE */
- z-index: 996;
- /* #endif */
- }
- .mask-ani {
- transition-property: opacity;
- transition-duration: 0.2s;
- }
- .simple-bottom-mask {
- opacity: 1;
- }
- .simple-center-mask {
- opacity: 1;
- }
- .simple-address--fixed {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- transition-property: transform;
- transition-duration: 0.3s;
- transform: translateY(460rpx);
- /* #ifndef APP-NVUE */
- z-index: 999;
- /* #endif */
- }
- .simple-address-content {
- background-color: #FFFFFF;
- }
- .simple-content-bottom {
- bottom: 0;
- left: 0;
- right: 0;
- transform: translateY(500rpx);
- }
- .content-ani {
- transition-property: transform, opacity;
- transition-duration: 0.2s;
- }
- .simple-bottom-content {
- transform: translateY(0);
- }
- .simple-center-content {
- transform: scale(1);
- opacity: 1;
- }
- .simple-address__header {
- position: relative;
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- flex-wrap: nowrap;
- justify-content: space-between;
- border-bottom-color: #f2f2f2;
- border-bottom-style: solid;
- border-bottom-width: 1rpx;
- }
- .simple-address--fixed-top {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- justify-content: space-between;
- border-top-color: $uni-border-color;
- border-top-style: solid;
- border-top-width: 1rpx;
- }
- .simple-address__header-btn-box {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- justify-content: center;
- height: 70rpx;
- }
- .simple-address__header-text {
- text-align: center;
- font-size: $uni-font-size-base;
- color: $fontColor2;
- line-height: 70rpx;
- padding-left: 40rpx;
- padding-right: 40rpx;
- }
- .confirm-text {
- color: $mainColor;
- }
- .simple-address__box {
- position: relative;
- }
- .simple-address-view {
- position: relative;
- bottom: 0;
- left: 0;
- /* #ifndef APP-NVUE */
- width: 100%;
- /* #endif */
- /* #ifdef APP-NVUE */
- width: 750rpx;
- /* #endif */
- height: 408rpx;
- background-color: rgba(255, 255, 255, 1);
- }
- .picker-item {
- text-align: center;
- line-height: 70rpx;
- text-overflow: ellipsis;
- font-size: 28rpx;
- }
- </style>
|