|
@@ -186,7 +186,7 @@
|
|
|
<script>
|
|
|
import areaList from "@/script/areas.js"
|
|
|
import { Stepper, Toast } from 'vant';
|
|
|
-import { saveMailDo, getSendInfo } from '../api/index'
|
|
|
+import { saveMailDo, getSendInfo, geLogisticsList } from '../api/index'
|
|
|
export default {
|
|
|
|
|
|
data() {
|
|
@@ -266,8 +266,16 @@ export default {
|
|
|
},
|
|
|
async mounted() {
|
|
|
this.SendInfoValue = await getSendInfo({ userId: localStorage.getItem("userId") })
|
|
|
+ this.geLogisticsListAPIList()
|
|
|
},
|
|
|
methods: {
|
|
|
+ async geLogisticsListAPIList() {
|
|
|
+ const res = await geLogisticsList({ page: 1, limit: 30 })
|
|
|
+ this.columns = res.map((item) => {
|
|
|
+ return item.expressCompany
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
wxScanCode(type) {
|
|
|
// let purl = /(Android)/i.test(navigator.userAgent) ? window.location.href.split('#')[0] : encodeURI(window.location.href.split('#')[0]);
|
|
|
// let dataForm = {
|