fix(#784): guanyu (文件合入)
This commit is contained in:
@@ -53,4 +53,26 @@ export function cancel(data) {
|
|||||||
method: 'put',
|
method: 'put',
|
||||||
data: data
|
data: data
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 医嘱执行
|
||||||
|
*/
|
||||||
|
export function adviceExecute(data) {
|
||||||
|
return request({
|
||||||
|
url: '/nurse-station/advice-process/advice-execute',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 医嘱不执行
|
||||||
|
*/
|
||||||
|
export function adviceNoExecute(data) {
|
||||||
|
return request({
|
||||||
|
url: '/nurse-station/advice-process/advice-void',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
}
|
}
|
||||||
@@ -373,7 +373,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import {ref, computed, getCurrentInstance} from 'vue';
|
import {ref, computed, getCurrentInstance} from 'vue';
|
||||||
import {adviceVerify, cancel, getPrescriptionList} from './api';
|
import {adviceVerify, cancel, adviceExecute, adviceNoExecute, getPrescriptionList} from './api';
|
||||||
import {patientInfoList} from '../../components/store/patient.js';
|
import {patientInfoList} from '../../components/store/patient.js';
|
||||||
import {formatDateStr} from '@/utils/index';
|
import {formatDateStr} from '@/utils/index';
|
||||||
import {RequestStatus} from '@/utils/medicalConstants';
|
import {RequestStatus} from '@/utils/medicalConstants';
|
||||||
|
|||||||
Reference in New Issue
Block a user