mali-applet-ui 0.2.74 → 0.2.76
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.
|
@@ -164,25 +164,29 @@ export default {
|
|
|
164
164
|
}
|
|
165
165
|
&.ss-gray {
|
|
166
166
|
background: $ml-gray-color;
|
|
167
|
-
border-color: $ml-gray-color;
|
|
168
167
|
}
|
|
169
168
|
&.ss-blue {
|
|
169
|
+
color: #ffffff;
|
|
170
170
|
background: $ml-blue-color;
|
|
171
171
|
border-color: $ml-blue-color;
|
|
172
172
|
}
|
|
173
173
|
&.ss-green {
|
|
174
|
+
color: #ffffff;
|
|
174
175
|
background: $ml-green-color;
|
|
175
176
|
border-color: $ml-green-color;
|
|
176
177
|
}
|
|
177
178
|
&.ss-pink {
|
|
179
|
+
color: #ffffff;
|
|
178
180
|
background: $ml-pink-color;
|
|
179
181
|
border-color: $ml-pink-color;
|
|
180
182
|
}
|
|
181
183
|
&.ss-orange {
|
|
184
|
+
color: #ffffff;
|
|
182
185
|
background: $ml-orange-color;
|
|
183
186
|
border-color: $ml-orange-color;
|
|
184
187
|
}
|
|
185
188
|
&.ss-purple {
|
|
189
|
+
color: #ffffff;
|
|
186
190
|
background: $ml-purple-color;
|
|
187
191
|
border-color: $ml-purple-color;
|
|
188
192
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<view v-if="mediatype === 'image'" class="ml-upload-image-list">
|
|
5
5
|
<view class="ml-upload-image-item" v-for="(item, index) in fileList" :key="index">
|
|
6
6
|
<image class="ml-upload-image-img" mode="aspectFit" :src="getUrl(item)" @click="previewImageEvent(item, index)"></image>
|
|
7
|
-
<view class="ml-upload-image-del-btn" @click="removeEvent(item)">
|
|
7
|
+
<view v-if="!isFromReadonly" class="ml-upload-image-del-btn" @click="removeEvent(item)">
|
|
8
8
|
<ml-icon name="close" />
|
|
9
9
|
</view>
|
|
10
10
|
</view>
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
<ml-button status="primary" type="text" @click="downloadEvent(item)">下载</ml-button>
|
|
40
40
|
</view>
|
|
41
41
|
</view>
|
|
42
|
-
<view class="ml-upload-file-right">
|
|
42
|
+
<view v-if="!isFromReadonly" class="ml-upload-file-right">
|
|
43
43
|
<view class="ml-upload-file-del-btn" @click="removeEvent(item)">
|
|
44
44
|
<ml-icon name="close" />
|
|
45
45
|
</view>
|