| | |
| | | |
| | | <script> |
| | | import AddMasterOrderDialog from "@/views/sales/masterOrder/AddMasterOrderDialog" |
| | | import { getMasterOrderList } from "@/api/sales/masterOrder" |
| | | |
| | | export default { |
| | | name: "MasterOrder", |
| | |
| | | }, |
| | | created() { |
| | | this.setTable() |
| | | this.getData() |
| | | }, |
| | | methods: { |
| | | setTable() { |
| | | this.tableList = { |
| | | tableInfomation: [ |
| | | { |
| | | documentNumber: "ZDYBD03-1", |
| | | customName: "张三", |
| | | serviceStartTime: "2023-0703 11:22:12", |
| | | serviceDeadline: "2023-0703 11:22:12", |
| | | contractAmount: 13000.0, |
| | | owner: "系统管理员", |
| | | approvalStatus: "未提交" |
| | | }, |
| | | { |
| | | documentNumber: "", |
| | | customName: "", |
| | | serviceStartTime: "", |
| | | serviceDeadline: "", |
| | | contractAmount: 13000.0, |
| | | owner: "", |
| | | approvalStatus: "" |
| | | } |
| | | ], |
| | | tableInfomation: [], |
| | | tableColumn: [ |
| | | { label: "单据编号", prop: "documentNumber", min: 120 }, // 单据编号 |
| | | { label: "客户名称", prop: "customName", min: 120 }, // 客户名称 |
| | |
| | | this.searchOptions.push({ value: (i + 1).toString(), label: label }) |
| | | } |
| | | }, |
| | | // 请求数据 |
| | | async getData() { |
| | | this.loading = true |
| | | await getMasterOrderList() |
| | | .then((res) => { |
| | | console.log(res) |
| | | if (res.code === 200) { |
| | | if (res.data.list && res.data.list.length > 0) { |
| | | const list = res.data.list.map((item) => { |
| | | return { |
| | | ...item |
| | | } |
| | | }) |
| | | this.tableList.tableInfomation = list || [] |
| | | } else { |
| | | this.tableList.tableInfomation = [] |
| | | } |
| | | } else { |
| | | this.tableList.tableInfomation = [] |
| | | } |
| | | this.loading = false |
| | | }) |
| | | .catch((err) => { |
| | | console.log(err) |
| | | this.tableList.tableInfomation = [] |
| | | this.loading = false |
| | | }) |
| | | }, |
| | | // 新建 |
| | | addBtnClick() { |
| | | this.editConfig.visible = true |