解决服务指令表去除周期类型字段引发的报错

This commit is contained in:
1378012178@qq.com 2026-01-21 14:57:02 +08:00
parent 04e515dff0
commit 0c9c60b006
3 changed files with 18 additions and 3 deletions

View File

@ -102,6 +102,12 @@ export const columns: BasicColumn[] = [
dataIndex: 'serviceDuration', dataIndex: 'serviceDuration',
width: 135, width: 135,
}, },
{
title: '超时时长(分钟)',
align: 'center',
dataIndex: 'timeoutDuration',
width: 135,
},
// { // {
// title: '指令状态', // title: '指令状态',
// align: 'center', // align: 'center',

View File

@ -384,7 +384,8 @@
<div style="padding: 14px; background-color: white; display: flex; align-items: center; flex-shrink: 0;"> <div style="padding: 14px; background-color: white; display: flex; align-items: center; flex-shrink: 0;">
<a-row style="width: 100%;"> <a-row style="width: 100%;">
<a-col :span="3" style="display: flex; align-items: center;"> <a-col :span="3" style="display: flex; align-items: center;">
<span style="font-weight: bold;font-size: 16px;">镜像码<span style="color: #1890FF;">{{ syncCode }}</span></span> <span style="font-weight: bold;font-size: 16px;">镜像码<span style="color: #1890FF;">{{ syncCode
}}</span></span>
</a-col> </a-col>
<a-col :span="3" style="display: flex; align-items: center; justify-content: flex-end;"> <a-col :span="3" style="display: flex; align-items: center; justify-content: flex-end;">
<a-button @click="copySyncCodeFunc()" type="primary" style="margin-right: 8px;">复制</a-button> <a-button @click="copySyncCodeFunc()" type="primary" style="margin-right: 8px;">复制</a-button>
@ -568,7 +569,8 @@ function handleDetail(record: Recordable) {
* 成功回调 * 成功回调
*/ */
function handleSuccess() { function handleSuccess() {
(selectedRowKeys.value = []) && reload(); selectedRowKeys.value = []
reload()
reloadTree() reloadTree()
} }

View File

@ -70,12 +70,13 @@ export const columns: BasicColumn[] = [
title: '收费价格', title: '收费价格',
align: 'center', align: 'center',
dataIndex: 'tollPrice', dataIndex: 'tollPrice',
width: 100, width: 90,
}, },
{ {
title: '提成价格', title: '提成价格',
align: 'center', align: 'center',
dataIndex: 'comPrice', dataIndex: 'comPrice',
width: 90,
}, },
// { // {
// title: '医保报销', // title: '医保报销',
@ -100,6 +101,12 @@ export const columns: BasicColumn[] = [
dataIndex: 'serviceDuration', dataIndex: 'serviceDuration',
width: 135, width: 135,
}, },
{
title: '超时时长(分钟)',
align: 'center',
dataIndex: 'timeoutDuration',
width: 135,
},
// { // {
// title: '指令状态', // title: '指令状态',
// align: 'center', // align: 'center',