Commit a93762ea authored by Marcus's avatar Marcus

重泡货配置 可以删除

parent b7abad2e
......@@ -106,16 +106,19 @@
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
@pagination="getList"/>
<special :visible.sync="special.visible" :id="special.offerId" :number="special.number"></special>
</div>
</template>
<script>
import { createOffer, updateOffer, deleteOffer, getOffer, getOfferPage, exportOfferExcel } from "@/api/ecw/offer";
import Special from "@/views/ecw/offer/components/special"
export default {
name: "Offer",
components: {
Special
},
data() {
return {
......@@ -168,6 +171,13 @@ export default {
estCost: null,
sendstatus: null,
},
special: {
visible: false,
offerId: undefined,
number: ''
}
};
},
created() {
......@@ -242,7 +252,12 @@ export default {
this.$download.excel(response, '${table.classComment}.xls');
this.exportLoading = false;
}).catch(() => {});
},
handleSpecial(row){
this.special.visible = true
this.special.offerId = row.offerId
this.special.number = row.number
}
}
};
</script>
\ No newline at end of file
</script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment