123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428 |
- <template>
- <div>
- <by-bill :propConfig="config" @search="search" @onSmt="doSave" ref="bill" @onAdd="onAdd" @onOrder="onOrder"
- @resert="resert" @clickHandle="clickHandle" @detail="openEdit">
- </by-bill>
- </div>
- </template>
- <script lang="ts">
- import { Component, Prop, Vue, Watch } from "vue-property-decorator";
- import api from "@/api/order";
- import Assembly from "@/benyun/components/Assembly/order.vue";
- @Component
- export default class OrderTask extends Vue {
- // 右边
- baseURL : any = process.env.VUE_APP_BASE_API
- setStatusData : any = ''
- timeNum = 0;
- timer : any = null
- config : any = {
- attr: {
- activeName: 'all'
- },
- // 单据
- bill: {
- tool: {
- customTools: [
- {
- name: '接单', icon: 'el-icon-plus', audit: [''], event: {
- click: () => {
- // (this as any).getOrder()
- }
- }
- }
- ]
- },
- form: {
- attr: {
- size: 'small',
- },
- columns: [
- [
- {
- span: 8,
- label: '机构名称',
- prop: 'organizationName',
- component: 'by-input',
- },
- {
- span: 8,
- label: '状态',
- prop: 'status',
- component: 'by-select',
- compConfig: {
- attr: {
- placeholder: '请选择状态',
- clearable: true,
- data: [{
- value: 0,
- label: '未接单'
- }, {
- value: 1,
- label: '已接单'
- }]
- }
- }
- },
- {
- span: 8,
- label: '单据编号',
- slot: true,
- prop: 'orderNumber',
- component: 'by-input',
- },
- {
- span: 8,
- label: '机构',
- slot: true,
- prop: 'organizationId',
- component: 'by-input',
- },
- {
- span: 8,
- label: '交货地点',
- slot: true,
- prop: 'deliveryAddress',
- component: 'by-input',
- },
- {
- span: 8,
- label: '交货时间',
- slot: true,
- prop: 'deliveryData',
- component: 'by-date-picker',
- compConfig: {
- format: 'yyyy-MM-dd',
- type: 'datetime'
- }
- },
- {
- span: 8,
- label: '交货人',
- slot: true,
- prop: 'delivery',
- component: 'by-input',
- },
- {
- span: 8,
- label: '联系方式',
- slot: true,
- prop: 'deliveryPhone',
- component: 'by-input',
- },
- {
- span: 8,
- label: '交货方式',
- slot: true,
- prop: 'deliveryWay',
- component: 'by-input',
- },
- {
- span: 8,
- label: '备注',
- slot: true,
- prop: 'remark',
- component: 'by-input',
- },
- ],
- ]
- }
- },
- // 综合
- all: {
- search: {
- attr: {
- size: 'mini',
- },
- columns: [
- [
- {
- span: 6,
- label: '机构名称',
- prop: 'organizationName',
- component: 'by-input',
- compConfig: {
- attr: {
- placeholder: '请输入机构名称',
- clearable: true
- },
- },
- },
- {
- span: 6,
- label: '单据编号',
- prop: 'orderNumber',
- component: 'by-input',
- compConfig: {
- attr: {
- placeholder: '请输入单据编号',
- clearable: true
- }
- }
- },
- {
- span: 6,
- label: '交货地点',
- prop: 'deliveryAddress',
- component: 'by-input',
- compConfig: {
- attr: {
- placeholder: '请输入交货地点',
- clearable: true
- }
- }
- },
- ],
- [
- {
- span: 6,
- label: '交货人',
- prop: 'delivery',
- component: 'by-input',
- compConfig: {
- attr: {
- placeholder: '请输入交货人',
- clearable: true
- }
- }
- },
- {
- span: 6,
- label: '状态',
- prop: 'status',
- component: 'by-select',
- compConfig: {
- attr: {
- placeholder: '请选择状态',
- clearable: true,
- data: [{
- value: 0,
- label: '未接单'
- }, {
- value: 1,
- label: '已接单'
- }]
- }
- }
- },
- {
- span: 6,
- label: '交货时间',
- prop: 'deliveryData',
- component: 'by-date-picker',
- compConfig: {
- format: 'yyyy-MM-dd',
- type: 'datetime'
- }
- },
- ]
- ]
- },
- tool: {
- tools: {
- order: true,
- export: true,
- search: true,
- refresh: true
- }
- },
- table: {
- attr: {
- height: 600,
- size: 'mini',
- seq: true,
- align: 'center',
- checkbox: true
- },
- columns: [
- {
- width: 200,
- title: '机构名称',
- field: 'organizationName',
- isDetail: true,
- },
- {
- width: 120,
- title: '单据编号',
- field: 'orderNumber',
- },
- {
- width: 80,
- title: '状态',
- field: 'status',
- component: Assembly,
- },
- {
- width: 200,
- title: '交货地点',
- field: 'deliveryAddress',
- },
- {
- width: 150,
- title: '交货时间',
- field: 'deliveryData',
- },
- {
- title: '交货人',
- field: 'delivery',
- },
- {
- title: '交货人联系方式',
- field: 'deliveryPhone',
- },
- {
- title: '交货方式',
- field: 'deliveryWay',
- },
- {
- title: '备注',
- field: 'remark',
- },
- {
- width: 110,
- title: '操作',
- action: true,
- plugins: [{
- icon: 'el-icon-edit',
- name: '查看',
- audit: '',
- event: {
- click: (item : any) => {
- (this as any).openEdit(item)
- }
- }
- }, {
- name: '接单',
- event: {
- click: (item : any) => (this as any).getOrder(item)
- }
- }]
- }
- ]
- }
- },
- }
- created() {
- this.timer = setInterval(() => {
- this.getDataList()
- }, 500)
- }
- // 工具栏方法
- clickHandle(e : any) {
- console.log(e);
- }
- // 保存新增
- doSave() {
- // (this.$refs.product as any).setShow(true)
- (this as any).$refs.bill.$refs.billForm.validate().then(() => {
- let query = (this as any).$refs.bill.$refs.billForm.getValue();
- // query.suborderList = [] // 子表单数据
- query.status = 0; // 默认未接单
- api.saveList(query, 'supplyTaskOrder').then((res : any) => {
- if (res.code === 200) {
- this.$message({
- type: 'success',
- message: '提交成功!'
- });
- this.getDataList();
- (this.$refs.bill as any).showTab = 'all';
- (this.$refs.bill as any).setBillFormValue({});
- } else this.failHandle(res)
- })
- })
- }
- // 保存修改
- orderTaking() {
- let query : any = (this as any).$refs.bill.$refs.billForm.getValue();
- api.updateList(query, 'supplyTaskOrder').then((res : any) => {
- if (res.code === 200) {
- this.$message({
- type: 'success',
- message: '保存成功!'
- });
- this.getDataList();
- (this.$refs.bill as any).showTab = 'all';
- (this.$refs.bill as any).setBillFormValue({});
- } else this.failHandle(res)
- })
- }
- getDataList() {
- if (!this.$refs.bill) {
- if (this.timeNum > 5) {
- clearInterval(this.timer)
- }
- this.timeNum++;
- return
- }
- clearInterval(this.timer)
- // submitState: 提交状态
- this.getPageList({}, 'all'); // 综合数据
- // recycleBin
- this.getPageList({ submitState: 0 }, 'draftsBox'); // 草稿箱数据
- this.getPageList({ submitState: 1 }, 'smt'); // 已提交数据
- }
- // 获取分页数据
- getPageList(query : any, type : any) {
- api.pageList(query, 'supplyTaskOrder').then((res : any) => {
- if (res.code === 200) {
- (this.$refs.bill as any).setTabTableValue(type, res.data.records);
- let page = {
- pageNo: res.data.current, //当前页
- pageSize: res.data.size, //每页条数
- total: res.data.total //总条数
- };
- (this.$refs.bill as any).setTablePage(type, page)
- } else this.failHandle(res)
- })
- }
- // 打开新增
- onAdd(e : any) {
- console.log(e);
- // this.orderType = '新增';
- (this.$refs.bill as any).setBillFormValue({}); // 设置单据表单数据
- (this.$refs.bill as any).showTab = 'bill';
- }
- // 打开编辑
- openEdit(e : any) {
- console.log(e);
- e = e.row ? e.row : e;
- // this.orderType = '编辑';
- (this.$refs.bill as any).setBillFormValue(e); // 设置单据表单数据
- (this.$refs.bill as any).showTab = 'bill';
- }
- // 搜索
- search(parames : any) {
- let query = parames.value
- if (parames.type === 'draftsBox') query.submitState = 0 // 草稿箱数据
- if (parames.type === 'smt') query.submitState = 1 // 草稿箱数据
- this.getPageList(query, parames.type) // 获取分页数据
- }
- // 接单
- getOrder(item : any) {
- api.ordersaccepting({ ids: item.id }, 'supplyTaskOrder').then((res : any) => {
- if (res.code === 200) {
- // 是否跳转销售订单 this.$router.push()
- this.getDataList();
- this.$message({
- type: 'success',
- message: '接单成功!'
- });
- } else this.failHandle(res)
- })
- }
- resert(parames : any) {
- console.log('重置回传参数', parames);
- }
- // 工具栏接单
- onOrder(n : string) {
- console.log(n + ':工具栏执行操作onOrder')
- }
- // 运行错误
- failHandle(err : any) {
- let msg = err.msg ? err.msg : '运行错误!';
- this.$message.error(msg)
- }
- }
- </script>
|