|
@@ -11,7 +11,7 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :lg="8">
|
|
|
- <a-form-item name="arrivalDate">
|
|
|
+ <a-form-item name="billDate">
|
|
|
<template #label><span title="单据日期(bill date)">单据日期(bill date)</span></template>
|
|
|
<a-range-picker value-format="YYYY-MM-DD" v-model:value="queryParam.billDate" class="query-group-cust"/>
|
|
|
</a-form-item>
|
|
@@ -19,7 +19,7 @@
|
|
|
<template v-if="toggleSearchStatus">
|
|
|
<a-col :lg="8">
|
|
|
<a-form-item name="currency">
|
|
|
- <template #label><span title="币种(currency)">提交(currency)</span></template>
|
|
|
+ <template #label><span title="币种(currency)">币种(currency)</span></template>
|
|
|
<JDictSelectTag v-model:value="queryParam.currency" placeholder="请选择" dictCode="currency"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
@@ -57,8 +57,8 @@
|
|
|
<BasicTable @register="registerTable" :rowSelection="rowSelection" size="small" >
|
|
|
<!--插槽:table标题-->
|
|
|
<template #tableTitle>
|
|
|
- <a-button type="primary" @click="handleAdd" preIcon="ant-design:plus-outlined" v-auth="'purCode:pur_delivery_note:add'"> 新增(add)</a-button>
|
|
|
- <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls" v-auth="'purCode:pur_delivery_note:exportXls'"> 导出(export)</a-button>
|
|
|
+ <a-button type="primary" @click="handleAdd" preIcon="ant-design:plus-outlined" v-auth="'purCode:pur_shipping_fee:add'"> 新增(add)</a-button>
|
|
|
+ <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls" v-auth="'purCode:pur_shipping_fee:exportXls'"> 导出(export)</a-button>
|
|
|
<a-button type="primary" @click="submit" > 提交(submit)</a-button>
|
|
|
<a-button type="primary" @click="cancelSubmit" > 取消提交(cancelSubmit)</a-button>
|
|
|
<a-button type="primary" @click="close" > 关闭(close)</a-button>
|
|
@@ -123,7 +123,7 @@
|
|
|
fixed:'right'
|
|
|
},
|
|
|
scroll:{
|
|
|
- x:'3000px'
|
|
|
+ x:'1500px'
|
|
|
},
|
|
|
beforeFetch: async (params) => {
|
|
|
let rangerQuery = await setRangeQuery();
|
|
@@ -233,7 +233,7 @@
|
|
|
{
|
|
|
label: '编辑(edit)',
|
|
|
onClick: handleEdit.bind(null, record),
|
|
|
- auth: 'purCode:pur_inquiry_form:edit',
|
|
|
+ auth: 'purCode:pur_shipping_fee:edit',
|
|
|
ifShow: record.submit=='0'|| record.submit==''
|
|
|
},
|
|
|
{
|
|
@@ -260,7 +260,7 @@
|
|
|
confirm: handleDelete.bind(null, record),
|
|
|
placement: 'topLeft'
|
|
|
},
|
|
|
- auth: 'purCode:pur_delivery_note:delete',
|
|
|
+ auth: 'purCode:pur_shipping_fee:delete',
|
|
|
ifShow: record.submit=='0'|| record.submit=='',
|
|
|
|
|
|
}
|
|
@@ -326,19 +326,10 @@
|
|
|
xs: 24,
|
|
|
sm: 16,
|
|
|
});
|
|
|
- const labelCol1 = reactive({
|
|
|
- xs:24,
|
|
|
- sm:10,
|
|
|
- });
|
|
|
- const wrapperCol1 = reactive({
|
|
|
- xs: 24,
|
|
|
- sm: 14,
|
|
|
- });
|
|
|
/**
|
|
|
* 重置
|
|
|
*/
|
|
|
function searchReset() {
|
|
|
- debugger
|
|
|
formRef.value.resetFields();
|
|
|
queryParam.supplier = '';
|
|
|
selectedRowKeys.value = [];
|