体检引导隐藏身份证号,修改 团检多选一bug

main
yanzai 1 year ago
parent fb69f0c844
commit 2bab943e0a

@ -436,7 +436,7 @@ select combo_id as c_id,count(*) as sale_count from orders where status in(2,4)
//如果有多选一项目 //如果有多选一项目
//构建多选一数据 //构建多选一数据
$Nx1_arrInfo=[]; $Nx1_arrInfo=[];
if(isset($duo_xuan_yi) and !empty($duo_xuan_yi)){ if(isset($duo_xuan_yi) and !empty($duo_xuan_yi) and (!isset($combo_id) or $combo_id == 0)){
foreach ($duo_xuan_yi as $r_k=>$r_v){ foreach ($duo_xuan_yi as $r_k=>$r_v){
$Nx1_arrInfo[]=[ $Nx1_arrInfo[]=[
'id' => $r_v['item_id'], 'id' => $r_v['item_id'],

@ -51,6 +51,7 @@ class DoctorController extends Controller
"data" => $datesArray, "data" => $datesArray,
"action" => "1" "action" => "1"
]); ]);
// return \Yz::Return(true,"",$res);
$list = []; $list = [];
if ($res['code'] == '200' && count($res['yisheng']) != 0) { if ($res['code'] == '200' && count($res['yisheng']) != 0) {
foreach ($res['yisheng'] as $key => $value) { foreach ($res['yisheng'] as $key => $value) {

@ -91,7 +91,7 @@ import DraggableButton from "@/pages/components/goHome.vue";
<view class="person_name_wrapper">{{ i.name }}</view> <view class="person_name_wrapper">{{ i.name }}</view>
<view class="person_sex_wrapper">{{ i.sex === 1 ? "男" : "女" }}</view> <view class="person_sex_wrapper">{{ i.sex === 1 ? "男" : "女" }}</view>
</view> </view>
<view class="person_idnumber_wrapper">{{ i.id_number }}</view> <view class="person_idnumber_wrapper">{{ i.birthday }}</view>
</view> </view>
<view v-if="!!i.relation" class="person_type_wrapper">{{ <view v-if="!!i.relation" class="person_type_wrapper">{{
i.relation i.relation

Loading…
Cancel
Save