doway-coms 2.12.3 → 2.12.4
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
|
@@ -42,18 +42,9 @@
|
|
|
42
42
|
type="eye"
|
|
43
43
|
@click="viewAttach(internalRow.attach)"
|
|
44
44
|
/>
|
|
45
|
-
<
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
:show-time="{
|
|
49
|
-
defaultValue: moment(
|
|
50
|
-
'2000-01-01 00:00:00',
|
|
51
|
-
'YYYY-MM-DD HH:mm:ss'
|
|
52
|
-
),
|
|
53
|
-
}"
|
|
54
|
-
placeholder="开始时间"
|
|
55
|
-
v-model="internalRow.attach.createTime"
|
|
56
|
-
/>
|
|
45
|
+
<div>
|
|
46
|
+
上传时间:{{internalRow.attach.createTime}}
|
|
47
|
+
</div>
|
|
57
48
|
</div>
|
|
58
49
|
<div class="attach" v-else-if="internalRow.attach.contentType == 'application/pdf'">
|
|
59
50
|
<img
|
|
@@ -77,18 +68,9 @@
|
|
|
77
68
|
type="eye"
|
|
78
69
|
@click="viewAttach(internalRow.attach)"
|
|
79
70
|
/>
|
|
80
|
-
<
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
:show-time="{
|
|
84
|
-
defaultValue: moment(
|
|
85
|
-
'2000-01-01 00:00:00',
|
|
86
|
-
'YYYY-MM-DD HH:mm:ss'
|
|
87
|
-
),
|
|
88
|
-
}"
|
|
89
|
-
placeholder="开始时间"
|
|
90
|
-
v-model="internalRow.attach.createTime"
|
|
91
|
-
/>
|
|
71
|
+
<div>
|
|
72
|
+
上传时间:{{internalRow.attach.createTime}}
|
|
73
|
+
</div>
|
|
92
74
|
</div>
|
|
93
75
|
<div class="attach" v-else>
|
|
94
76
|
<img
|
|
@@ -108,6 +90,9 @@
|
|
|
108
90
|
type="download"
|
|
109
91
|
@click="downloadAttach(internalRow.attach)"
|
|
110
92
|
/>
|
|
93
|
+
<div>
|
|
94
|
+
上传时间:{{internalRow.attach.createTime}}
|
|
95
|
+
</div>
|
|
111
96
|
</div>
|
|
112
97
|
<div
|
|
113
98
|
:style="{ width: width }"
|
|
@@ -120,19 +105,6 @@
|
|
|
120
105
|
>
|
|
121
106
|
{{ internalRow.attach.name }}
|
|
122
107
|
</div>
|
|
123
|
-
|
|
124
|
-
<a-date-picker
|
|
125
|
-
valueFormat="YYYY-MM-DD HH:mm:ss"
|
|
126
|
-
format="YYYY-MM-DD HH:mm:ss"
|
|
127
|
-
:show-time="{
|
|
128
|
-
defaultValue: moment(
|
|
129
|
-
'2000-01-01 00:00:00',
|
|
130
|
-
'YYYY-MM-DD HH:mm:ss'
|
|
131
|
-
),
|
|
132
|
-
}"
|
|
133
|
-
placeholder="开始时间"
|
|
134
|
-
v-model="internalRow.attach.createTime"
|
|
135
|
-
/>
|
|
136
108
|
</template>
|
|
137
109
|
</div>
|
|
138
110
|
<a-spin tip="上传中" :spinning="uploading">
|
|
@@ -395,6 +367,7 @@ export default {
|
|
|
395
367
|
newRows[x].attach.fileName = responseData.content[i].fileName;
|
|
396
368
|
newRows[x].attach.name = responseData.content[i].name;
|
|
397
369
|
newRows[x].attach.content = responseData.content[i].content;
|
|
370
|
+
newRows[x].attach.createTime = responseData.content[i].createTime;
|
|
398
371
|
newRows[x].attach.contentType =
|
|
399
372
|
responseData.content[i].contentType;
|
|
400
373
|
// newRows[x].attach.isDefault = false
|