doctor-admin-components 1.0.14-beta.37 → 1.0.14-beta.39
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
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<el-image style="width: 38px; height: 46px" :src="fileInfo.url" fit="contain" :preview-src-list="[fileInfo.url]" v-else-if="isImage(fileInfo.url)"></el-image>
|
|
10
10
|
<div class="area-file" v-else></div>
|
|
11
11
|
<div>
|
|
12
|
-
<div>
|
|
12
|
+
<div class="name-width">{{ fileInfo.fileName }}</div>
|
|
13
13
|
<div class="preview-download-root">
|
|
14
14
|
<div
|
|
15
15
|
v-if="!fileInfo.downloadUrl"
|
|
@@ -318,8 +318,10 @@ export default {
|
|
|
318
318
|
<style lang="scss" scoped>
|
|
319
319
|
.file-info {
|
|
320
320
|
min-width: 450px;
|
|
321
|
-
|
|
322
|
-
|
|
321
|
+
@media screen and (max-width: 768px) {
|
|
322
|
+
min-width: 300px;
|
|
323
|
+
max-width: 300px;
|
|
324
|
+
}
|
|
323
325
|
.main {
|
|
324
326
|
display: flex;
|
|
325
327
|
.checkbox-position {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: zhangpengwei 15038779532@163.com
|
|
3
3
|
* @Date: 2023-08-28 19:04:39
|
|
4
4
|
* @LastEditors: zhangpengwei@1338418459736990.onaliyun.com zhangpengwei@1338418459736990.onaliyun.com
|
|
5
|
-
* @LastEditTime:
|
|
5
|
+
* @LastEditTime: 2025-01-20 14:03:50
|
|
6
6
|
* @FilePath: /doctor-admin-components/packages/src/views/biz/contractTracing/contractSummary.vue
|
|
7
7
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
8
8
|
-->
|
|
@@ -354,7 +354,7 @@
|
|
|
354
354
|
</el-table-column>
|
|
355
355
|
</el-table>
|
|
356
356
|
|
|
357
|
-
<el-tabs v-model="activeName" type="card">
|
|
357
|
+
<el-tabs v-if="accessToken" v-model="activeName" type="card">
|
|
358
358
|
<el-tab-pane v-for="(item, index) in shipmentList" :key="index" :name="index.toString()" :label="item.billOfLadingNo">
|
|
359
359
|
<iframe :src="getGeekYumPage(item)" width="1100" height="600"></iframe>
|
|
360
360
|
</el-tab-pane>
|