Browse Source

发货通知单明细按钮去除限制

java8
han\hanst 9 months ago
parent
commit
40dd0a3295
  1. 12
      src/views/modules/ecss/codelnotifyConfirm.vue
  2. 2
      src/views/modules/ecss/pallet_upload_excel.vue

12
src/views/modules/ecss/codelnotifyConfirm.vue

@ -153,8 +153,8 @@
<template slot-scope="scope">
<a type="text" size="small" @click="boxDetailModel(scope.row)">箱明细</a>
<a type="text" size="small" v-if="currentRow.notifyStatus==='仓库已确认'" @click="updatePalletModel(scope.row)">修改</a>
<a type="text" size="small" v-if="currentRow.notifyStatus==='仓库已确认'" @click="deletePallet(scope.row)">删除</a>
<a type="text" size="small" @click="updatePalletModel(scope.row)">修改</a>
<a type="text" size="small" @click="deletePallet(scope.row)">删除</a>
</template>
</el-table-column>
<el-table-column
@ -190,7 +190,7 @@
fixed="left"
label="操作">
<template slot-scope="scope">
<a type="text" size="small" v-if="currentRow.notifyStatus=='仓库已确认'" @click="updateBoxModel(scope.row,1)">修改</a>
<a type="text" size="small" @click="updateBoxModel(scope.row,1)">修改</a>
</template>
</el-table-column>
<el-table-column
@ -229,7 +229,7 @@
</el-col>
<el-col :span="6">
<el-form-item :label="' '" >
<el-button @click="newBoxModel()" type="primary" v-if="currentRow.notifyStatus=='仓库已确认'" style="margin-left: 2px;margin-top: 0px">{{'新增箱'}}</el-button>
<el-button @click="newBoxModel()" type="primary" style="margin-left: 2px;margin-top: 0px">{{'新增箱'}}</el-button>
</el-form-item>
</el-col>
@ -248,8 +248,8 @@
fixed="left"
label="操作">
<template slot-scope="scope">
<a type="text" size="small" v-if="currentRow.notifyStatus=='仓库已确认'" @click="updateBoxModel(scope.row,0)">修改</a>
<a type="text" size="small" v-if="currentRow.notifyStatus=='仓库已确认'" @click="deleteBox(scope.row)">删除</a>
<a type="text" size="small" @click="updateBoxModel(scope.row,0)">修改</a>
<a type="text" size="small" @click="deleteBox(scope.row)">删除</a>
</template>
</el-table-column>
<el-table-column

2
src/views/modules/ecss/pallet_upload_excel.vue

@ -154,7 +154,7 @@
createBy: this.$store.state.user.name,
}
excel.exportTable({
url: "/ecss/coDel/searchEcssCoDelNotifyDetail",
url: "/select/ecssMapper/searchEcssCoDelNotifyDetail/list",
columnMapping: this.columnList1,//table
mergeSetting: [],//
params: searchData,

Loading…
Cancel
Save