This commit is contained in:
2025-12-03 17:46:49 +08:00
parent 593c8bfe0b
commit e09f90203f
6 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -27,6 +27,6 @@ COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
# 使用脚本作为入口点 # 使用脚本作为入口点
ENTRYPOINT ["/entrypoint.sh"] ENTRYPOINT ["bash","/entrypoint.sh"]
EXPOSE 80 EXPOSE 80
+2 -2
View File
@@ -682,8 +682,8 @@
firstFormOne.value = []; firstFormOne.value = [];
const params = { const params = {
centerId: centerId.value, centerId: centerId.value,
startDate: '2000-01-01', // startDate: '2000-01-01',
endDate: '2030-12-31', // endDate: '2030-12-31',
}; };
indexModalTitle.value = '今日应急'; indexModalTitle.value = '今日应急';
modalApi.value = todayEmergencyListApi; modalApi.value = todayEmergencyListApi;
+1
View File
@@ -741,6 +741,7 @@
.item-two { .item-two {
color: #00ccff; color: #00ccff;
text-align: right;
} }
} }
+17 -17
View File
@@ -687,21 +687,21 @@ export const centerMapFromList = [
// options: checkData, // options: checkData,
// defaultValue: '', // defaultValue: '',
// }, // },
{ // {
label: '是否成功控降', // label: '是否成功控降',
field: 'successFlag', // field: 'successFlag',
type: 'select', // type: 'select',
placeholder: '请选择是否成功控降', // placeholder: '请选择是否成功控降',
options: isTrueOfFalse, // options: isTrueOfFalse,
defaultValue: '', // defaultValue: '',
}, // },
{ // {
label: '单位名称', // label: '单位名称',
field: 'departName', // field: 'departName',
type: 'input', // type: 'input',
placeholder: '请输入单位名称', // placeholder: '请输入单位名称',
defaultValue: '', // defaultValue: '',
}, // },
]; ];
export const twoRNewColumns = [ export const twoRNewColumns = [
@@ -717,8 +717,8 @@ export const twoRNewColumns = [
}, },
{ {
title: '性别', title: '性别',
dataIndex: 'sex', dataIndex: 'sexCode',
key: 'sex', key: 'sexCode',
width: 50, width: 50,
customRender: ({ text }) => { customRender: ({ text }) => {
switch (text) { switch (text) {
+8 -8
View File
@@ -68,14 +68,14 @@ export const list = [
field: 'hypertension', field: 'hypertension',
span: 24, span: 24,
options: [ options: [
{
label: '否',
value: 0,
},
{ {
label: '是', label: '是',
value: 1, value: 1,
}, },
{
label: '否',
value: 2,
},
], ],
}, },
{ {
@@ -123,14 +123,14 @@ export const list = [
field: 'diabetes', field: 'diabetes',
span: 24, span: 24,
options: [ options: [
{
label: '否',
value: 0,
},
{ {
label: '是', label: '是',
value: 1, value: 1,
}, },
{
label: '否',
value: 2,
},
], ],
}, },
{ {
-1
View File
@@ -112,7 +112,6 @@
} }
function handlePolice(item: any) { function handlePolice(item: any) {
debugger;
openInfor.value = true; openInfor.value = true;
showSping.value = true; showSping.value = true;
userInfo.value = {}; userInfo.value = {};