修改指令标签的弹出形式及其他页面展示文字
This commit is contained in:
parent
7bb48e1052
commit
94a9d33428
|
|
@ -1,7 +1,13 @@
|
|||
<template>
|
||||
<j-modal :title="title" :width="width" :visible="visible" @ok="handleOk" :okButtonProps="{ class: { 'jee-hidden': disableSubmit } }" @cancel="handleCancel" cancelText="关闭">
|
||||
|
||||
<a-drawer :title="title" :width="width" :visible="visible" :closable="true" :footer-style="{ textAlign: 'right' }"
|
||||
:bodyStyle="{ padding: '14px' }" @close="handleCancel">
|
||||
<template #footer>
|
||||
<a-button type="primary" style="margin-right: 8px" @click="handleCancel">关闭</a-button>
|
||||
<a-button type="primary" @click="handleOk" v-if="!disableSubmit">确认</a-button>
|
||||
</template>
|
||||
<EmployeesServiceTagForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false"></EmployeesServiceTagForm>
|
||||
</j-modal>
|
||||
</a-drawer>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
|
|
|
|||
|
|
@ -157,7 +157,7 @@ function getTableAction(record) {
|
|||
onClick: handleHllc.bind(null, record),
|
||||
},
|
||||
{
|
||||
label: '指派护理人员',
|
||||
label: '优先派单',
|
||||
onClick: handleAssignCaregiver.bind(null, record),
|
||||
}
|
||||
];
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@
|
|||
</ElderHllc>
|
||||
</a-drawer>
|
||||
<!-- 指派护理人员 -->
|
||||
<a-drawer :title="'指派护理人员'" width="70vw" :visible="hlryVisible" :closable="true"
|
||||
<a-drawer :title="'优先派单'" width="70vw" :visible="hlryVisible" :closable="true"
|
||||
:footer-style="{ textAlign: 'right' }" :bodyStyle="{ padding: '14px' }" @close="handleHlryCancel">
|
||||
<template #footer>
|
||||
<a-button type="primary" style="margin-right: 8px" @click="handleHlryCancel">关闭</a-button>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<div>
|
||||
<a-row>
|
||||
<a-col :span="24" style="margin-bottom: 14px;">
|
||||
<a-button type="primary" @click="handleCleanHlry">不指派护理人员</a-button>
|
||||
<a-button type="primary" @click="handleCleanHlry">取消优先派单</a-button>
|
||||
</a-col>
|
||||
<a-col v-for="(item, index) in dataList" :key="index"
|
||||
:style="{ 'padding-right': (index + 1) % 3 === 0 ? '0px' : '14px', 'margin-bottom': '14px' }" :xs="24" :sm="24"
|
||||
|
|
|
|||
Loading…
Reference in New Issue