|
|
|
|
@ -119,6 +119,7 @@ const buy = () => {
|
|
|
|
|
group_id: groupId.value,
|
|
|
|
|
item_ids: selectIds.value,
|
|
|
|
|
hospital: $store.save_info.hospital,
|
|
|
|
|
duo_xuan_yi: $store.getDuoXuanYi(),
|
|
|
|
|
});
|
|
|
|
|
$store.setYytjInfo({});
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
@ -135,6 +136,7 @@ const getBuyInfo = async () => {
|
|
|
|
|
hospital: $store.save_info.hospital,
|
|
|
|
|
person_id: personId.value,
|
|
|
|
|
group_id: groupId.value,
|
|
|
|
|
duo_xuan_yi: $store.getDuoXuanYi(),
|
|
|
|
|
};
|
|
|
|
|
const response = await $api("BuyInfo", obj);
|
|
|
|
|
$response(response, () => {
|
|
|
|
|
@ -383,18 +385,32 @@ onShow(() => {
|
|
|
|
|
<view class="grow center">检查指标意义</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view v-for="(val, index) in groupInfo?.items" :key="index">
|
|
|
|
|
<view v-if="val.keshi_name != '材料费'">
|
|
|
|
|
<view class="flex h-55rpx bg-#9f9f9f text-#fff text-24rpx rounded-10rpx mt-10rpx">
|
|
|
|
|
<view class="min-w-155rpx max-w-155rpx center b-0 b-r-4 b-solid b-#fff"></view>
|
|
|
|
|
<view class="grow center">{{ val.keshi_name }}({{ val.children.length }})</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="flex bg-#efefef text-#000 text-24rpx rounded-10rpx mt-10rpx" v-for="(v, i) in val.children" :key="i">
|
|
|
|
|
<view class="min-w-155rpx break-all max-w-155rpx center b-0 b-r-4 b-solid b-#fff p-10rpx box-border text-center">
|
|
|
|
|
{{ v.name }}
|
|
|
|
|
<view v-if="val.keshi_name != '材料费'">
|
|
|
|
|
<view
|
|
|
|
|
class="flex h-55rpx bg-#9f9f9f text-#fff text-24rpx rounded-10rpx mt-10rpx"
|
|
|
|
|
>
|
|
|
|
|
<view
|
|
|
|
|
class="min-w-155rpx max-w-155rpx center b-0 b-r-4 b-solid b-#fff"
|
|
|
|
|
></view>
|
|
|
|
|
<view class="grow center"
|
|
|
|
|
>{{ val.keshi_name }}({{ val.children.length }})</view
|
|
|
|
|
>
|
|
|
|
|
</view>
|
|
|
|
|
<view
|
|
|
|
|
class="flex bg-#efefef text-#000 text-24rpx rounded-10rpx mt-10rpx"
|
|
|
|
|
v-for="(v, i) in val.children"
|
|
|
|
|
:key="i"
|
|
|
|
|
>
|
|
|
|
|
<view
|
|
|
|
|
class="min-w-155rpx break-all max-w-155rpx center b-0 b-r-4 b-solid b-#fff p-10rpx box-border text-center"
|
|
|
|
|
>
|
|
|
|
|
{{ v.name }}
|
|
|
|
|
</view>
|
|
|
|
|
<view class="grow center p-10rpx box-border">{{
|
|
|
|
|
v.desc || "-"
|
|
|
|
|
}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="grow center p-10rpx box-border">{{v.desc || "-" }}</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|