createBill.js 301 Bytes
Newer Older
1
import {setQueryIndex} from '../query-actions/util/queryTag.js';
wangcong committed
2 3
export default {
    execute(context, param) {
4
        setQueryIndex(-1);//上张下张用
wangcong committed
5 6 7 8
        // 新建单据状态设置为可编辑,单据id为空
        GMS.vbus.$emit('change-form-state', {state: '', billId: null})
    },
}