问题修复
This commit is contained in:
parent
df44fb2ec8
commit
5df25fc7e5
|
|
@ -94,9 +94,9 @@
|
||||||
chosenArea.push(this.areaList[i][this.multiIndex[i]]);
|
chosenArea.push(this.areaList[i][this.multiIndex[i]]);
|
||||||
}
|
}
|
||||||
this.formData.area = chosenArea;
|
this.formData.area = chosenArea;
|
||||||
this.formData.provinceId = chosenArea[1].areaId;
|
this.formData.provinceId = chosenArea[0].areaId;
|
||||||
this.formData.cityId = chosenArea[2].areaId;
|
this.formData.cityId = chosenArea[1].areaId;
|
||||||
this.formData.countryId = chosenArea[0].areaId;
|
this.formData.countryId = chosenArea[2].areaId;
|
||||||
},
|
},
|
||||||
async regionColChange(e) {
|
async regionColChange(e) {
|
||||||
let colObj = e.detail;
|
let colObj = e.detail;
|
||||||
|
|
|
||||||
|
|
@ -11,9 +11,9 @@
|
||||||
<view @click="chooseAddress(item)">
|
<view @click="chooseAddress(item)">
|
||||||
<view class="flex justify-start align-center">
|
<view class="flex justify-start align-center">
|
||||||
<view class='cu-tag bg-yellow margin-right-sm' v-if="item.isDefault">默认</view>
|
<view class='cu-tag bg-yellow margin-right-sm' v-if="item.isDefault">默认</view>
|
||||||
<view class="text-gray margin-right-xs">{{item.countryName}}</view>
|
|
||||||
<view class="text-gray margin-right-xs">{{item.provinceName}}</view>
|
<view class="text-gray margin-right-xs">{{item.provinceName}}</view>
|
||||||
<view class="text-gray margin-right-xs">{{item.cityName}}</view>
|
<view class="text-gray margin-right-xs">{{item.cityName}}</view>
|
||||||
|
<view class="text-gray margin-right-xs">{{item.countryName}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="text-lg margin-tb-sm">{{item.address}}</view>
|
<view class="text-lg margin-tb-sm">{{item.address}}</view>
|
||||||
<view class="text-gray">
|
<view class="text-gray">
|
||||||
|
|
|
||||||
|
|
@ -240,7 +240,7 @@
|
||||||
async cancelOrder() {
|
async cancelOrder() {
|
||||||
let res = await this.$request.updateOrder({
|
let res = await this.$request.updateOrder({
|
||||||
id: this.curOrder.orderMasterId,
|
id: this.curOrder.orderMasterId,
|
||||||
orderStatus: 5
|
orderStatus: 6
|
||||||
});
|
});
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
|
|
|
||||||
|
|
@ -89,7 +89,7 @@
|
||||||
<view class="bg-white margin-lr-sm padding-lr padding-bottom margin-top-sm" v-for="(item, index) in servDetail.orderStandardDetailList">
|
<view class="bg-white margin-lr-sm padding-lr padding-bottom margin-top-sm" v-for="(item, index) in servDetail.orderStandardDetailList">
|
||||||
<view class="cu-bar solid-bottom">
|
<view class="cu-bar solid-bottom">
|
||||||
<view class="action bar-first-action">
|
<view class="action bar-first-action">
|
||||||
<text class="cuIcon-titles text-main-color"></text> 子单完成记录
|
<text class="cuIcon-titles text-main-color"></text> 施工记录
|
||||||
</view>
|
</view>
|
||||||
<view class='cu-tag bg-purple radius light margin-right-sm'>编码:{{item.orderDetailCode}}</view>
|
<view class='cu-tag bg-purple radius light margin-right-sm'>编码:{{item.orderDetailCode}}</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue