123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <!-- 安全信息牌 -->
- <template>
- <view class="safetyCard">
- <view class="liability-unit">责任单位:{{newData.deptName}}</view>
- <view class="small-title">实验室负责人</view>
- <view class="sub-head" style="border:none;">
- <view>{{newData.adminName}}</view>
- <view @click="callPhone(newData.adminPhone)">
- <img src="@/pages_manage/images/icon_aqxxp_dh.png">
- <view>{{newData.adminPhone}}</view>
- </view>
- </view>
- <view class="small-title">安全员</view>
- <view class="sub-head" v-for="(item,index) in newData.safeUserList" :key="index">
- <view>{{item.safeUserName}}</view>
- <view @click="callPhone(item.safeUserPhone)">
- <img src="@/pages_manage/images/icon_aqxxp_dh.png">
- <view>{{item.safeUserPhone}}</view>
- </view>
- </view>
- <view class="classify" v-for="(item,index) in newData.labInfoBrandModels" :key="index">
- <view v-if="item.privateList.length>0 && item.brandType==1" class="small-title">{{item.brandName}}</view>
- <view v-if="item.privateList.length>0 && item.brandType==1 && !item.isSpecial" class="small-items" v-for="(item2,index2) in item.privateList" :key="index2">
- <view>● </view>
- <view>{{item2.infoName}}</view>
- </view>
- <view v-if="item.privateList.length>0 && item.brandType==1 && item.isSpecial" class="small-items" v-for="(item2,index2) in item.privateList" :key="index2">
- <view></view>
- <view>{{item2.infoName}}</view>
- </view>
- <view v-if="item.privateList.length>0 && item.brandType==2" class="logotype">{{item.brandName}}</view>
- <view v-if="item.privateList.length>0 && item.brandType==2" class="logotype-img">
- <img v-for="(item3,index3) in item.privateList" :key="index3" :src="baseUrl+item3.infoContent">
- </view>
- </view>
- <!-- 二维码 -->
- <img v-if="newData.qrCode" class="code-img" :src="newData.qrCode">
- </view>
- </template>
- <script>
- import { config } from '@/api/request/config.js'
- export default {
- name: "safetyCard",
- props: {
- subjectData: {},
- },
- data() {
- return {
- baseUrl:config.base_url,
- newData:{}
- }
- },
- created() {
- },
- mounted() {
- this.$set(this, 'newData',this.subjectData);
- },
- methods: {
- //拨打电话
- callPhone(tel){
- uni.makePhoneCall({
- phoneNumber: tel
- })
- },
- },
- }
- </script>
- <style lang="stylus" scoped>
- .safetyCard {
- width: 750rpx;
- .liability-unit{
- width: 750rpx;
- height: 100rpx;
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 30rpx;
- color: #222222;
- line-height: 100rpx;
- padding-left: 20rpx;
- box-sizing: border-box;
- background: #fff;
- }
- .small-title{
- width: 750rpx;
- height: 100rpx;
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 32rpx;
- color: #222222;
- line-height: 100rpx;
- padding-left: 20rpx;
- box-sizing: border-box;
- }
- .sub-head{
- width: 750rpx;
- height: 100rpx;
- background: #fff;
- padding:0 20rpx;
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1rpx solid #E0E0E0;
- >view:nth-of-type(1){
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 28rpx;
- color: #999999;
- line-height: 30rpx;
- }
- >view:nth-of-type(2){
- display: flex;
- justify-content: flex-end;
- align-items: center;
- >img{
- width: 34rpx;
- height: 34rpx;
- margin-right: 14rpx;
- }
- >view{
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 28rpx;
- color: #0183FA;
- line-height: 30rpx;
- }
- }
- }
- .sub-head:last-child{
- border-bottom: none;
- }
- .classify{
- .small-items{
- padding-left: 20rpx;
- box-sizing: border-box;
- background: #fff;
- display: flex;
- justify-content: flex-start;
- padding: 20rpx;
- box-sizing: border-box;
- >view:nth-of-type(1){
- color: #999999;
- margin-right: 12rpx;
- }
- >view:nth-of-type(2){
- display: block;
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 28rpx;
- line-height: 34rpx;
- color: #999999;
- }
- }
- .logotype{
- width: 750rpx;
- height: 100rpx;
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 32rpx;
- color: #333333;
- line-height: 100rpx;
- padding-left: 20rpx;
- box-sizing: border-box;
- background: #0183FA;
- }
- .logotype-img{
- padding: 26rpx 0 34rpx 0;
- box-sizing: border-box;
- background: #fff;
- >img{
- display: inline-block;
- width: 86rpx;
- height: 114rpx;
- margin-left: 30rpx;
- margin-bottom: 20rpx;
- }
- }
- }
- .code-img{
- width: 178rpx;
- height: 178rpx;
- margin: 22rpx 0 50rpx 276rpx;
- }
- }
- </style>
|