|
@@ -1,8 +1,6 @@
|
|
|
<template>
|
|
|
<div class="returnOrder pagePadding">
|
|
|
- <div
|
|
|
- v-if="powers && powers.length > 0 && powers.some((item) => item == '001')"
|
|
|
- >
|
|
|
+ <div v-if="powers && powers.length > 0 && powers.some((item) => item == '001')">
|
|
|
<ex-table
|
|
|
v-loading="loading"
|
|
|
:table="table"
|
|
@@ -44,6 +42,7 @@
|
|
|
:value="parmValue.post_compay"
|
|
|
:placeholder="'物流公司'"
|
|
|
:names="parmValue.supplierName_cp"
|
|
|
+ :order_source="''"
|
|
|
:is-detail="true"
|
|
|
@searchChange="handleCompany"
|
|
|
/>
|
|
@@ -145,8 +144,8 @@
|
|
|
:size="tablebtnSize"
|
|
|
:type="scope.row.status == '0' ? 'warning' : ''"
|
|
|
v-text="
|
|
|
- (statusList.find((item) => item.value == scope.row.status) || {})
|
|
|
- .label || '--'
|
|
|
+ (statusList.find((item) => item.value == scope.row.status) || {}).label ||
|
|
|
+ '--'
|
|
|
"
|
|
|
></el-tag>
|
|
|
</template>
|
|
@@ -159,7 +158,7 @@
|
|
|
>
|
|
|
<i
|
|
|
class="el-icon-view tb-icon"
|
|
|
- @click="getRouter('returnOrderDetail', scope.row.thNo )"
|
|
|
+ @click="getRouter('returnOrderDetail', scope.row.thNo)"
|
|
|
></i>
|
|
|
</el-tooltip>
|
|
|
</template>
|
|
@@ -178,7 +177,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <script>
|
|
|
+<script>
|
|
|
import mixinPage from "@/mixins/elPaginationHandle";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
import columns from "./columns";
|
|
@@ -196,9 +195,8 @@ export default {
|
|
|
...mapGetters(["tablebtnSize", "searchSize", "size"]),
|
|
|
powers() {
|
|
|
let tran =
|
|
|
- this.$store.getters.btnList.find(
|
|
|
- (item) => item.menu_route == "returnOrder"
|
|
|
- ) || {};
|
|
|
+ this.$store.getters.btnList.find((item) => item.menu_route == "returnOrder") ||
|
|
|
+ {};
|
|
|
if (tran && tran.action && tran.action.length > 0) {
|
|
|
return tran.action;
|
|
|
} else {
|
|
@@ -233,7 +231,7 @@ export default {
|
|
|
isDetail: false,
|
|
|
modelId: 0,
|
|
|
parmValue: {
|
|
|
- order_type: "",
|
|
|
+ order_type: "",
|
|
|
order_code: "", //销售订单编号
|
|
|
thNo: "", //退货编号
|
|
|
out_code: "", //销售出库编号
|
|
@@ -244,7 +242,7 @@ export default {
|
|
|
end: "", //
|
|
|
status: "", //状态节点
|
|
|
customer_code: "", //退货客户编号
|
|
|
- supplierName:'',
|
|
|
+ supplierName: "",
|
|
|
page: 1, // 页码
|
|
|
size: 15, // 每页显示条数
|
|
|
},
|
|
@@ -267,38 +265,36 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
- const { back } = this.$route.query;
|
|
|
+ const { back } = this.$route.query;
|
|
|
if (back) {
|
|
|
this.parmValue = JSON.parse(back);
|
|
|
- console.log(this.parmValue)
|
|
|
- const {page,size}=this.parmValue;
|
|
|
+ console.log(this.parmValue);
|
|
|
+ const { page, size } = this.parmValue;
|
|
|
// this.parmValue.start = start || last_start;
|
|
|
// this.parmValue.end = end || last_end;
|
|
|
- console.log("11111",this.parmValue.customer_code)
|
|
|
- if(this.parmValue.customer_code.length>0){
|
|
|
- this.customerCode = [this.parmValue.customer_code] ;
|
|
|
+ console.log("11111", this.parmValue.customer_code);
|
|
|
+ if (this.parmValue.customer_code.length > 0) {
|
|
|
+ this.customerCode = [this.parmValue.customer_code];
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
- this.pageInfo= {
|
|
|
+
|
|
|
+ this.pageInfo = {
|
|
|
size: size,
|
|
|
curr: page,
|
|
|
total: 0,
|
|
|
- }
|
|
|
+ };
|
|
|
//多选条件
|
|
|
- this.select = this.parmValue.select;
|
|
|
- // this.sselect = this.parmValue.sselect;
|
|
|
- this.s_input = this.parmValue.s_input
|
|
|
-
|
|
|
- }else{
|
|
|
- this.select = "returnNo";
|
|
|
+ this.select = this.parmValue.select;
|
|
|
+ // this.sselect = this.parmValue.sselect;
|
|
|
+ this.s_input = this.parmValue.s_input;
|
|
|
+ } else {
|
|
|
+ this.select = "returnNo";
|
|
|
// this.sselect = "创建时间"
|
|
|
}
|
|
|
this.searchList();
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
- getRouter(toRouter, queryId){
|
|
|
+ getRouter(toRouter, queryId) {
|
|
|
if (toRouter && queryId) {
|
|
|
let model = {
|
|
|
id: queryId,
|
|
@@ -306,17 +302,17 @@ export default {
|
|
|
};
|
|
|
|
|
|
//有多选框的条件
|
|
|
- this.parmValue.select = this.select ;
|
|
|
+ this.parmValue.select = this.select;
|
|
|
// this.parmValue.sselect = this.sselect ;
|
|
|
- this.parmValue.s_input= this.s_input;
|
|
|
+ this.parmValue.s_input = this.s_input;
|
|
|
//
|
|
|
- console.log(this.parmValue)
|
|
|
- let routerModel = {
|
|
|
+ console.log(this.parmValue);
|
|
|
+ let routerModel = {
|
|
|
options: JSON.parse(JSON.stringify(this.parmValue)),
|
|
|
router: this.$route.path,
|
|
|
};
|
|
|
model.preModel = JSON.stringify(routerModel);
|
|
|
-
|
|
|
+
|
|
|
this.routeGoto(toRouter, model);
|
|
|
} else {
|
|
|
this.$message.warning("暂未找到相关流程!");
|
|
@@ -335,8 +331,8 @@ export default {
|
|
|
start: "", //
|
|
|
end: "", //
|
|
|
status: "", //状态节点
|
|
|
- supplierName:'',
|
|
|
- order_type: "",
|
|
|
+ supplierName: "",
|
|
|
+ order_type: "",
|
|
|
page: 1, // 页码
|
|
|
size: 15, // 每页显示条数
|
|
|
};
|
|
@@ -357,19 +353,18 @@ export default {
|
|
|
},
|
|
|
// 客户选择
|
|
|
async customerChange(e) {
|
|
|
- const {code,label}=e
|
|
|
- this.customerCode =code? [code]:[];
|
|
|
- this.parmValue.supplierName =label||"" ;
|
|
|
- this.parmValue.customer_code = code||"";
|
|
|
-
|
|
|
-
|
|
|
- console.log(this.parmValue)
|
|
|
+ const { code, label } = e;
|
|
|
+ this.customerCode = code ? [code] : [];
|
|
|
+ this.parmValue.supplierName = label || "";
|
|
|
+ this.parmValue.customer_code = code || "";
|
|
|
+
|
|
|
+ console.log(this.parmValue);
|
|
|
this.pageInfo.curr = 1;
|
|
|
this.parmValue.page = 1;
|
|
|
await this.searchList();
|
|
|
},
|
|
|
async searchList() {
|
|
|
- if (
|
|
|
+ if (
|
|
|
(this.parmValue.start !== "" && this.parmValue.end === "") ||
|
|
|
(this.parmValue.start === "" && this.parmValue.end !== "")
|
|
|
) {
|
|
@@ -377,12 +372,9 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
this.loading = true;
|
|
|
- this.parmValue.post_code =
|
|
|
- this.select === "expressNo" ? this.s_input : "";
|
|
|
- this.parmValue.return_code =
|
|
|
- this.select === "serviceNo" ? this.s_input : "";
|
|
|
- this.parmValue.out_code =
|
|
|
- this.select === "outOrderNo" ? this.s_input : "";
|
|
|
+ this.parmValue.post_code = this.select === "expressNo" ? this.s_input : "";
|
|
|
+ this.parmValue.return_code = this.select === "serviceNo" ? this.s_input : "";
|
|
|
+ this.parmValue.out_code = this.select === "outOrderNo" ? this.s_input : "";
|
|
|
this.parmValue.thNo = this.select === "returnNo" ? this.s_input : "";
|
|
|
this.parmValue.order_code = this.select === "orderNo" ? this.s_input : "";
|
|
|
let model = JSON.parse(JSON.stringify(this.parmValue));
|
|
@@ -402,9 +394,8 @@ export default {
|
|
|
|
|
|
//物流公司查询
|
|
|
async handleCompany(e) {
|
|
|
-
|
|
|
this.parmValue.post_compay = e && e.code ? [e.label] : [];
|
|
|
-
|
|
|
+
|
|
|
this.parmValue.supplierName_cp = e.label;
|
|
|
this.pageInfo.curr = 1;
|
|
|
this.parmValue.page = 1;
|
|
@@ -426,6 +417,4 @@ export default {
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
|
- <style lang="scss" scoped>
|
|
|
-</style>
|
|
|
-
|
|
|
+<style lang="scss" scoped></style>
|