12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <!--
- * @Author: howie
- * @Date: 2022-06-21 10:26:55
- * @LastEditors: howie
- * @LastEditTime: 2022-06-21 11:08:28
- * @FilePath: \supply-front\src\views\supply\policy\components\Invoice.vue
- * @Description: 发货单页面
- *
- * Copyright (c) 2022, All Rights Reserved.
- -->
- <template>
- <div>
- <my-table-info/>
- </div>
- </template>
- <script>
- import myTableInfo from "./common/table_info";
- export default {
- data() {
- return {
- dataList: [],
- columns: [
- {
- prop: "saleCode",
- lable: "发货单",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "价税合计",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "折扣后金额",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "发货日期",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "仓库",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "客户名称",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "存货编码",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "产品名称",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "规格型号",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "无税金额",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "无税单价",
- widht: 160,
- },
- {
- prop: "saleCode",
- lable: "数量",
- widht: 160,
- }
- ],
- };
- },
- components: {
- myTableInfo,
- },
- };
- </script>
- <style lang="scss" scoped></style>
|