|
|
@@ -32,7 +32,7 @@
|
|
|
<el-table ref="multipleTable" :row-style="{ height: '20px' }"
|
|
|
:cell-style="{ padding: '0px' }" :header-row-style="{ height: '20px' }"
|
|
|
:header-cell-style="{ padding: '0px' }"
|
|
|
- @row-click="yydp_clickybupdate"
|
|
|
+ @row-click="yydp_clickybupdate"
|
|
|
@row-dblclick="yydp_updateCompanyFunc"
|
|
|
highlight-current-row="true"
|
|
|
:show-overflow-tooltip="true"
|
|
|
@@ -59,9 +59,10 @@
|
|
|
<!-- <el-table-column align="left" label="接单日期" prop="接单日期" width="120" /> -->
|
|
|
<el-table-column align="left" label="出库日期" prop="出库日期" width="160" />
|
|
|
<el-table-column align="left" label="落货日期" prop="落货日期" width="160" />
|
|
|
- <!-- <el-table-column align="left" label="更新时间" prop="Mod_rq" width="160" /> -->
|
|
|
<el-table-column align="left" label="审核" prop="审核" width="100" />
|
|
|
- <el-table-column align="left" label="审核日期" prop="审核日期" width="120" />
|
|
|
+ <el-table-column align="left" label="审核日期" prop="审核日期" width="160" />
|
|
|
+ <!-- <el-table-column align="left" label="更新时间" prop="Mod_rq" width="160" /> -->
|
|
|
+
|
|
|
</el-table>
|
|
|
</el-tab-pane>
|
|
|
<!-- 分页 -->
|
|
|
@@ -302,6 +303,7 @@ const onSubmit = async () => {
|
|
|
//表格复选框
|
|
|
const _Uniqid = ref('');
|
|
|
const _Sys_id = ref('');
|
|
|
+const multipleTable = ref(null);
|
|
|
const handleSelectionChange = (selection, type) => {
|
|
|
console.log(selection);
|
|
|
if(selection.length >= 1){
|
|
|
@@ -325,7 +327,12 @@ const hptg_onClick = async () => {
|
|
|
const Approvals = await Approval({Uniqid:_Uniqid.value,sys_id:userStore.userInfo.nickName});
|
|
|
if (Approvals.code === 0) {
|
|
|
searchInfo.value = ''
|
|
|
+ _Uniqid.value = ''
|
|
|
+ _Sys_id.value = ''
|
|
|
ElMessage({type: 'success',message: '核批成功'})
|
|
|
+ if (multipleTable.value) {
|
|
|
+ multipleTable.value.clearSelection();
|
|
|
+ }
|
|
|
const UnapprovalListtable = await UnapprovalList({search:searchInfo.value,page:page.value,limit:pageSize.value});
|
|
|
tableData1.splice(0,tableData1.length,...UnapprovalListtable.data.table);
|
|
|
total.value = UnapprovalListtable.data.total
|