zhaoxiaoqiang
2023-09-07 05166e6f2dc2e46219f6c3f82b6cc407f78c234e
src/views/qyp-project-order/draw.vue
@@ -52,7 +52,7 @@
            :columns="columns"
            :exportUrl="{
                url: '/qyp/order/useExport',
                powerId: '',
                powerId:'430208',
                name: '权益领取',
            }"
           >
@@ -64,6 +64,13 @@
import Etable from "@/components/table.vue";
export default {
    components: { Etable },
    props:{
     orderId:""
    },
    created(){
        this.searchData.orderId = this.orderId;
        this.formInline.orderId = this.orderId;
    },
    data() {
        return {
            columns:[
@@ -90,8 +97,8 @@
    },
    methods:{
        onSearch(){
            this.formInline.creStartTime = this.createdTime[0]?this.createdTime[0]:null;
            this.formInline.creEndTime = this.createdTime[1]?this.createdTime[1]:null;
            this.formInline.creStartTime = this.createdTime&&this.createdTime[0]?this.createdTime[0]:null;
            this.formInline.creEndTime = this.createdTime&&this.createdTime[1]?this.createdTime[1]:null;
            let objForm = JSON.parse(JSON.stringify(this.formInline));
            for (let key in objForm) {
                if (objForm[key] === "all"||objForm[key] === null||objForm[key] === '') {