| | |
| | | ellipsis: true, |
| | | ...getColumnSearchProps('orderNo'), |
| | | }, |
| | | { |
| | | title: formatMessage('db.man_task_detl.wave_no', '波次编号'), |
| | | dataIndex: ['wave$', 'waveNo'], |
| | | width: 140, |
| | | ellipsis: true, |
| | | ...getColumnSearchProps('waveNo'), |
| | | }, |
| | | ]; |
| | | |
| | | const fieldList = []; |
| | |
| | | |
| | | watch(taskId, (newVal, oldVal) => { |
| | | if (newVal != null) { |
| | | state.loading = true; |
| | | tableData.value = [] |
| | | get("/api/taskDetl/taskId/" + newVal, {}).then((resp) => { |
| | | let result = resp.data; |
| | | let index = 1; |
| | |
| | | tmp.push(item) |
| | | }) |
| | | tableData.value = tmp; |
| | | |
| | | state.loading = false; |
| | | }) |
| | | |
| | | get("/api/task/" + newVal, {}).then((resp) => { |
| | |
| | | </div> |
| | | </div> |
| | | <a-table :data-source="tableData" :defaultExpandAllRows="false" :key="TABLE_KEY" rowKey="id" |
| | | :scroll="{ y: 768 }" :columns="state.columns"> |
| | | :scroll="{ y: 768 }" :columns="state.columns" :loading="state.loading"> |
| | | <template #bodyCell="{ column, text, record }"> |
| | | <template v-if="column.dataIndex === 'orderNo'"> |
| | | <a-button type="link" @click="openOrderDetl(record)">{{ text }}</a-button> |
| | | </template> |
| | | |
| | | <template v-if="typeof (column.dataIndex) === 'object'"> |
| | | <template v-if="column.dataIndex[1] === 'waveNo'"> |
| | | {{ text }} |
| | | </template> |
| | | </template> |
| | | </template> |
| | | </a-table> |
| | | </a-modal> |