123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425 |
- <template>
- <!-- 物品信息 -->
- <view class="back">
- <view class="top">
- <view class="u-flex">
- <text class="title">{{i18n.item}}</text>
- <view class="mast">{{i18n.required}}</view>
- </view>
- <view v-if="goodname" class="" style="margin-top: 30rpx;">
- <view class="about u-flex"
- style="color: rgba(248, 50, 36, 1);border: 2rpx solid rgba(248, 50, 36, 1);justify-content: center;">
- <text style="margin-right: 18rpx;">{{goodname}}</text>
- <u-icon name="close" color="rgba(248, 50, 36, 1)" size="12" @click="goodname=''"></u-icon>
- </view>
- </view>
- <view class="">
- <view class="info">填写准确的寄送物品可帮助您推荐更合适的产品</view>
- <view class="input">
- <input disabled type="text" placeholder="请输入物品名称" style="width: 100%;" @click="tosearch" />
- </view>
- <view v-if="goodname==''" class="u-flex u-row-between" style="margin-top: 28rpx;flex-wrap: wrap;">
- <view class="about" v-for="(item,idx) in goods" @click="activename(item)">
- <text v-if="language =='zh-CN'">{{item.name_cn}}</text>
- <text v-if="language =='en-US'">{{item.name_en}}</text>
- <text v-if="language =='es-ES'">{{item.name_es}}</text>
- <text v-if="language =='it-IT'">{{item.name_ita}}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="type u-flex u-row-between">
- <view class="u-flex">
- <text class="title">{{i18n.shoptype}}</text>
- <image src="../static/express/explain.png" style="width: 32rpx;height: 32rpx;margin-left: 10rpx;"
- mode=""></image>
- </view>
- <view class="u-flex">
- <view class="u-flex" @click="type('normal')" style="margin-right: 24rpx;">
- <image v-if="goodtype=='normal'" style="width: 24rpx;height: 24rpx;margin-right: 6rpx;"
- src="../static/express/active.png" mode=""></image>
- <image v-if="goodtype=='special'" style="width: 24rpx;height: 24rpx;margin-right: 6rpx;"
- src="../static/express/noactive.png" mode=""></image>
- <text class='special'>{{i18n.Normal}}</text>
- </view>
- <view class="u-flex" @click="type('special')">
- <image v-if="goodtype=='special'" style="width: 24rpx;height: 24rpx;margin-right: 6rpx;"
- src="../static/express/active.png" mode=""></image>
- <image v-if="goodtype=='normal'" style="width: 24rpx;height: 24rpx;margin-right: 6rpx;"
- src="../static/express/noactive.png" mode=""></image>
- <text class='special'>{{i18n.special}}</text>
- </view>
- <!-- <text class="change">{{i18n.selection}}</text>
- <image src="../static/express/next1.png" style="width: 26rpx;height: 26rpx;" mode=""></image> -->
- </view>
- </view>
- <view class="abouta">
- <view class="u-flex u-row-between">
- <view class="title">{{i18n.estimated}}</view>
- <view class="">
- <u-number-box v-model="value">
- <view @click="changeweight" slot="minus" class="minus">
- <u-icon name="minus" size="12"></u-icon>
- </view>
- <!-- <text slot="input" style="width: 150rpx;text-align: center;" class="inpu">{{value}}kg</text> -->
- <view slot="input" class="u-flex"
- style="width: 150rpx;text-align: center;background: #f4f4f4;padding: 10rpx 20rpx;">
- <input type="text" v-model="weight" />
- <text>kg</text>
- <!-- <text class="inpu">{{value}}件</text> -->
- </view>
- <view @click="weight++" slot="plus" class="plus">
- <u-icon name="plus" color="#000000" size="12"></u-icon>
- </view>
- </u-number-box>
- </view>
- </view>
- <view class="u-flex u-row-between"
- style="border-top: 2rpx solid rgba(151, 151, 151, 0.1);padding-top: 30rpx;margin-top: 32rpx;">
- <view class="title">{{i18n.piece}}</view>
- <view class="">
- <u-number-box v-model="value">
- <view @click="changenumber" slot="minus" class="minus">
- <u-icon name="minus" size="12"></u-icon>
- </view>
- <view slot="input" class="u-flex"
- style="width: 150rpx;text-align: center;background: #f4f4f4;padding: 10rpx 20rpx;">
- <input type="text" v-model="number" />
- <text>件</text>
- <!-- <text class="inpu">{{value}}件</text> -->
- </view>
- <view @click="number++" slot="plus" class="plus">
- <u-icon name="plus" color="#000000" size="12"></u-icon>
- </view>
- </u-number-box>
- </view>
- </view>
- <view class="u-flex" style="margin-top: 28rpx;">
- <view class="zhu">
- 注:实际重量体积以收派员确定为准,物品在
- <text class="rule"> {{i18n.rule}}</text>
- </view>
- </view>
- </view>
- <view class="btn">
- <view class="button" @click="enter">{{i18n.enter}}</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- value: 1,
- goods: [],
- language: 'zh-CN',
- goodname: '',
- number: 1,
- weight: 1,
- goodid: '', //物品信息id
- goodtype: 'normal', //商品类型
- };
- },
- computed: {
- i18n() {
- return this.$t('index')
- }
- },
- onLoad() {
- this.getgoods()
- },
- onShow() {
- if (uni.getStorageSync('language') != '') {
- this.language = uni.getStorageSync('language')
- }
- uni.setNavigationBarTitle({
- title: this.i18n.item
- })
- },
- methods: {
- enter() {
- if (this.goodid == '') {
- this.$u.toast('请选择邮寄物品')
- return
- }
- if (this.goodtype == '') {
- this.$u.toast('请选择物品类型')
- return
- }
- const eventchannel = this.getOpenerEventChannel();
- eventchannel.emit('goodinfo', {
- goodid: this.goodid,
- goodtype: this.goodtype,
- goodname: this.goodname,
- number: this.number,
- weight: this.weight
- })
- uni.navigateBack()
- },
- changeweight() {
- if (this.weight == 1) {
- this.$u.toast('重量不能小于1')
- } else {
- this.weight--
- }
- },
- changenumber() {
- if (this.number == 1) {
- this.$u.toast('数量不能小于1')
- } else {
- this.number--
- }
- },
- //商品类型
- type(type) {
- this.goodtype = type
- },
- //选中哪个物品
- activename(item) {
- if (this.language == 'zh-CN') {
- this.goodname = item.name_cn
- } else if (this.language == 'en-US') {
- this.goodname = item.name_en
- } else if (this.language == 'es-ES') {
- this.goodname = item.name_es
- } else if (this.language == 'it-IT') {
- this.goodname = item.name_ita
- }
- this.goodid = item.id
- },
- getgoods() {
- uni.$u.http.get('/api/express-goods-info', {
- params: {
- is_hot: 1
- }
- }).then((res) => {
- this.goods = res
- }).catch(() => {
- })
- },
- tosearch() {
- var that = this
- uni.navigateTo({
- url: "/pageB/search",
- events:{
- searchinfo:function(res){
- if (that.language == 'zh-CN') {
- that.goodname = res.name_cn
- } else if (that.language == 'en-US') {
- that.goodname = res.name_en
- } else if (that.language == 'es-ES') {
- that.goodname = res.name_es
- } else if (that.language == 'it-IT') {
- that.goodname = res.name_ita
- }
- that.goodid = res.id
- }
- }
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .special {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 26rpx;
- color: #444444;
- line-height: 36rpx;
- text-align: left;
- font-style: normal;
- }
- .minus {
- width: 22px;
- height: 22px;
- border-width: 1px;
- border-color: rgba(0, 0, 0, 0);
- border-style: solid;
- border-top-left-radius: 100px;
- border-top-right-radius: 100px;
- border-bottom-left-radius: 100px;
- border-bottom-right-radius: 100px;
- @include flex;
- justify-content: center;
- align-items: center;
- }
- .inpu {
- padding: 0 20px;
- width: 150rpx;
- height: 52rpx;
- background: #F4F4F4;
- text-align: center;
- line-height: 52rpx;
- }
- .plus {
- width: 22px;
- height: 22px;
- // background-color: #FF0000;
- border-radius: 50%;
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- justify-content: center;
- align-items: center;
- }
- .back {
- padding: 20rpx 24rpx;
- .btn {
- width: 750rpx;
- height: 166rpx;
- background: #FFFFFF;
- position: fixed;
- bottom: 0;
- left: 0;
- padding: 18rpx 32rpx;
- box-sizing: border-box;
- .button {
- width: 686rpx;
- height: 88rpx;
- background: #F83224;
- border-radius: 44rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 32rpx;
- color: #FFFFFF;
- line-height: 88rpx;
- text-align: center;
- font-style: normal;
- }
- }
- .abouta {
- padding: 38rpx 20rpx;
- box-sizing: border-box;
- width: 702rpx;
- height: 352rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin-top: 20rpx;
- .zhu {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #7D7D7D;
- line-height: 42rpx;
- text-align: left;
- font-style: normal;
- }
- .rule {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #F83224;
- line-height: 34rpx;
- text-align: left;
- font-style: normal;
- }
- }
- .title {
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- font-size: 28rpx;
- color: #222222;
- line-height: 40rpx;
- text-align: left;
- font-style: normal;
- }
- .type {
- width: 704rpx;
- height: 96rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin-top: 20rpx;
- padding: 28rpx 20rpx;
- box-sizing: border-box;
- .change {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #666666;
- line-height: 40rpx;
- text-align: left;
- font-style: normal;
- }
- }
- .top {
- width: 702rpx;
- // height: 484rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- padding: 24rpx 28rpx;
- box-sizing: border-box;
- .mast {
- // width: 62rpx;
- height: 30rpx;
- border-radius: 16rpx;
- border: 1rpx solid #F83224;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 20rpx;
- color: #FF1515;
- line-height: 30rpx;
- text-align: center;
- font-style: normal;
- margin-left: 8rpx;
- padding: 0 6rpx;
- box-sizing: border-box;
- }
- .about {
- width: 202rpx;
- height: 60rpx;
- border-radius: 36rpx;
- border: 1rpx solid rgba(151, 151, 151, 0.5);
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 26rpx;
- color: #444444;
- line-height: 60rpx;
- text-align: center;
- font-style: normal;
- margin-bottom: 20rpx;
- }
- }
- .info {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #222222;
- line-height: 34rpx;
- text-align: left;
- font-style: normal;
- margin-top: 20rpx;
- }
- .input {
- width: 646rpx;
- height: 68rpx;
- background: #F5F5F5;
- border-radius: 44rpx;
- padding: 14rpx 32rpx;
- margin-top: 20rpx;
- box-sizing: border-box;
- }
- }
- </style>
|