| | |
| | | import { useMessage } from '@jnpf/hooks'; |
| | | |
| | | import { getTmsRecordDetail, updateTmsRecord } from '#/api/x/tms/record'; |
| | | import { TMS_BTN } from '#/views/x/tms/shared/ui'; |
| | | |
| | | defineOptions({ name: 'TmsRecordEdit' }); |
| | | |
| | |
| | | <div class="mt-1 text-gray-400 text-sm">编号:{{ detail.recordNo }}</div> |
| | | </div> |
| | | <a-space> |
| | | <a-button @click="goBack">取消</a-button> |
| | | <a-button type="primary" :loading="submitting" @click="handleSubmit">保存</a-button> |
| | | <a-button @click="goBack">{{ TMS_BTN.cancel }}</a-button> |
| | | <a-button type="primary" :loading="submitting" @click="handleSubmit">{{ TMS_BTN.save }}</a-button> |
| | | </a-space> |
| | | </div> |
| | | |