|
@@ -32,6 +32,7 @@
|
|
<script lang="ts">
|
|
<script lang="ts">
|
|
import { Component, Prop, Vue, Watch } from "vue-property-decorator";
|
|
import { Component, Prop, Vue, Watch } from "vue-property-decorator";
|
|
import api from "@/api/order";
|
|
import api from "@/api/order";
|
|
|
|
+ import OrderType from "./components/orderType.vue";
|
|
import byBill from "./components/byBill/byBill.vue";
|
|
import byBill from "./components/byBill/byBill.vue";
|
|
@Component({ components: { byBill } })
|
|
@Component({ components: { byBill } })
|
|
export default class OrderTask extends Vue {
|
|
export default class OrderTask extends Vue {
|
|
@@ -302,21 +303,22 @@
|
|
height: 600,
|
|
height: 600,
|
|
size: 'mini',
|
|
size: 'mini',
|
|
seq: true,
|
|
seq: true,
|
|
- align: 'center',
|
|
|
|
|
|
+ align: 'left',
|
|
checkbox: true
|
|
checkbox: true
|
|
},
|
|
},
|
|
columns: [
|
|
columns: [
|
|
{
|
|
{
|
|
- width: 178,
|
|
|
|
|
|
+ width: 190,
|
|
title: '单据编号',
|
|
title: '单据编号',
|
|
field: 'orderNumber',
|
|
field: 'orderNumber',
|
|
- // component: 'by-input',
|
|
|
|
|
|
+ component: OrderType,
|
|
// compConfig: {
|
|
// compConfig: {
|
|
// attr: {
|
|
// attr: {
|
|
// placeholder: '请输入单据编号',
|
|
// placeholder: '请输入单据编号',
|
|
// clearable: true
|
|
// clearable: true
|
|
// }
|
|
// }
|
|
// },
|
|
// },
|
|
|
|
+ align: 'left',
|
|
isDetail: true,
|
|
isDetail: true,
|
|
},
|
|
},
|
|
{
|
|
{
|