|
|
|
@ -36,7 +36,7 @@ |
|
|
|
<view class="justify-between"> |
|
|
|
<view class="flex-row"> |
|
|
|
<text class="text_6">快递公司:</text> |
|
|
|
<text class="text_7">{{ expressIndex !== '' ? expressList[expressIndex].label : '请选择快递公司' }}</text> |
|
|
|
<text class="text_7">{{expressList[expressIndex].label}}</text> |
|
|
|
</view> |
|
|
|
<image |
|
|
|
src="@/static/icon/rightArrow.png" |
|
|
|
@ -89,6 +89,7 @@ |
|
|
|
|
|
|
|
<script> |
|
|
|
import { addGrading } from '@/service/grading.js'; |
|
|
|
import { sendAddr } from '@/service/address.js'; |
|
|
|
import logistics from './logistics.json'; |
|
|
|
|
|
|
|
export default { |
|
|
|
@ -96,12 +97,12 @@ |
|
|
|
return { |
|
|
|
oddNumber: '', |
|
|
|
expressList: logistics, |
|
|
|
expressIndex: '', |
|
|
|
expressIndex: 0, |
|
|
|
baseInfoCache: {}, |
|
|
|
sendAddress: { |
|
|
|
name: '评分卡部', |
|
|
|
tel: '18268905349', |
|
|
|
address: '北京北京市西城区5号设计总院A座203室' |
|
|
|
name: '...', |
|
|
|
tel: '...', |
|
|
|
address: '...' |
|
|
|
} |
|
|
|
}; |
|
|
|
}, |
|
|
|
@ -109,6 +110,9 @@ |
|
|
|
if(this.$valueType(options.base_data) !== 'undefined'){ |
|
|
|
this.baseInfoCache = JSON.parse(decodeURIComponent(options.base_data)); |
|
|
|
} |
|
|
|
sendAddr().then((res) => { |
|
|
|
this.sendAddress = res.data.datas; |
|
|
|
}); |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
setClipboardData(){ |
|
|
|
|