123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <!--
- * @Author: howie
- * @Date: 2022-06-21 09:56:25
- * @LastEditors: howie
- * @LastEditTime: 2022-06-21 11:00:51
- * @FilePath: \supply-front\src\views\supply\policy\components\details.vue
- * @Description:详情页面
- *
- * Copyright (c) 2022, All Rights Reserved.
- -->
- <template>
- <div>
- <my-detail/>
- </div>
- </template>
- <script>
- import myDetail from "./common/common";
- 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,
- },
- {
- 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: {
- myDetail,
- },
- };
- </script>
- <style lang="scss" scoped></style>
|