|
@@ -28,14 +28,12 @@
|
|
|
<el-col :span="4" style="width: 405px; display: flex; align-items: center">
|
|
|
<el-dropdown>
|
|
|
<el-button size="mini" style="margin-right: 10px">
|
|
|
- {{ timerMaps[timerKey].label
|
|
|
- }}<i class="el-icon-arrow-down el-icon--right"></i>
|
|
|
+ {{ timerMaps[timerKey].label}}
|
|
|
+ <i class="el-icon-arrow-down el-icon--right"></i>
|
|
|
</el-button>
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
|
<el-dropdown-item v-for="key in Object.keys(timerMaps)" :key="key">
|
|
|
- <p @click="setTimerKey(key)">
|
|
|
- {{ timerMaps[key].label }}
|
|
|
- </p>
|
|
|
+ <p @click="setTimerKey(key)">{{ timerMaps[key].label }}</p>
|
|
|
</el-dropdown-item>
|
|
|
</el-dropdown-menu>
|
|
|
</el-dropdown>
|
|
@@ -67,9 +65,7 @@
|
|
|
type="primary"
|
|
|
style="float: right; margin-left: 5px"
|
|
|
@click="searchList"
|
|
|
- >
|
|
|
- 刷新
|
|
|
- </el-button>
|
|
|
+ >刷新</el-button>
|
|
|
</el-col>
|
|
|
<el-col
|
|
|
:span="4"
|
|
@@ -82,14 +78,12 @@
|
|
|
@click="download"
|
|
|
:size="searchSize"
|
|
|
class="fr"
|
|
|
- >
|
|
|
- 导出
|
|
|
- </el-button>
|
|
|
+ >导出</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row style="padding-top: 10px">
|
|
|
<el-col :span="4" style="width: 177px">
|
|
|
- <el-switch
|
|
|
+ <el-switch
|
|
|
v-model="parmValue.use_type"
|
|
|
:active-value="usetypeOtions[1].value"
|
|
|
:inactive-value="usetypeOtions[0].value"
|
|
@@ -159,14 +153,7 @@
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="4" style="width: 66px" class="fr">
|
|
|
- <el-button
|
|
|
- type="warning"
|
|
|
- class="fr"
|
|
|
- :size="searchSize"
|
|
|
- @click="restSearch"
|
|
|
- >
|
|
|
- 重置
|
|
|
- </el-button>
|
|
|
+ <el-button type="warning" class="fr" :size="searchSize" @click="restSearch">重置</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
|
|
@@ -258,8 +245,8 @@
|
|
|
<template #use_type="{ scope }">
|
|
|
<el-tag size="mini">
|
|
|
{{
|
|
|
- (usetypeOtions.find(({ value }) => value === scope.row.use_type) || {})
|
|
|
- .label || "---"
|
|
|
+ (usetypeOtions.find(({ value }) => value === scope.row.use_type) || {})
|
|
|
+ .label || "---"
|
|
|
}}
|
|
|
</el-tag>
|
|
|
</template>
|
|
@@ -295,7 +282,7 @@
|
|
|
placement="top"
|
|
|
>
|
|
|
<i class="el-icon-share tb-icon" @click="handleShare(scope.row.outCode)"></i>
|
|
|
- </el-tooltip> -->
|
|
|
+ </el-tooltip>-->
|
|
|
</template>
|
|
|
</ex-table>
|
|
|
<add-edit
|
|
@@ -321,37 +308,36 @@ import asyncRequest from "@/apis/service/supplierSellOut/supplierSellOutOrder";
|
|
|
import addEdit from "./components/addEdit.vue";
|
|
|
import { columns } from "./columns";
|
|
|
import { shareWebUrl } from "@/config";
|
|
|
+import companyHelper from "@/mixins/companyHelper";
|
|
|
import {
|
|
|
xs_order_source_options,
|
|
|
xs_order_type_options,
|
|
|
- usetypeOtions,
|
|
|
+ usetypeOtions
|
|
|
} from "@/assets/js/statusList";
|
|
|
-import companyHelper from "@/mixins/companyHelper";
|
|
|
|
|
|
export default {
|
|
|
name: "sellOutOrder",
|
|
|
mixins: [mixinPage, resToken, companyHelper],
|
|
|
components: {
|
|
|
- addEdit,
|
|
|
+ addEdit
|
|
|
},
|
|
|
computed: {
|
|
|
...mapGetters(["tablebtnSize", "searchSize", "size", "isSupertube"]),
|
|
|
powers() {
|
|
|
+ const { btnList } = this.$store.getters;
|
|
|
const tran =
|
|
|
- this.$store.getters.btnList.find(
|
|
|
- (item) => item.menu_route == "supplierSellOutOrder"
|
|
|
- ) || {};
|
|
|
+ btnList.find(item => item.menu_route == "supplierSellOutOrder") || {};
|
|
|
const { action } = tran ?? {};
|
|
|
return action ?? [];
|
|
|
},
|
|
|
dpowers() {
|
|
|
const tran =
|
|
|
this.$store.getters.btnList.find(
|
|
|
- (item) => item.menu_route == "supplierSellOutOrdeDetail"
|
|
|
+ item => item.menu_route == "supplierSellOutOrdeDetail"
|
|
|
) || {};
|
|
|
const { action } = tran ?? {};
|
|
|
return action ?? [];
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -366,13 +352,13 @@ export default {
|
|
|
add: {
|
|
|
start: "start",
|
|
|
end: "end",
|
|
|
- label: "添加时间",
|
|
|
+ label: "添加时间"
|
|
|
},
|
|
|
send: {
|
|
|
start: "start_sendtime",
|
|
|
end: "end_sendtime",
|
|
|
- label: "发货时间",
|
|
|
- },
|
|
|
+ label: "发货时间"
|
|
|
+ }
|
|
|
},
|
|
|
sitem: null,
|
|
|
// 状态
|
|
@@ -407,7 +393,7 @@ export default {
|
|
|
company_name: "", //申请人部门
|
|
|
page: 1, // 页码
|
|
|
size: 15, // 每页显示条数
|
|
|
- use_type: "1",
|
|
|
+ use_type: "1"
|
|
|
},
|
|
|
// 表格 - 数据
|
|
|
tableData: [],
|
|
@@ -415,18 +401,18 @@ export default {
|
|
|
table: {
|
|
|
stripe: true,
|
|
|
border: true,
|
|
|
- _defaultHeader_: ["setcol"],
|
|
|
+ _defaultHeader_: ["setcol"]
|
|
|
},
|
|
|
// 表格 - 分页
|
|
|
pageInfo: {
|
|
|
size: 15,
|
|
|
curr: 1,
|
|
|
- total: 0,
|
|
|
+ total: 0
|
|
|
},
|
|
|
// 表格 - 列参数
|
|
|
columns,
|
|
|
xs_order_source_options,
|
|
|
- xs_order_type_options,
|
|
|
+ xs_order_type_options
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
@@ -445,7 +431,7 @@ export default {
|
|
|
this.pageInfo = {
|
|
|
size: size,
|
|
|
curr: page,
|
|
|
- total: 0,
|
|
|
+ total: 0
|
|
|
};
|
|
|
//多选条件
|
|
|
this.select = this.parmValue.select;
|
|
@@ -490,7 +476,7 @@ export default {
|
|
|
getRouter(toRouter, queryId) {
|
|
|
if (toRouter && queryId) {
|
|
|
let model = {
|
|
|
- id: queryId,
|
|
|
+ id: queryId
|
|
|
// type: 'view',
|
|
|
};
|
|
|
|
|
@@ -501,7 +487,7 @@ export default {
|
|
|
//
|
|
|
let routerModel = {
|
|
|
options: JSON.parse(JSON.stringify(this.parmValue)),
|
|
|
- router: this.$route.path,
|
|
|
+ router: this.$route.path
|
|
|
};
|
|
|
model.preModel = JSON.stringify(routerModel);
|
|
|
|
|
@@ -524,9 +510,9 @@ export default {
|
|
|
}
|
|
|
|
|
|
let model = {
|
|
|
- outCodes: [],
|
|
|
+ outCodes: []
|
|
|
};
|
|
|
- this.changeList.forEach((item) => {
|
|
|
+ this.changeList.forEach(item => {
|
|
|
model.outCodes.push(item.outCode);
|
|
|
});
|
|
|
|
|
@@ -543,10 +529,11 @@ export default {
|
|
|
headers: {
|
|
|
// 'Content-Type': 'multipart/form-data',
|
|
|
// Accept: "application/vnd.ms-excel"
|
|
|
- Accept: httpType,
|
|
|
- },
|
|
|
+ //
|
|
|
+ Accept: httpType
|
|
|
+ }
|
|
|
})
|
|
|
- .then((res) => {
|
|
|
+ .then(res => {
|
|
|
// console.log(res)
|
|
|
// console.log(this.fileUrl)
|
|
|
// return;
|
|
@@ -554,7 +541,7 @@ export default {
|
|
|
let url = window.URL.createObjectURL(
|
|
|
new Blob([res.data], {
|
|
|
// type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
|
|
|
- type: httpType,
|
|
|
+ type: httpType
|
|
|
})
|
|
|
);
|
|
|
let link = document.createElement("a");
|
|
@@ -577,7 +564,7 @@ export default {
|
|
|
}, 500);
|
|
|
}
|
|
|
})
|
|
|
- .catch((error) => {
|
|
|
+ .catch(error => {
|
|
|
console.log(error);
|
|
|
this.loading = false;
|
|
|
});
|
|
@@ -603,13 +590,13 @@ export default {
|
|
|
company_name: "", //申请人部门
|
|
|
page: 1, // 页码
|
|
|
size: 15, // 每页显示条数
|
|
|
- use_type: "1",
|
|
|
+ use_type: "1"
|
|
|
};
|
|
|
// 表格 - 分页
|
|
|
this.pageInfo = {
|
|
|
size: 15,
|
|
|
curr: 1,
|
|
|
- total: 0,
|
|
|
+ total: 0
|
|
|
};
|
|
|
this.searchList();
|
|
|
},
|
|
@@ -624,18 +611,18 @@ export default {
|
|
|
await this.$confirm("确定要删除?", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
- type: "warning",
|
|
|
+ type: "warning"
|
|
|
})
|
|
|
.then(async () => {
|
|
|
const model = {
|
|
|
id: id,
|
|
|
- status: status + "" === "1" ? "0" : "1",
|
|
|
+ status: status + "" === "1" ? "0" : "1"
|
|
|
};
|
|
|
const res = await asyncRequest.status(model);
|
|
|
if (res && res.code === 0) {
|
|
|
this.$notify.success({
|
|
|
title: "删除成功",
|
|
|
- message: "",
|
|
|
+ message: ""
|
|
|
});
|
|
|
this.searchList();
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
@@ -661,9 +648,11 @@ export default {
|
|
|
}
|
|
|
this.loading = true;
|
|
|
let model = JSON.parse(JSON.stringify(this.parmValue));
|
|
|
- model['customerCode'] = Array.isArray(model['customerCode']) ? model['customerCode'][0] : model['customerCode']
|
|
|
- delete model['customerName']
|
|
|
- model['noRelation'] = true
|
|
|
+ model["customerCode"] = Array.isArray(model["customerCode"])
|
|
|
+ ? model["customerCode"][0]
|
|
|
+ : model["customerCode"];
|
|
|
+ delete model["customerName"];
|
|
|
+ model["noRelation"] = true;
|
|
|
model.supplierNo = this.currentCompany;
|
|
|
// model.noRelation = true
|
|
|
|
|
@@ -672,7 +661,7 @@ export default {
|
|
|
if (res && res.code === 0 && res.data) {
|
|
|
this.tableData = res.data.list;
|
|
|
this.pageInfo.total = Number(res.data.count);
|
|
|
- this.tableData.forEach((v) => {
|
|
|
+ this.tableData.forEach(v => {
|
|
|
v.good_class = "";
|
|
|
if (v.can && v.can.length > 0) {
|
|
|
v.can.forEach((x, i) => {
|
|
@@ -694,20 +683,20 @@ export default {
|
|
|
await this.$confirm("确定要改为" + str + "?", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
- type: "warning",
|
|
|
+ type: "warning"
|
|
|
})
|
|
|
.then(async () => {
|
|
|
this.loading = true;
|
|
|
const model = {
|
|
|
id: id,
|
|
|
- status: status + "" === "1" ? "0" : "1",
|
|
|
+ status: status + "" === "1" ? "0" : "1"
|
|
|
};
|
|
|
const res = await asyncRequest.status(model);
|
|
|
if (res && res.code === 0) {
|
|
|
this.loading = false;
|
|
|
this.$notify.success({
|
|
|
title: "状态修改成功!",
|
|
|
- message: "",
|
|
|
+ message: ""
|
|
|
});
|
|
|
await this.searchList();
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
@@ -756,21 +745,27 @@ export default {
|
|
|
await this.searchList();
|
|
|
},
|
|
|
async handleValue() {
|
|
|
- this.parmValue.orderCode = this.select === "orderCode" ? this.s_input : "";
|
|
|
+ this.parmValue.orderCode =
|
|
|
+ this.select === "orderCode" ? this.s_input : "";
|
|
|
this.parmValue.outCode = this.select === "outCode" ? this.s_input : "";
|
|
|
- this.parmValue.supplier_name = this.select === "supplier_name" ? this.s_input : "";
|
|
|
+ this.parmValue.supplier_name =
|
|
|
+ this.select === "supplier_name" ? this.s_input : "";
|
|
|
|
|
|
// this.parmValue.supplierName =
|
|
|
// this.select === "supplierNo" ? this.s_input : "";
|
|
|
- this.parmValue.good_code = this.select === "good_code" ? this.s_input : "";
|
|
|
- this.parmValue.good_name = this.select === "good_name" ? this.s_input : "";
|
|
|
- this.parmValue.apply_name = this.select === "apply_name" ? this.s_input : "";
|
|
|
+ this.parmValue.good_code =
|
|
|
+ this.select === "good_code" ? this.s_input : "";
|
|
|
+ this.parmValue.good_name =
|
|
|
+ this.select === "good_name" ? this.s_input : "";
|
|
|
+ this.parmValue.apply_name =
|
|
|
+ this.select === "apply_name" ? this.s_input : "";
|
|
|
this.parmValue.cgdNo = this.select === "cgdNo" ? this.s_input : "";
|
|
|
- this.parmValue.company_name = this.select === "company_name" ? this.s_input : "";
|
|
|
+ this.parmValue.company_name =
|
|
|
+ this.select === "company_name" ? this.s_input : "";
|
|
|
|
|
|
await this.searchList();
|
|
|
- },
|
|
|
- },
|
|
|
+ }
|
|
|
+ }
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|