| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 | <!-- 奖品领取 --><template>  <s-layout title="奖品领取">		<uni-data-checkbox v-model="state.radio" :wrap="true" :localdata="state.addressList"></uni-data-checkbox>    <uni-forms			v-if="state.radio === 9999"      ref="addressFormRef"      v-model="state.model"      :rules="rules"      validateTrigger="bind"      labelWidth="160"      labelAlign="left"      border      :labelStyle="{ fontWeight: 'bold' }"    >      <view class="bg-white form-box ss-p-x-30">        <uni-forms-item name="name" label="收货人" class="form-item">          <uni-easyinput v-model="state.model.name" placeholder="请填写收货人姓名" :inputBorder="false" placeholderStyle="color:#BBBBBB;font-size:30rpx;font-weight:400;line-height:normal"/>        </uni-forms-item>        <uni-forms-item name="mobile" label="手机号" class="form-item">          <uni-easyinput v-model="state.model.mobile" type="number" placeholder="请输入手机号" :inputBorder="false" placeholderStyle="color:#BBBBBB;font-size:30rpx;font-weight:400;line-height:normal"/>        </uni-forms-item>        <uni-forms-item name="areaName" label="省市区" @tap="state.showRegion = true" class="form-item">          <uni-easyinput v-model="state.model.areaName" disabled :inputBorder="false"            :styles="{ disableColor: '#fff', color: '#333' }" placeholderStyle="color:#BBBBBB;font-size:30rpx;font-weight:400;line-height:normal" placeholder="请选择省市区">            <template v-slot:right>              <uni-icons type="right" />            </template>          </uni-easyinput>        </uni-forms-item>        <uni-forms-item name="detailAddress" label="详细地址" :formItemStyle="{ alignItems: 'flex-start' }" :labelStyle="{ lineHeight: '5em' }" class="textarea-item">          <uni-easyinput :inputBorder="false" type="textarea" v-model="state.model.detailAddress" placeholderStyle="color:#BBBBBB;font-size:30rpx;font-weight:400;line-height:normal" placeholder="请输入详细地址" clearable/>        </uni-forms-item>      </view>    </uni-forms>    <su-fixed bottom :opacity="false" bg="" placeholder :noFixed="false" :index="10">      <view class="footer-box ss-flex-col ss-row-between ss-p-20">        <view class="ss-m-b-20">          <button class="ss-reset-button save-btn ui-Shadow-Main" @tap="onSave">领取</button>        </view>      </view>    </su-fixed>    <!-- 省市区弹窗 -->    <su-region-picker :show="state.showRegion"  @cancel="state.showRegion = false" @confirm="onRegionConfirm"/>  </s-layout></template><script setup>  import { ref, reactive, unref } from 'vue';  import sheep from '@/sheep';  import { onLoad } from '@dcloudio/uni-app';  import _ from 'lodash-es';  import { mobile } from '@/sheep/validate/form';  import AreaApi from '@/sheep/api/system/area';  import AddressApi from '@/sheep/api/member/address';  const addressFormRef = ref(null);  const state = reactive({    showRegion: false,    model: {      name: '',      mobile: '',      detailAddress: '',      defaultStatus: false,      areaName: '',    },    rules: {},		radio: 0,		addressList: [],  });  const rules = {    name: {      rules: [{ required: true, errorMessage: '请输入收货人姓名' }]    },    mobile,    detailAddress: {      rules: [{ required: true, errorMessage: '请输入详细地址' }]    },    areaName: {      rules: [{ required: true, errorMessage: '请选择您的位置' }]    }  }  // 确认选择地区  const onRegionConfirm = (e) => {    state.model.areaName = `${e.province_name} ${e.city_name} ${e.district_name}`;    state.model.areaId = e.district_id;    state.showRegion = false;  };  // 获得地区数据  const getAreaData = () => {    if (_.isEmpty(uni.getStorageSync('areaData'))) {      AreaApi.getAreaTree().then((res) => {        if (res.code === 0) {          uni.setStorageSync('areaData', res.data);        }      });    }  };	// 获取收货地址	const getAddressList = async () => {		const list = (await AddressApi.getAddressList()).data;    state.addressList = list.map(e => {      return { text: e.areaName, value: e.id, ...e }    })	  // state.addressList.push({ value: 9999, text: '使用新地址' })    console.log(list, '收货地址列表', state.addressList)	}  // 保存收货地址  const onSave = async () => {    // 参数校验    const validate = await unref(addressFormRef)      .validate()      .catch((error) => {        console.log('error: ', error);      });    if (!validate) {      return;    }    // // 提交请求    // const formData = {    //   ...state.model,    // };    // const { code } =    //   state.model.id > 0    //     ? await AddressApi.updateAddress(formData)    //     : await AddressApi.createAddress(formData);    // if (code === 0) {    //   sheep.$router.back();    // }  };	const receiveId = ref()  onLoad(async (options) => {    // 获得地区数据    getAreaData()		// 获取收货地址列表		await getAddressList()		console.log(options, 'receive')		receiveId.value = options.id  });</script><style lang="scss">  :deep() {    .uni-forms-item__label .label-text {      font-size: 28rpx !important;      color: #333333 !important;      line-height: normal !important;    }    .uni-easyinput__content-input {      font-size: 28rpx !important;      color: #333333 !important;      line-height: normal !important;      padding-left: 0 !important;    }    .uni-easyinput__content-textarea {      font-size: 28rpx !important;      color: #333333 !important;      line-height: normal !important;      margin-top: 8rpx !important;    }    .uni-icons {      font-size: 40rpx !important;    }    .is-textarea-icon {      margin-top: 22rpx;    }    .is-disabled {      color: #333333;    }    .uni-data-checklist .checklist-group {      display: block !important;    }  }  .default-box {    width: 100%;    box-sizing: border-box;    height: 100rpx;    .default-box-title {      font-size: 28rpx;      color: #333333;      line-height: normal;    }  }  .footer-box {    .save-btn {      width: 710rpx;      height: 80rpx;      border-radius: 40rpx;      background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));      color: $white;    }    .cancel-btn {      width: 710rpx;      height: 80rpx;      border-radius: 40rpx;      background: var(--ui-BG);    }  }</style>
 |