Commit 43fb7a4aabbfd857bfb1f520f465db295b6f4939

Authored by 陈翱
2 parents 679c1926 50afade4

Merge remote-tracking branch 'origin/develop' into develop

ant-design-vue-jeecg/src/views/system/flow/FlowProcess.vue
... ... @@ -85,7 +85,7 @@ export default {
85 85 close() {
86 86 this.$emit('close');
87 87 this.visible = false;
88   - this.$refs.form.clearValidate();
  88 + // this.$refs.form.clearValidate();
89 89 },
90 90 edit(record,type) {
91 91 this.visible = true;
... ...
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) => {
... ...
ant-design-vue-jeecg/src/views/system/task/CircleTaskHeaderList.vue
... ... @@ -289,7 +289,7 @@ export default {
289 289 dataIndex: 'updateTime'
290 290 },
291 291 {
292   - title: '执行时间',
  292 + title: '下发时间',
293 293 align: "center",
294 294 dataIndex: 'executeTime'
295 295 },
... ...
ant-design-vue-jeecg/src/views/system/task/ReceiptTaskHeaderList.vue
... ... @@ -289,7 +289,7 @@ export default {
289 289 dataIndex: 'updateTime'
290 290 },
291 291 {
292   - title: '执行时间',
  292 + title: '下发时间',
293 293 align: "center",
294 294 dataIndex: 'executeTime'
295 295 },
... ...
ant-design-vue-jeecg/src/views/system/task/ShipmentTaskHeaderList.vue
... ... @@ -285,7 +285,7 @@ export default {
285 285 dataIndex: 'updateTime'
286 286 },
287 287 {
288   - title: '执行时间',
  288 + title: '下发时间',
289 289 align: "center",
290 290 dataIndex: 'executeTime'
291 291 },
... ...
ant-design-vue-jeecg/src/views/system/task/TransferTaskHeaderList.vue
... ... @@ -292,7 +292,7 @@ export default {
292 292 dataIndex: 'updateTime'
293 293 },
294 294 {
295   - title: '执行时间',
  295 + title: '下发时间',
296 296 align: "center",
297 297 dataIndex: 'executeTime'
298 298 },
... ...