dev:拆拼盘修改

This commit is contained in:
2023-05-31 19:02:04 +08:00
parent 918bf7964b
commit a6266a76f6
20 changed files with 703 additions and 46 deletions

View File

@@ -143,20 +143,6 @@
@select="handleSelectionChange"
@select-all="onSelectAll"
>
<el-table-column
label="操作"
width="160"
align="center"
fixed="right"
>
<template slot-scope="scope">
<udOperation
:data="scope.row"
:disabled-edit="canUd(scope.row)"
:disabled-dle="canUd(scope.row)"
/>
</template>
</el-table-column>
<el-table-column :selectable="checkboxT" type="selection" width="55" />
<el-table-column prop="bill_code" min-width="140" label="订单编码">
<template slot-scope="scope">
@@ -168,8 +154,23 @@
<el-table-column prop="bill_type" :formatter="bill_typeFormat" min-width="100" label="业务类型" />
<el-table-column min-width="135" prop="biz_date" label="业务日期" />
<el-table-column :formatter="create_modeFormat" prop="create_mode" label="生成方式" min-width="100" />
<el-table-column label="制单人" align="center" prop="input_optname" min-width="100" />
<el-table-column prop="input_time" min-width="135" label="制单时间" />
<el-table-column label="制单人" align="center" prop="create_name" min-width="100" />
<el-table-column prop="create_time" min-width="135" label="制单时间" />
<el-table-column
label="操作"
width="160"
align="center"
fixed="right"
>
<template slot-scope="scope">
<udOperation
:data="scope.row"
:permission="{}"
:disabled-edit="canUd(scope.row)"
:disabled-dle="canUd(scope.row)"
/>
</template>
</el-table-column>
</el-table>
<!--分页组件-->
<pagination />

View File

@@ -2,7 +2,7 @@ import request from '@/utils/request'
export function add(data) {
return request({
url: 'api/shutframe',
url: 'api/shutframe/create',
method: 'post',
data
})
@@ -24,11 +24,11 @@ export function edit(data) {
})
}
export function getOutBillDtl(params) {
export function getOutBillDtl(data) {
return request({
url: '/api/shutframe/getOutBillDtl',
method: 'get',
params
url: '/api/shutframe/getBillDtl',
method: 'post',
data
})
}
export function getOutBillDtl2(params) {