Commit cda238a7 authored by dragondean@qq.com's avatar dragondean@qq.com

云效上的bug

parent f9166593
......@@ -146,7 +146,8 @@
<!--目的城市-->
<view class="corder-tab1-item corder-picker">
<image src="../../static/img/corder-1-4.png" mode=""></image>
<text><span class="redcolor">*</span>{{$lang.lang.create.endCity}}</text>
<!--2024-11-21 要求改非必填 https://devops.aliyun.com/projex/bug/JDAA-127# 《3 APP城市非必填》-->
<text><!--<span class="redcolor">*</span>-->{{$lang.lang.create.endCity}}</text>
<picker class="v-picker" :range="filteredDstCityList" :range-key="shiRangeKey" :value="currentDstCityIndex" @change="changeDstCity">
<view class="uni-input">{{ currentDstCityIndex !== null ? filteredDstCityList[currentDstCityIndex][shiRangeKey] : $lang.lang.create.choose }}</view>
</picker>
......@@ -1987,9 +1988,9 @@
that.getConfigIndex('provinceList',that.params.consigneeVO.city)
}
that.getConIndex()
if(that.params.consigneeVO&&that.params.consigneeVO.deliveryDate){
that.params.deliveryDate = that.params.consigneeVO.deliveryDate
var dateArr = that.params.consigneeVO.deliveryDate.split(' ')
// 2024-11-21测试consigneeVO下面的deliveryDate为null,而且可能没有收货人所有不能据此回显
if(that.params.deliveryDate){
var dateArr = that.params.deliveryDate.split(' ')
that.date = dateArr[0]
that.time = dateArr[1]
}
......@@ -2690,7 +2691,7 @@
getCon(){
let that = this
that.$request.get('/app-api/ecw/admin-client/page',{page:that.page,rows:10,searchKey:that.searchKey}).then(res => {
if(res.code==0&&res.data&&res.data.list.length>0){
if(res.code==0){
if(that.page==1){
that.consignee = []
that.consignee = res.data.list
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment