|
@@ -41,6 +41,7 @@
|
|
v-model="formData.data.countryId"
|
|
v-model="formData.data.countryId"
|
|
placeholder="国家"
|
|
placeholder="国家"
|
|
@change="(val) => getCityData(val, '20', true)"
|
|
@change="(val) => getCityData(val, '20', true)"
|
|
|
|
+ :disabled="submitType == 4"
|
|
>
|
|
>
|
|
<el-option
|
|
<el-option
|
|
v-for="item in countryData"
|
|
v-for="item in countryData"
|
|
@@ -61,6 +62,7 @@
|
|
addressName="provinceName"
|
|
addressName="provinceName"
|
|
v-model="formData.data"
|
|
v-model="formData.data"
|
|
:data="provinceData"
|
|
:data="provinceData"
|
|
|
|
+ :disabled="submitType == 4"
|
|
>
|
|
>
|
|
</selectCity>
|
|
</selectCity>
|
|
</div>
|
|
</div>
|
|
@@ -74,6 +76,7 @@
|
|
addressName="cityName"
|
|
addressName="cityName"
|
|
v-model="formData.data"
|
|
v-model="formData.data"
|
|
:data="cityData"
|
|
:data="cityData"
|
|
|
|
+ :disabled="submitType == 4"
|
|
>
|
|
>
|
|
</selectCity>
|
|
</selectCity>
|
|
</div>
|
|
</div>
|
|
@@ -435,12 +438,14 @@ const configData = computed(() => [
|
|
prop: "countryId",
|
|
prop: "countryId",
|
|
label: "收货信息",
|
|
label: "收货信息",
|
|
itemWidth: 33.33,
|
|
itemWidth: 33.33,
|
|
|
|
+ disabled: true,
|
|
},
|
|
},
|
|
{
|
|
{
|
|
type: "slot",
|
|
type: "slot",
|
|
slotName: "provinceId",
|
|
slotName: "provinceId",
|
|
label: " ",
|
|
label: " ",
|
|
itemWidth: 33.33,
|
|
itemWidth: 33.33,
|
|
|
|
+ disabled: true,
|
|
},
|
|
},
|
|
{
|
|
{
|
|
type: "slot",
|
|
type: "slot",
|
|
@@ -448,11 +453,13 @@ const configData = computed(() => [
|
|
prop: "cityId",
|
|
prop: "cityId",
|
|
label: " ",
|
|
label: " ",
|
|
itemWidth: 33.33,
|
|
itemWidth: 33.33,
|
|
|
|
+ disabled: true,
|
|
},
|
|
},
|
|
{
|
|
{
|
|
type: "input",
|
|
type: "input",
|
|
itemType: "textarea",
|
|
itemType: "textarea",
|
|
prop: "areaDetail",
|
|
prop: "areaDetail",
|
|
|
|
+ disabled: true,
|
|
},
|
|
},
|
|
{
|
|
{
|
|
type: "title",
|
|
type: "title",
|
|
@@ -789,6 +796,9 @@ const outBound = (row) => {
|
|
res.cityId = res.purchaseBackInfo.cityId
|
|
res.cityId = res.purchaseBackInfo.cityId
|
|
? res.purchaseBackInfo.cityId
|
|
? res.purchaseBackInfo.cityId
|
|
: "";
|
|
: "";
|
|
|
|
+ res.areaDetail = res.purchaseBackInfo.detailedAddress
|
|
|
|
+ ? res.purchaseBackInfo.detailedAddress
|
|
|
|
+ : "";
|
|
}
|
|
}
|
|
formData.data = res;
|
|
formData.data = res;
|
|
getCityData(formData.data.countryId, "20");
|
|
getCityData(formData.data.countryId, "20");
|