Commit a93762ea authored by Marcus's avatar Marcus

重泡货配置 可以删除

parent b7abad2e
...@@ -106,16 +106,19 @@ ...@@ -106,16 +106,19 @@
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize" <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
@pagination="getList"/> @pagination="getList"/>
<special :visible.sync="special.visible" :id="special.offerId" :number="special.number"></special>
</div> </div>
</template> </template>
<script> <script>
import { createOffer, updateOffer, deleteOffer, getOffer, getOfferPage, exportOfferExcel } from "@/api/ecw/offer"; import { createOffer, updateOffer, deleteOffer, getOffer, getOfferPage, exportOfferExcel } from "@/api/ecw/offer";
import Special from "@/views/ecw/offer/components/special"
export default { export default {
name: "Offer", name: "Offer",
components: { components: {
Special
}, },
data() { data() {
return { return {
...@@ -168,6 +171,13 @@ export default { ...@@ -168,6 +171,13 @@ export default {
estCost: null, estCost: null,
sendstatus: null, sendstatus: null,
}, },
special: {
visible: false,
offerId: undefined,
number: ''
}
}; };
}, },
created() { created() {
...@@ -242,7 +252,12 @@ export default { ...@@ -242,7 +252,12 @@ export default {
this.$download.excel(response, '${table.classComment}.xls'); this.$download.excel(response, '${table.classComment}.xls');
this.exportLoading = false; this.exportLoading = false;
}).catch(() => {}); }).catch(() => {});
},
handleSpecial(row){
this.special.visible = true
this.special.offerId = row.offerId
this.special.number = row.number
} }
} }
}; };
</script> </script>
\ No newline at end of file
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