doctor-admin-components 1.0.13-beta.42 → 1.0.13-beta.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "doctor-admin-components",
3
3
  "version1": "1.0.11",
4
- "version": "1.0.13-beta.42",
4
+ "version": "1.0.13-beta.44",
5
5
  "private": false,
6
6
  "main1": "lib/index.umd.min.js",
7
7
  "main": "packages/index.js",
@@ -440,7 +440,7 @@
440
440
  <!-- 装箱单 -->
441
441
  <ContentTitle :contentTitleProp="{
442
442
  bgButton: $t('contractDetail.packingList'),
443
- bgTime: contract.contractType == 'purchase' ? shipmentFileInfo.purchasePersonalPackingList && timeFormate(shipmentFileInfo.purchasePersonalPackingList) : shipmentFileInfo.salePersonalPackingList && timeFormate(shipmentFileInfo.salePersonalPackingList),
443
+ bgTime: contract.contractType == 'purchase' ? shipmentFileInfo.purchasePersonalPackingList && timeFormate(shipmentFileInfo.purchasePersonalPackingList) : shipmentFileInfo.packingList && timeFormate(shipmentFileInfo.packingList),
444
444
  bgcolor: shipProgressInfo.bgcolor
445
445
  }"></ContentTitle>
446
446
  <el-row v-if="contract.contractType == 'purchase'">
@@ -465,7 +465,7 @@
465
465
  ">{{ identify }}
466
466
  </span>
467
467
  </div>
468
- <ShowAndHide :dataInfoArr="shipmentFileInfo.purchasePersonalPackingList" heightStr="50px" :HideAmount="4">
468
+ <ShowAndHide :dataInfoArr="shipmentFileInfo.purchasePersonalPackingList" heightStr="50px" :HideAmount="2">
469
469
  <template>
470
470
  <el-col :span="24">
471
471
  <div class="file-list">
@@ -496,7 +496,7 @@
496
496
  </el-row>
497
497
  <el-row v-if="contract.contractType == 'sale'">
498
498
  <div>
499
- <ShowAndHide :dataInfoArr="shipmentFileInfo.packingList || []" heightStr="50px" :HideAmount="4">
499
+ <ShowAndHide :dataInfoArr="shipmentFileInfo.packingList || []" heightStr="50px" :HideAmount="2">
500
500
  <el-col :span="24">
501
501
  <div class="file-list">
502
502
  <el-col :span="12" v-if="!shipmentFileInfo.packingList || shipmentFileInfo.packingList.length == 0" class="center-status">
@@ -760,7 +760,7 @@
760
760
  </el-col>
761
761
  <el-col :span="24">
762
762
  <el-col :span="24">
763
- <div>
763
+ <div style="margin-bottom:-20px">
764
764
  {{ getShipmentPurchaseAmount(shipmentFileInfo,shipmentIndex) }}
765
765
  <span
766
766
  v-if="channel !== 'official-website' &&
@@ -941,8 +941,7 @@
941
941
  bgcolor: getGoodsProgressInfo.bgcolor,
942
942
  successFlag: true
943
943
  }"></ContentTitle>
944
-
945
- <div v-if="!contractFileInfo.balanceInvoiceFullyPaidFlag">
944
+ <div v-if="!shipmentFileInfo.balanceInvoiceFullyPaidFlag">
946
945
  <i class="el-icon-time"></i>
947
946
  <span style="color:#f00">{{ $t('contractDetail.Final_payment_unpaid') }}</span>
948
947
  </div>
@@ -2,17 +2,17 @@
2
2
  * @Author: zhangpengwei@1338418459736990.onaliyun.com zhangpengwei@1338418459736990.onaliyun.com
3
3
  * @Date: 2024-02-26 10:03:01
4
4
  * @LastEditors: zhangpengwei@1338418459736990.onaliyun.com zhangpengwei@1338418459736990.onaliyun.com
5
- * @LastEditTime: 2024-04-09 20:22:20
5
+ * @LastEditTime: 2024-04-10 19:59:13
6
6
  * @FilePath: /doctor-admin-components 公共组件/packages/src/views/biz/bizFileInfo/IMGPreviewCheckBox.vue
7
7
  * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
8
8
  -->
9
9
  <template>
10
10
  <div class="img-preview-root">
11
- <div class="img-preview" :style="open ? 'height:max-content' : {'height':''}">
11
+ <div class="img-preview" :style="open ? 'height:max-content' : {'height':heightStr}">
12
12
  <slot></slot>
13
- <div class="billOfLadingNo-more" @click.stop="openFun" v-if="imgList && imgList.length > HideAmount">
14
- <i v-if="open" class="el-icon-caret-top"></i>
15
- <i v-else class="el-icon-caret-bottom"></i>
13
+ <div class="billOfLadingNo-more" @click.stop="openFun" v-if="imgList && imgList.length > HideAmount" :style="{'height':heightStr}">
14
+ <i v-if="open" class="el-icon-caret-top icon-more"></i>
15
+ <i v-else class="el-icon-caret-bottom icon-more"></i>
16
16
  </div>
17
17
  </div>
18
18
  </div>
@@ -148,7 +148,12 @@ export default {
148
148
  top:0;
149
149
  background-color: #999;
150
150
  text-align: center;
151
- line-height: 100px;
151
+ .icon-more {
152
+ position: absolute;
153
+ top: 50%;
154
+ left:50%;
155
+ transform: translate(-50%, -50%);
156
+ }
152
157
  }
153
158
 
154
159
  .img-preview-root {
@@ -2,7 +2,7 @@
2
2
  * @Author: zhangpengwei 15038779532@163.com
3
3
  * @Date: 2023-07-20 17:13:54
4
4
  * @LastEditors: zhangpengwei@1338418459736990.onaliyun.com zhangpengwei@1338418459736990.onaliyun.com
5
- * @LastEditTime: 2024-04-10 11:31:10
5
+ * @LastEditTime: 2024-04-10 20:22:55
6
6
  * @FilePath: /recycle-vue-ui再生博士后台管理/src/views/biz/contractTracing/contractTracingDetail.vue
7
7
  * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
8
8
  -->
@@ -154,8 +154,8 @@ export default {
154
154
  const contractId = this.$route.params && this.$route.params.contractId;
155
155
  this.getContract(contractId);
156
156
  const activeName = this.$route.query && this.$route.query.activeName;
157
- // this.activeName = activeName || 'first';
158
- this.activeName = 'fourth'
157
+ this.activeName = activeName || 'first';
158
+ // this.activeName = 'fourth'
159
159
  localStorage.setItem('contractDetail', location.href);
160
160
  location.href;
161
161
  },