|
@@ -7,7 +7,7 @@
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="detail" v-for="item in orderDetail.goods">
|
|
<view class="detail" v-for="item in orderDetail.goods">
|
|
- <image class="order-img" :src="item.goods_image" mode=""></image>
|
|
|
|
|
|
+ <image class="order-img" :src="item.sku_item.image" mode=""></image>
|
|
<view class="detail-right">
|
|
<view class="detail-right">
|
|
<view class="title-price">
|
|
<view class="title-price">
|
|
<view class="title"> {{ item.goods_name }} </view>
|
|
<view class="title"> {{ item.goods_name }} </view>
|
|
@@ -70,14 +70,22 @@
|
|
mode=""
|
|
mode=""
|
|
></image>
|
|
></image>
|
|
</view>
|
|
</view>
|
|
- <view class="_input-1">
|
|
|
|
|
|
+ <view class="_input-1" @click="openSelect">
|
|
<view class="_label">物流公司</view>
|
|
<view class="_label">物流公司</view>
|
|
<u--input
|
|
<u--input
|
|
placeholder="请输入物流公司"
|
|
placeholder="请输入物流公司"
|
|
border="none"
|
|
border="none"
|
|
v-model="name"
|
|
v-model="name"
|
|
|
|
+ @change="searchExpress"
|
|
clearable
|
|
clearable
|
|
></u--input>
|
|
></u--input>
|
|
|
|
+
|
|
|
|
+ <SelectExpress
|
|
|
|
+ :show="nameShow"
|
|
|
|
+ :filterList="filterList"
|
|
|
|
+ @selected="selected"
|
|
|
|
+ className="order-manage"
|
|
|
|
+ />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="footer">
|
|
<view class="footer">
|
|
@@ -87,18 +95,31 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+import SelectExpress from "../components/selectExpress.vue";
|
|
export default {
|
|
export default {
|
|
|
|
+ components: {
|
|
|
|
+ SelectExpress,
|
|
|
|
+ },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
orderDetail: {},
|
|
orderDetail: {},
|
|
isShow: false,
|
|
isShow: false,
|
|
code: "", //物流单号
|
|
code: "", //物流单号
|
|
name: "", //物流公司名称
|
|
name: "", //物流公司名称
|
|
|
|
+ nameShow: false, //选择物流公司弹窗
|
|
|
|
+ expressCode: "", //选中的快递公司编号
|
|
|
|
+ filterList: [],
|
|
|
|
+ expressNameList: [], //快递公司
|
|
};
|
|
};
|
|
},
|
|
},
|
|
onLoad(options) {
|
|
onLoad(options) {
|
|
this.getDetail(options.id);
|
|
this.getDetail(options.id);
|
|
},
|
|
},
|
|
|
|
+ watch: {
|
|
|
|
+ nameShow(newVal) {
|
|
|
|
+ console.log(newVal);
|
|
|
|
+ },
|
|
|
|
+ },
|
|
methods: {
|
|
methods: {
|
|
//扫描二维码
|
|
//扫描二维码
|
|
scanningNumber() {
|
|
scanningNumber() {
|
|
@@ -119,22 +140,53 @@ export default {
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
|
|
|
|
+ //打开下拉
|
|
|
|
+ openSelect() {
|
|
|
|
+ this.nameShow = true;
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ //过滤搜索结果
|
|
|
|
+ searchExpress(e) {
|
|
|
|
+ // this.nameShow = true;
|
|
|
|
+ this.filterList = this.expressNameList
|
|
|
|
+ .filter((item) => item.name.includes(e))
|
|
|
|
+ .map((item) => item);
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ //获取所有的快递公司
|
|
|
|
+ getExpressNameList() {
|
|
|
|
+ uni.$u.http.get(`/api/express-company`).then((res) => {
|
|
|
|
+ this.expressNameList = res;
|
|
|
|
+ this.filterList = res;
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ //获取选中的快递公司
|
|
|
|
+ selected(value) {
|
|
|
|
+ this.name = value.name;
|
|
|
|
+ this.expressCode = value.code;
|
|
|
|
+ this.nameShow = false;
|
|
|
|
+ console.log(this.nameShow);
|
|
|
|
+ },
|
|
|
|
+
|
|
//团长发货
|
|
//团长发货
|
|
immediateDelivery() {
|
|
immediateDelivery() {
|
|
uni.$u.http
|
|
uni.$u.http
|
|
.post(`/api/order/merchant_delivery`, {
|
|
.post(`/api/order/merchant_delivery`, {
|
|
- order_goods_id: this.orderDetail.id,
|
|
|
|
- delivery_company: this.name,
|
|
|
|
|
|
+ order_id: this.orderDetail.id,
|
|
delivery_no: this.code,
|
|
delivery_no: this.code,
|
|
|
|
+ company_code: this.expressCode,
|
|
})
|
|
})
|
|
.then((res) => {
|
|
.then((res) => {
|
|
uni.showToast({
|
|
uni.showToast({
|
|
title: "已发货",
|
|
title: "已发货",
|
|
icon: "none",
|
|
icon: "none",
|
|
});
|
|
});
|
|
- uni.navigateBack({
|
|
|
|
- delta: 1,
|
|
|
|
- });
|
|
|
|
|
|
+ let timer = setTimeout(() => {
|
|
|
|
+ uni.navigateBack({
|
|
|
|
+ delta: 1,
|
|
|
|
+ });
|
|
|
|
+ }, 1000);
|
|
});
|
|
});
|
|
},
|
|
},
|
|
//扫描条形码
|
|
//扫描条形码
|
|
@@ -171,6 +223,7 @@ export default {
|
|
},
|
|
},
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
|
|
+ this.getExpressNameList();
|
|
uni.setNavigationBarTitle({
|
|
uni.setNavigationBarTitle({
|
|
title: "立即发货",
|
|
title: "立即发货",
|
|
});
|
|
});
|
|
@@ -266,6 +319,7 @@ export default {
|
|
display: flex;
|
|
display: flex;
|
|
align-items: center;
|
|
align-items: center;
|
|
height: 100rpx;
|
|
height: 100rpx;
|
|
|
|
+ position: relative;
|
|
._label {
|
|
._label {
|
|
font-size: 28rpx;
|
|
font-size: 28rpx;
|
|
color: #222;
|
|
color: #222;
|