| src/views/salesManagement/deliveryLedger/index.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/views/salesManagement/deliveryLedger/index.vue
@@ -56,7 +56,7 @@ link type="primary" :disabled="!isApproved(scope.row.status)" @click="openForm('edit', scope.row)">补充发货信息 @click="openForm('edit', scope.row)">发货 </el-button> <el-button link @@ -319,9 +319,9 @@ // 打开弹框 const openForm = async (type, row) => { // 补充发货信息:仅“审核通过”允许编辑 // 发货:仅“审核通过”允许编辑 if (type === 'edit' && row && !isApproved(row.status)) { proxy.$modal.msgWarning("只有审核通过的数据才可以补充发货信息"); proxy.$modal.msgWarning("只有审核通过的数据才可以发货"); return; }