Commit ef3bdc6a1e491a3c804b6f044ae23a94a907a071
1 parent
831c03f4
入库单页面,出库单页面单据审核BUG修复
Signed-off-by: TanYibin <5491541@qq.com>
Showing
3 changed files
with
6 additions
and
6 deletions
ant-design-vue-jeecg/src/views/system/flow/FlowProcess.vue
ant-design-vue-jeecg/src/views/system/receipt/ReceiptHeaderList.vue
... | ... | @@ -185,7 +185,7 @@ |
185 | 185 | <a class="ant-dropdown-link">更多 <a-icon type="down"/></a> |
186 | 186 | <a-menu slot="overlay"> |
187 | 187 | <a-menu-item > |
188 | - <a v-if="record.firstStatus > 0 && flowOff=='1' " @click="openProcess(record)"><a-button type="primary">审核进度</a-button><a-divider type="vertical"/></a> | |
188 | + <a v-if="record.firstStatus > 0 && flowOff=='1'" @click="openProcess(record)" type="primary">审核进度</a> | |
189 | 189 | </a-menu-item> |
190 | 190 | <a-menu-item v-has="'receiptHeader:edit'"> |
191 | 191 | <a @click="handleEdit(record)">编辑</a> |
... | ... |
ant-design-vue-jeecg/src/views/system/shipment/ShipmentHeaderList.vue
... | ... | @@ -200,7 +200,7 @@ |
200 | 200 | <a class="ant-dropdown-link">更多 <a-icon type="down"/></a> |
201 | 201 | <a-menu slot="overlay"> |
202 | 202 | <a-menu-item > |
203 | - <a v-if="record.firstStatus > 0 &&flowOff=='1' " @click="openProcess(record)"><a-button type="primary">审核进度</a-button><a-divider type="vertical"/></a> | |
203 | + <a v-if="record.firstStatus > 0 && flowOff=='1'" @click="openProcess(record)" type="primary">审核进度</a> | |
204 | 204 | </a-menu-item> |
205 | 205 | <a-menu-item v-has="'shipmentHeader:edit'"> |
206 | 206 | <a @click="handleEdit(record)">编辑</a> |
... | ... | @@ -261,8 +261,8 @@ export default { |
261 | 261 | companyList: [], |
262 | 262 | shipmentTypeList: [], |
263 | 263 | customerList: [], |
264 | - username:'', | |
265 | - flowStatus:'', | |
264 | + username: '', | |
265 | + flowStatus: '', | |
266 | 266 | flowOff:'', |
267 | 267 | // 表头 |
268 | 268 | columns: [ |
... | ... | @@ -438,7 +438,7 @@ export default { |
438 | 438 | this.selectedMainId = selectedRowKeys[0].toString(); |
439 | 439 | this.selectedRowKeys = selectedRowKeys; |
440 | 440 | this.selectionRows = selectionRows; |
441 | - this.flowStatus=selectionRows[0].firstStatus; | |
441 | + this.flowStatus = selectionRows[0].firstStatus.toString(); | |
442 | 442 | }, |
443 | 443 | hanleBack(record) { |
444 | 444 | backErpShipment(record).then((res) => { |
... | ... |