el-plus-crud 0.0.11 → 0.0.13
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/CHANGELOG.md +4 -0
- package/README.md +115 -3
- package/build.js +31 -9
- package/dist/components/el-plus-form/ElPlusForm.vue.d.ts +320 -0
- package/dist/components/el-plus-form/ElPlusFormDialog.vue.d.ts +74 -0
- package/dist/components/el-plus-form/components/ElPlusFormArea.vue.d.ts +44 -0
- package/dist/components/el-plus-form/components/ElPlusFormAutocomplete.vue.d.ts +55 -0
- package/dist/components/el-plus-form/components/ElPlusFormBtn.vue.d.ts +44 -0
- package/dist/components/el-plus-form/components/ElPlusFormBtns.vue.d.ts +42 -0
- package/dist/components/el-plus-form/components/ElPlusFormCascader.vue.d.ts +44 -0
- package/dist/components/el-plus-form/components/ElPlusFormCascaderPanel.vue.d.ts +51 -0
- package/dist/components/el-plus-form/components/ElPlusFormCheckbox.vue.d.ts +44 -0
- package/dist/components/el-plus-form/components/ElPlusFormCheckboxButton.vue.d.ts +44 -0
- package/dist/components/el-plus-form/components/ElPlusFormColor.vue.d.ts +44 -0
- package/dist/components/el-plus-form/components/ElPlusFormDate.vue.d.ts +44 -0
- package/dist/components/el-plus-form/components/ElPlusFormDaterange.vue.d.ts +51 -0
- package/dist/components/el-plus-form/components/ElPlusFormDatetime.vue.d.ts +44 -0
- package/dist/components/el-plus-form/components/ElPlusFormFile.vue.d.ts +48 -0
- package/dist/components/el-plus-form/components/ElPlusFormImage.vue.d.ts +48 -0
- package/dist/components/el-plus-form/components/ElPlusFormInput.vue.d.ts +50 -0
- package/dist/components/el-plus-form/components/ElPlusFormLink.vue.d.ts +53 -0
- package/dist/components/el-plus-form/components/ElPlusFormNbinput.vue.d.ts +61 -0
- package/dist/components/el-plus-form/components/ElPlusFormNumber.vue.d.ts +57 -0
- package/dist/components/el-plus-form/components/ElPlusFormQuickInput.vue.d.ts +51 -0
- package/dist/components/el-plus-form/components/ElPlusFormRadio.vue.d.ts +44 -0
- package/dist/components/el-plus-form/components/ElPlusFormRate.vue.d.ts +44 -0
- package/dist/components/el-plus-form/components/ElPlusFormSelect.vue.d.ts +56 -0
- package/dist/components/el-plus-form/components/ElPlusFormSlider.vue.d.ts +44 -0
- package/dist/components/el-plus-form/components/ElPlusFormStatus.vue.d.ts +44 -0
- package/dist/components/el-plus-form/components/ElPlusFormSwitch.vue.d.ts +50 -0
- package/dist/components/el-plus-form/components/ElPlusFormTag.vue.d.ts +48 -0
- package/dist/components/el-plus-form/components/ElPlusFormText.vue.d.ts +48 -0
- package/dist/components/el-plus-form/components/ElPlusFormTextarea.vue.d.ts +51 -0
- package/dist/components/el-plus-form/components/ElPlusFormTransfer.vue.d.ts +57 -0
- package/dist/components/el-plus-form/components/ElPlusFormTree.vue.d.ts +50 -0
- package/dist/components/el-plus-form/components/ElPlusFormTreeSelect.vue.d.ts +50 -0
- package/dist/components/el-plus-form/components/ElPlusFormUpload.vue.d.ts +51 -0
- package/dist/components/el-plus-form/components/components/file-icons/FileIcons.vue.d.ts +42 -0
- package/dist/components/el-plus-form/components/components/file-icons/data/index.d.ts +15 -0
- package/dist/components/el-plus-form/components/index.d.ts +3 -0
- package/dist/components/el-plus-form/data/file.d.ts +63 -0
- package/dist/components/el-plus-form/mixins/index.d.ts +28 -0
- package/dist/components/el-plus-form/util/index.d.ts +47 -0
- package/dist/components/el-plus-form/util/validate.d.ts +253 -0
- package/dist/components/el-plus-table/ElPlusTable.vue.d.ts +155 -0
- package/dist/components/el-plus-table/components/columnItem.vue.d.ts +42 -0
- package/dist/components/el-plus-table/components/header.vue.d.ts +93 -0
- package/dist/components/el-plus-table/components/settingColumn.vue.d.ts +28 -0
- package/dist/components/el-plus-table/util/index.d.ts +26 -0
- package/dist/components-list.d.ts +2 -0
- package/dist/config/index.d.ts +2 -0
- package/dist/el-plus-crud.mjs +6968 -0
- package/dist/el-plus-crud.umd.js +27 -0
- package/dist/index.d.ts +11 -0
- package/dist/style.css +1 -1
- package/lib/components/el-plus-form/ElPlusForm.vue +20 -8
- package/lib/components/el-plus-form/components/ElPlusFormArea.vue +59 -0
- package/lib/components/el-plus-form/components/ElPlusFormBtn.vue +1 -1
- package/lib/components/el-plus-form/components/ElPlusFormCascader.vue +25 -2
- package/lib/components/el-plus-form/components/ElPlusFormDate.vue +3 -1
- package/lib/components/el-plus-form/components/ElPlusFormFile.vue +1 -1
- package/lib/components/el-plus-form/components/ElPlusFormInput.vue +4 -2
- package/lib/components/el-plus-form/components/ElPlusFormLink.vue +20 -10
- package/lib/components/el-plus-form/components/ElPlusFormNumber.vue +37 -6
- package/lib/components/el-plus-form/components/ElPlusFormQuickInput.vue +92 -0
- package/lib/components/el-plus-form/components/ElPlusFormSelect.vue +16 -4
- package/lib/components/el-plus-form/components/ElPlusFormText.vue +0 -16
- package/lib/components/el-plus-form/components/ElPlusFormTextarea.vue +4 -2
- package/lib/components/el-plus-form/components/ElPlusFormUpload.vue +364 -0
- package/lib/components/el-plus-form/components/components/file-icons/images/doc.svg +12 -12
- package/lib/components/el-plus-form/components/components/file-icons/images/file.svg +18 -18
- package/lib/components/el-plus-form/components/components/file-icons/images/jpg.svg +13 -13
- package/lib/components/el-plus-form/components/components/file-icons/images/pdf.svg +12 -12
- package/lib/components/el-plus-form/components/components/file-icons/images/png.svg +12 -12
- package/lib/components/el-plus-form/components/components/file-icons/images/ppt.svg +12 -12
- package/lib/components/el-plus-form/components/components/file-icons/images/xls.svg +12 -12
- package/lib/components/el-plus-form/components/index.js +17 -0
- package/lib/components/el-plus-form/components/index.ts +1 -1
- package/lib/components/el-plus-form/util/index.ts +0 -9
- package/lib/components/el-plus-table/ElPlusTable.vue +28 -14
- package/lib/components/el-plus-table/components/columnItem.vue +22 -3
- package/lib/components/el-plus-table/components/header.vue +57 -37
- package/lib/components/el-plus-table/components/settingColumn.vue +6 -4
- package/lib/components/el-plus-table/util/index.ts +24 -0
- package/lib/components-list.ts +67 -0
- package/lib/config/index.ts +29 -9
- package/lib/default.d.ts +4 -4
- package/lib/index.ts +9 -84
- package/package.json +6 -4
- package/types/formList.d.ts +44 -3
- package/vite.config.ts +12 -2
- package/dist/el-plus-crud.umd.cjs +0 -27
- package/lib/components/el-plus-form/components/ElPlusFormPassword.vue +0 -39
- package/lib/components/el-plus-form/components/components/IconSelectorList.vue +0 -92
- package/lib/config/form.ts +0 -12
- package/lib/index.d.ts +0 -3
|
@@ -3,11 +3,6 @@
|
|
|
3
3
|
<span v-if="desc.title">{{ desc.title + ': ' }}</span>
|
|
4
4
|
<i v-if="desc.icon" :class="[formData.icon]"></i>
|
|
5
5
|
{{ formatValue }}
|
|
6
|
-
<el-popover v-if="desc.content && popoverContent" placement="bottom" :width="200" trigger="hover" effect="dark" :content="popoverContent">
|
|
7
|
-
<template #reference>
|
|
8
|
-
<el-icon style="color: #f56c6c; font-size: 16px; margin-left: 10px"><WarningFilled /></el-icon>
|
|
9
|
-
</template>
|
|
10
|
-
</el-popover>
|
|
11
6
|
</div>
|
|
12
7
|
</template>
|
|
13
8
|
<script lang="ts">
|
|
@@ -21,7 +16,6 @@ export default {
|
|
|
21
16
|
<script lang="ts" setup>
|
|
22
17
|
import { ref, watch, computed, onBeforeMount, useAttrs, inject } from 'vue'
|
|
23
18
|
import { getEvents, getAttrs } from '../mixins'
|
|
24
|
-
import { WarningFilled } from '@element-plus/icons-vue'
|
|
25
19
|
|
|
26
20
|
const showInfo = inject('showInfo') as Function
|
|
27
21
|
const format = inject('format') as any
|
|
@@ -71,16 +65,6 @@ onBeforeMount(async () => {
|
|
|
71
65
|
attrs.value = await getAttrs(props, useAttrs())
|
|
72
66
|
})
|
|
73
67
|
|
|
74
|
-
// 鼠标悬浮
|
|
75
|
-
const popoverContent = computed(() => {
|
|
76
|
-
if (typeof props.desc.content === 'function') {
|
|
77
|
-
// 如果有方法类型的判断,则需要启用动态监测
|
|
78
|
-
return props.desc.content(props.modelValue, props.formData, props.field)
|
|
79
|
-
} else {
|
|
80
|
-
return props.desc.content || ''
|
|
81
|
-
}
|
|
82
|
-
})
|
|
83
|
-
|
|
84
68
|
watch(
|
|
85
69
|
() => props.modelValue,
|
|
86
70
|
async () => {
|
|
@@ -10,9 +10,11 @@ export default {
|
|
|
10
10
|
}
|
|
11
11
|
</script>
|
|
12
12
|
<script lang="ts" setup>
|
|
13
|
-
import { ref, useAttrs, watch, onBeforeMount } from 'vue'
|
|
13
|
+
import { ref, useAttrs, watch, onBeforeMount, inject } from 'vue'
|
|
14
14
|
import { getAttrs, getEvents } from '../mixins'
|
|
15
15
|
|
|
16
|
+
const defaultConf = inject('defaultConf') as ICRUDConfig
|
|
17
|
+
|
|
16
18
|
const props = defineProps<{
|
|
17
19
|
modelValue?: string | null
|
|
18
20
|
field: string
|
|
@@ -28,7 +30,7 @@ const currentValue = ref(props.modelValue)
|
|
|
28
30
|
emits('update:modelValue', currentValue)
|
|
29
31
|
|
|
30
32
|
onBeforeMount(async () => {
|
|
31
|
-
attrs.value = await getAttrs(props, { maxlength:
|
|
33
|
+
attrs.value = await getAttrs(props, { maxlength: defaultConf.form?.leng.textare, showWordLimit: true, rows: 3, ...useAttrs() })
|
|
32
34
|
})
|
|
33
35
|
|
|
34
36
|
watch(
|
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="ele-form-upload-image" :class="{ 'ele-form-upload-file': desc.upType === 'file' }">
|
|
3
|
+
<el-upload class="ele-image-upload" v-bind="attrs" v-on="onEvents" :fileList="currentValue || []" :class="{ 'over-limit': currentValue?.length >= attrs.limit, 'upload-disabled': attrs.disabled }">
|
|
4
|
+
<div class="upload-panel-icon">
|
|
5
|
+
<SvgIcon :name="desc.icon || 'ele-Plus'" :style="{ fontSize: desc.fontSize || '14px', color: desc.color || '#C0C4CC' }" />
|
|
6
|
+
<div class="el-upload__text2" v-if="desc.upType === 'file' && desc.text2">
|
|
7
|
+
{{ desc.text2 }}
|
|
8
|
+
</div>
|
|
9
|
+
<div class="el-upload__text" v-if="desc.upType === 'file'">
|
|
10
|
+
{{ desc.text || '拖拽/点击上传' }}
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
<!-- <template #file="file">
|
|
14
|
+
<UploadShowIcon :file="file"></UploadShowIcon>
|
|
15
|
+
</template> -->
|
|
16
|
+
</el-upload>
|
|
17
|
+
|
|
18
|
+
<!-- 图片查看的站位标签 -->
|
|
19
|
+
<el-image-viewer v-if="showPreview" @close="showPreview = false" teleported :initialIndex="previewIndex" :url-list="previewList" />
|
|
20
|
+
<div v-if="!attrs.autoUpload" class="upload-hands-submit">
|
|
21
|
+
<el-button style="margin-left: 10px" size="small" type="success" @click="submit"> 上传到服务器 </el-button>
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</template>
|
|
25
|
+
<script lang="ts">
|
|
26
|
+
export default {
|
|
27
|
+
name: 'ElPlusFormUpload',
|
|
28
|
+
inheritAttrs: false,
|
|
29
|
+
typeName: 'upload',
|
|
30
|
+
customOptions: {}
|
|
31
|
+
}
|
|
32
|
+
</script>
|
|
33
|
+
<script lang="ts" setup>
|
|
34
|
+
import { ref, computed, useAttrs, onBeforeMount, watch, inject } from 'vue'
|
|
35
|
+
import { getAttrs, getEvents } from '../mixins'
|
|
36
|
+
import { ElMessage, UploadUserFile } from 'element-plus'
|
|
37
|
+
|
|
38
|
+
import * as fileTypes from '../data/file'
|
|
39
|
+
|
|
40
|
+
// 引入图标
|
|
41
|
+
import excel from '../images/icon/excel.png'
|
|
42
|
+
import pdf from '../images/icon/pdf.png'
|
|
43
|
+
import file from '../images/icon/file.png'
|
|
44
|
+
import txt from '../images/icon/txt.png'
|
|
45
|
+
import word from '../images/icon/word.png'
|
|
46
|
+
import zip from '../images/icon/zip.png'
|
|
47
|
+
import ppt from '../images/icon/ppt.png'
|
|
48
|
+
|
|
49
|
+
const defaultConf = inject('defaultConf') as ICRUDConfig
|
|
50
|
+
|
|
51
|
+
// 图标Map
|
|
52
|
+
const iconMap = { excel, pdf, file, txt, word, zip, ppt }
|
|
53
|
+
|
|
54
|
+
const props = defineProps<{
|
|
55
|
+
modelValue?: Array<IOssInfo>
|
|
56
|
+
field: string
|
|
57
|
+
loading?: boolean
|
|
58
|
+
desc: { [key: string]: any }
|
|
59
|
+
formData: { [key: string]: any }
|
|
60
|
+
}>()
|
|
61
|
+
|
|
62
|
+
const emits = defineEmits(['update:modelValue', 'validateThis'])
|
|
63
|
+
const currentValue = ref((typeof props.modelValue === 'string' ? [{ url: props.modelValue }] : props.modelValue) || [])
|
|
64
|
+
|
|
65
|
+
emits('update:modelValue', currentValue)
|
|
66
|
+
|
|
67
|
+
const attrs = ref({} as any)
|
|
68
|
+
const onEvents = ref(getEvents(props))
|
|
69
|
+
|
|
70
|
+
const showPreview = ref(false)
|
|
71
|
+
const previewIndex = ref(0)
|
|
72
|
+
const previewList = computed(() =>
|
|
73
|
+
currentValue.value
|
|
74
|
+
.map((item: any) => {
|
|
75
|
+
if (['.png', '.jpg', '.gif', '.jpeg'].indexOf(item.raw?.suffix || item.suffix) >= 0) {
|
|
76
|
+
return item.url
|
|
77
|
+
}
|
|
78
|
+
})
|
|
79
|
+
.filter((url) => url)
|
|
80
|
+
)
|
|
81
|
+
|
|
82
|
+
onBeforeMount(async () => {
|
|
83
|
+
// // 如果没有配置,则抛出一个警告
|
|
84
|
+
// if (defaultConf.upload?.action)
|
|
85
|
+
attrs.value = await getAttrs(props, {
|
|
86
|
+
drag: true,
|
|
87
|
+
listType: props.desc.upType === 'file' ? 'text' : 'picture-card',
|
|
88
|
+
multiple: !!props.desc.multiple,
|
|
89
|
+
limit: props.desc.multiple ? props.desc.limit || 20 : 1,
|
|
90
|
+
autoUpload: props.desc.autoUpload ?? true,
|
|
91
|
+
accept: props.desc.accept || fileTypes[`${props.desc.upType || 'image'}Types`].join(','),
|
|
92
|
+
maxSize: props.desc.maxSize || (props.desc.upType === 'file' ? defaultConf.upload?.maxFSize : defaultConf.upload?.maxISize),
|
|
93
|
+
beforeUpload: handelUploadBefore,
|
|
94
|
+
onRemove: handelUploadRemove,
|
|
95
|
+
onSuccess: handelUploadSuccess,
|
|
96
|
+
onExceed: handleOutOfLimit,
|
|
97
|
+
onPreview: handelPreview,
|
|
98
|
+
httpRequest: handelRequest,
|
|
99
|
+
...useAttrs()
|
|
100
|
+
})
|
|
101
|
+
})
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* 处理删除
|
|
105
|
+
* @param file
|
|
106
|
+
* @param fileList
|
|
107
|
+
*/
|
|
108
|
+
function handelUploadRemove(file: UploadUserFile) {
|
|
109
|
+
handelListChange(file, 0)
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* 上传成功回调
|
|
114
|
+
* @param _
|
|
115
|
+
* @param file
|
|
116
|
+
* @param fileList
|
|
117
|
+
*/
|
|
118
|
+
async function handelUploadSuccess(_: any, file: any) {
|
|
119
|
+
const { objectUrl, previewUrl } = await defaultConf.upload?.minio?.getObjectAuthUrl(file.raw.uploadId)
|
|
120
|
+
file.raw.shareUrl = objectUrl
|
|
121
|
+
file.raw.previewUrl = previewUrl
|
|
122
|
+
file.url = getFileIcon(file.raw)
|
|
123
|
+
// console.log('handelUploadSuccess: file: ', file)
|
|
124
|
+
handelListChange(file, 1)
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* 获取文件Icon
|
|
129
|
+
* @param file
|
|
130
|
+
*/
|
|
131
|
+
function getFileIcon(file?: any): string {
|
|
132
|
+
if (file) {
|
|
133
|
+
const suffix = (file?.suffix || '') as string
|
|
134
|
+
if (suffix) {
|
|
135
|
+
if (['.png', '.jpg', '.gif', '.jpeg'].indexOf(suffix) >= 0) {
|
|
136
|
+
// return (props.desc.upType === 'file' ? file.previewUrl : file.shareUrl) || file.furl || file.path
|
|
137
|
+
return file.shareUrl || file.furl || file.path
|
|
138
|
+
}
|
|
139
|
+
for (let i = 0; i < fileTypes.suffixTypes.length; i++) {
|
|
140
|
+
for (let j = 0; j < fileTypes.suffixTypes[i].suffixes.length; j++) {
|
|
141
|
+
if (fileTypes.suffixTypes[i].suffixes[j] === suffix) {
|
|
142
|
+
return iconMap[fileTypes.suffixTypes[i].type]
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
return iconMap.file
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* 处理图片列表的修改
|
|
153
|
+
* @param file
|
|
154
|
+
* @param type 0 : 删除; 1: 新增
|
|
155
|
+
*/
|
|
156
|
+
function handelListChange(item: UploadUserFile, type: 0 | 1) {
|
|
157
|
+
if (type === 1) {
|
|
158
|
+
currentValue.value.push({
|
|
159
|
+
name: item.name,
|
|
160
|
+
furl: (item.raw as any)?.path || item.url,
|
|
161
|
+
url: getFileIcon(item.raw),
|
|
162
|
+
fsize: item.size,
|
|
163
|
+
uid: item.uid,
|
|
164
|
+
mimeType: item.raw?.type,
|
|
165
|
+
suffix: (item.raw as any).suffix,
|
|
166
|
+
busId: props.desc.busId,
|
|
167
|
+
busType: props.desc.busType
|
|
168
|
+
})
|
|
169
|
+
} else {
|
|
170
|
+
const index = currentValue.value.findIndex((file) => file.uid === item.uid)
|
|
171
|
+
if (index >= 0) {
|
|
172
|
+
currentValue.value.splice(index, 1)
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
emits('validateThis')
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* 上传之前,校验文件大小以及类型
|
|
180
|
+
* @param file
|
|
181
|
+
*/
|
|
182
|
+
async function handelUploadBefore(file: any) {
|
|
183
|
+
file.suffix = (file.name as string).substring(file.name.lastIndexOf('.'))
|
|
184
|
+
const message = validateFile(file, fileTypes[`${props.desc.upType || 'image'}Suffixes`], attrs.value.maxSize)
|
|
185
|
+
if (message !== true) {
|
|
186
|
+
ElMessage.warning(message)
|
|
187
|
+
return false
|
|
188
|
+
}
|
|
189
|
+
// 获取文件上传的路径
|
|
190
|
+
const uploadInfo = (await defaultConf.upload?.minio?.getUploadUrl(file.name)) as any
|
|
191
|
+
file.action = uploadInfo.uploadUrl
|
|
192
|
+
file.path = uploadInfo.objectUrl
|
|
193
|
+
file.previewUrl = uploadInfo.previewUrl
|
|
194
|
+
file.uploadId = uploadInfo.uploadId
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* 浏览图片
|
|
199
|
+
* @param file
|
|
200
|
+
*/
|
|
201
|
+
function handelPreview(file: any) {
|
|
202
|
+
if (['.png', '.jpg', '.gif', '.jpeg'].indexOf(file.raw?.suffix || file.suffix) >= 0) {
|
|
203
|
+
previewIndex.value = previewList.value.findIndex((item) => item === (file.raw?.shareUrl || file.raw?.path || file.furl))
|
|
204
|
+
if (previewIndex.value < 0) {
|
|
205
|
+
previewIndex.value = 0
|
|
206
|
+
}
|
|
207
|
+
showPreview.value = true
|
|
208
|
+
} else {
|
|
209
|
+
window.open(file.raw?.previewUrl || file.previewUrl, '_blank')
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* 超出上传数量
|
|
215
|
+
*/
|
|
216
|
+
function handleOutOfLimit() {
|
|
217
|
+
ElMessage.error('数量最多只能上传' + attrs.value.limit + '个图片/文件!!!')
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* 处理自定义请求
|
|
222
|
+
* @param param
|
|
223
|
+
*/
|
|
224
|
+
async function handelRequest(param: any) {
|
|
225
|
+
await defaultConf.upload?.minio?.doElUpload(param)
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
// 手动调用上传的方法
|
|
229
|
+
function submit() {
|
|
230
|
+
// this.$refs[this.ref].submit()
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* 校验文件
|
|
235
|
+
* @param file
|
|
236
|
+
* @param types
|
|
237
|
+
* @param maxSize
|
|
238
|
+
*/
|
|
239
|
+
function validateFile(file: any, types: Array<any>, maxSize: number) {
|
|
240
|
+
// 校验文件大小
|
|
241
|
+
if (file.size > maxSize) {
|
|
242
|
+
return '上传文件大小不能超过 ' + (maxSize / 1024 / 1024).toFixed(2) + 'M~'
|
|
243
|
+
}
|
|
244
|
+
// 开始校验文件类型
|
|
245
|
+
if (types && types.length > 0) {
|
|
246
|
+
if (types.every((type) => type !== file.suffix)) {
|
|
247
|
+
return '上传文件类型错误,请重新选择~'
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
return true
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
watch(
|
|
254
|
+
() => props.modelValue,
|
|
255
|
+
(data: Array<IOssInfo> | undefined, oldData: any) => {
|
|
256
|
+
if (JSON.stringify(data) !== JSON.stringify(oldData)) {
|
|
257
|
+
// 这里初始化一下
|
|
258
|
+
currentValue.value =
|
|
259
|
+
data?.map((item: IOssInfo) => {
|
|
260
|
+
item.url = getFileIcon(item)
|
|
261
|
+
return item
|
|
262
|
+
}) || []
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
{ immediate: true }
|
|
266
|
+
)
|
|
267
|
+
</script>
|
|
268
|
+
<style lang="scss">
|
|
269
|
+
.ele-form-upload-image {
|
|
270
|
+
width: 100%;
|
|
271
|
+
display: flex;
|
|
272
|
+
|
|
273
|
+
.ele-image-upload {
|
|
274
|
+
display: flex;
|
|
275
|
+
justify-content: flex-start;
|
|
276
|
+
width: 100%;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.upload-panel-icon {
|
|
280
|
+
margin: auto;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.upload-disabled {
|
|
284
|
+
.el-upload--picture-card {
|
|
285
|
+
cursor: not-allowed !important;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.el-icon-close-tip {
|
|
290
|
+
display: none !important;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.el-upload--picture-card {
|
|
294
|
+
margin-bottom: 12px;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.over-limit {
|
|
298
|
+
.el-upload--picture-card {
|
|
299
|
+
display: none !important;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.el-upload--picture-card,
|
|
304
|
+
.el-upload-list--picture-card .el-upload-list__item {
|
|
305
|
+
width: 100px !important;
|
|
306
|
+
height: 100px !important;
|
|
307
|
+
border: none !important;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.el-upload-dragger {
|
|
311
|
+
display: flex;
|
|
312
|
+
padding: 0 !important;
|
|
313
|
+
min-height: 100px;
|
|
314
|
+
// height: 100px !important;
|
|
315
|
+
|
|
316
|
+
.el-upload__text {
|
|
317
|
+
font-size: 12px !important;
|
|
318
|
+
color: #999999;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.el-upload__text2 {
|
|
322
|
+
font-size: 16px;
|
|
323
|
+
color: #303133;
|
|
324
|
+
line-height: 22px;
|
|
325
|
+
margin-top: 16px;
|
|
326
|
+
margin-bottom: 16px;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.el-progress-circle {
|
|
331
|
+
width: 90px !important;
|
|
332
|
+
height: 90px !important;
|
|
333
|
+
margin: auto;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.el-upload-list--picture-card .el-upload-list__item-thumbnail {
|
|
337
|
+
object-fit: cover !important;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.el-icon--close-tip {
|
|
341
|
+
display: none !important;
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.ele-form-upload-file {
|
|
346
|
+
.ele-image-upload {
|
|
347
|
+
flex-direction: column;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.el-upload-list__item {
|
|
351
|
+
margin: 0 !important;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.el-form-item--default .el-form-item__content {
|
|
355
|
+
line-height: 20px !important;
|
|
356
|
+
font-size: 12px !important;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.el-upload-list__item-name {
|
|
360
|
+
line-height: 20px !important;
|
|
361
|
+
font-size: 12px !important;
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
</style>
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
-
<title>DOC图标</title>
|
|
4
|
-
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
-
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -1051.000000)" fill="#3878DE" fill-rule="nonzero">
|
|
6
|
-
<g id="编组-21备份-9" transform="translate(375.000000, 1045.000000)">
|
|
7
|
-
<g id="DOC图标" transform="translate(8.000000, 6.000000)">
|
|
8
|
-
<path d="M3,6 L13,6 C13.176811,6 13.3463803,6.07023789 13.4714045,6.19526215 C13.5964288,6.3202864 13.6666667,6.48985568 13.6666667,6.66666667 L13.6666667,12.3333333 C13.6666667,12.7015232 13.3681898,13 13,13 L3,13 L3,14.6666667 C3,14.7550722 3.03511895,14.8398568 3.09763107,14.9023689 C3.1601432,14.9648811 3.24492783,15 3.33333333,15 L14.6666667,15 C14.8507616,15 15,14.8507616 15,14.6666667 L15,4.82533333 L14.8423333,4.66666667 L12.8653333,4.66666667 C12.0192331,4.66666667 11.3333333,3.98076691 11.3333333,3.13466667 L11.3333333,1.13533333 L11.1986667,1 L3.33333333,1 C3.24492783,1 3.1601432,1.03511895 3.09763107,1.09763107 C3.03511895,1.1601432 3,1.24492783 3,1.33333333 L3,6 Z M2,13 L0.666666672,13 C0.298476836,13 0,12.7015232 0,12.3333333 L0,6.66666667 C0,6.48985568 0.0702378941,6.3202864 0.195262147,6.19526215 C0.320286401,6.07023789 0.489855677,6 0.666666672,6 L2,6 L2,1.33333333 C2,0.596953665 2.59695366,0 3.33333333,0 L11.615,0 L16,4.41333333 L16,14.6666667 C16,15.4030463 15.4030463,16 14.6666667,16 L3.33333333,16 C2.59695366,16 2,15.4030463 2,14.6666667 L2,13 L2,13 Z M1.03,7.38266667 L1.03,11.6666667 L2.45733333,11.6666667 C3.09166666,11.6666667 3.56733333,11.4746667 3.89566667,11.0906667 C4.20733334,10.7246667 4.366,10.2026667 4.366,9.52466667 C4.366,8.84066667 4.20733333,8.31866667 3.89566667,7.95866667 C3.56766667,7.57466667 3.09166667,7.38266667 2.45733333,7.38266667 L1.03,7.38266667 Z M1.67,7.98266667 L2.33666667,7.98266667 C2.82333334,7.98266667 3.179,8.10266667 3.40333333,8.34866667 C3.622,8.58866667 3.73133333,8.98466667 3.73133333,9.52466667 C3.73133333,10.0526667 3.622,10.4426667 3.403,10.6946667 C3.179,10.9406667 2.82333333,11.0666667 2.33666667,11.0666667 L1.67,11.0666667 L1.67,7.98266667 L1.67,7.98266667 Z M6.70133333,7.29866667 C6.09966666,7.29866667 5.62933333,7.50866667 5.29033333,7.94066667 C4.962,8.34866667 4.80366667,8.87666667 4.80366667,9.53066667 C4.80366667,10.1786667 4.962,10.7066667 5.29033333,11.1146667 C5.62933333,11.5346667 6.09966666,11.7506667 6.70133333,11.7506667 C7.29733333,11.7506667 7.76766666,11.5406667 8.11233333,11.1206667 C8.44033333,10.7186667 8.60433333,10.1906667 8.60433333,9.53066667 C8.60433333,8.87066667 8.44033333,8.33666667 8.11233333,7.93466667 C7.76766666,7.50866667 7.29733333,7.29866667 6.70133333,7.29866667 L6.70133333,7.29866667 Z M6.70133333,7.91666667 C7.106,7.91666667 7.41766666,8.05466667 7.63633333,8.34266667 C7.84966666,8.63066667 7.959,9.02666667 7.959,9.53066667 C7.959,10.0346667 7.84966667,10.4246667 7.63633333,10.7066667 C7.41766666,10.9886667 7.106,11.1326667 6.70133333,11.1326667 C6.29666666,11.1326667 5.97933333,10.9826667 5.76066667,10.6886667 C5.54733334,10.4006667 5.44333333,10.0166667 5.44333333,9.53066667 C5.44333333,9.03866667 5.54733333,8.65466667 5.76066667,8.36666667 C5.98466667,8.06666667 6.29666667,7.91666667 6.70133333,7.91666667 L6.70133333,7.91666667 Z M10.9013333,7.29866667 C10.278,7.29866667 9.802,7.52066667 9.474,7.97666667 C9.184,8.37266667 9.042,8.89466667 9.042,9.53066667 C9.042,10.1786667 9.17866667,10.6946667 9.45766667,11.0786667 C9.77466667,11.5226667 10.2613333,11.7506667 10.9123333,11.7506667 C11.3333333,11.7506667 11.6943333,11.6186667 11.995,11.3546667 C12.3176667,11.0726667 12.52,10.6826667 12.6076667,10.1786667 L11.9843333,10.1786667 C11.9076667,10.5026667 11.7763333,10.7486667 11.5903333,10.9106667 C11.4153333,11.0546667 11.1856667,11.1326667 10.907,11.1326667 C10.4803333,11.1326667 10.163,10.9826667 9.96066667,10.6946667 C9.77466667,10.4246667 9.68166667,10.0346667 9.68166667,9.53066667 C9.68166667,9.03866667 9.775,8.65466667 9.96633333,8.37866667 C10.174,8.06666667 10.4803333,7.91666667 10.8903333,7.91666667 C11.1636667,7.91666667 11.388,7.97666667 11.563,8.10866667 C11.7436667,8.24066667 11.864,8.44466667 11.9296667,8.72666667 L12.553,8.72666667 C12.493,8.29466667 12.323,7.94666667 12.039,7.69466667 C11.7436667,7.43066667 11.3606667,7.29866667 10.9013333,7.29866667 L10.9013333,7.29866667 Z" id="形状"></path>
|
|
9
|
-
</g>
|
|
10
|
-
</g>
|
|
11
|
-
</g>
|
|
12
|
-
</g>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>DOC图标</title>
|
|
4
|
+
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -1051.000000)" fill="#3878DE" fill-rule="nonzero">
|
|
6
|
+
<g id="编组-21备份-9" transform="translate(375.000000, 1045.000000)">
|
|
7
|
+
<g id="DOC图标" transform="translate(8.000000, 6.000000)">
|
|
8
|
+
<path d="M3,6 L13,6 C13.176811,6 13.3463803,6.07023789 13.4714045,6.19526215 C13.5964288,6.3202864 13.6666667,6.48985568 13.6666667,6.66666667 L13.6666667,12.3333333 C13.6666667,12.7015232 13.3681898,13 13,13 L3,13 L3,14.6666667 C3,14.7550722 3.03511895,14.8398568 3.09763107,14.9023689 C3.1601432,14.9648811 3.24492783,15 3.33333333,15 L14.6666667,15 C14.8507616,15 15,14.8507616 15,14.6666667 L15,4.82533333 L14.8423333,4.66666667 L12.8653333,4.66666667 C12.0192331,4.66666667 11.3333333,3.98076691 11.3333333,3.13466667 L11.3333333,1.13533333 L11.1986667,1 L3.33333333,1 C3.24492783,1 3.1601432,1.03511895 3.09763107,1.09763107 C3.03511895,1.1601432 3,1.24492783 3,1.33333333 L3,6 Z M2,13 L0.666666672,13 C0.298476836,13 0,12.7015232 0,12.3333333 L0,6.66666667 C0,6.48985568 0.0702378941,6.3202864 0.195262147,6.19526215 C0.320286401,6.07023789 0.489855677,6 0.666666672,6 L2,6 L2,1.33333333 C2,0.596953665 2.59695366,0 3.33333333,0 L11.615,0 L16,4.41333333 L16,14.6666667 C16,15.4030463 15.4030463,16 14.6666667,16 L3.33333333,16 C2.59695366,16 2,15.4030463 2,14.6666667 L2,13 L2,13 Z M1.03,7.38266667 L1.03,11.6666667 L2.45733333,11.6666667 C3.09166666,11.6666667 3.56733333,11.4746667 3.89566667,11.0906667 C4.20733334,10.7246667 4.366,10.2026667 4.366,9.52466667 C4.366,8.84066667 4.20733333,8.31866667 3.89566667,7.95866667 C3.56766667,7.57466667 3.09166667,7.38266667 2.45733333,7.38266667 L1.03,7.38266667 Z M1.67,7.98266667 L2.33666667,7.98266667 C2.82333334,7.98266667 3.179,8.10266667 3.40333333,8.34866667 C3.622,8.58866667 3.73133333,8.98466667 3.73133333,9.52466667 C3.73133333,10.0526667 3.622,10.4426667 3.403,10.6946667 C3.179,10.9406667 2.82333333,11.0666667 2.33666667,11.0666667 L1.67,11.0666667 L1.67,7.98266667 L1.67,7.98266667 Z M6.70133333,7.29866667 C6.09966666,7.29866667 5.62933333,7.50866667 5.29033333,7.94066667 C4.962,8.34866667 4.80366667,8.87666667 4.80366667,9.53066667 C4.80366667,10.1786667 4.962,10.7066667 5.29033333,11.1146667 C5.62933333,11.5346667 6.09966666,11.7506667 6.70133333,11.7506667 C7.29733333,11.7506667 7.76766666,11.5406667 8.11233333,11.1206667 C8.44033333,10.7186667 8.60433333,10.1906667 8.60433333,9.53066667 C8.60433333,8.87066667 8.44033333,8.33666667 8.11233333,7.93466667 C7.76766666,7.50866667 7.29733333,7.29866667 6.70133333,7.29866667 L6.70133333,7.29866667 Z M6.70133333,7.91666667 C7.106,7.91666667 7.41766666,8.05466667 7.63633333,8.34266667 C7.84966666,8.63066667 7.959,9.02666667 7.959,9.53066667 C7.959,10.0346667 7.84966667,10.4246667 7.63633333,10.7066667 C7.41766666,10.9886667 7.106,11.1326667 6.70133333,11.1326667 C6.29666666,11.1326667 5.97933333,10.9826667 5.76066667,10.6886667 C5.54733334,10.4006667 5.44333333,10.0166667 5.44333333,9.53066667 C5.44333333,9.03866667 5.54733333,8.65466667 5.76066667,8.36666667 C5.98466667,8.06666667 6.29666667,7.91666667 6.70133333,7.91666667 L6.70133333,7.91666667 Z M10.9013333,7.29866667 C10.278,7.29866667 9.802,7.52066667 9.474,7.97666667 C9.184,8.37266667 9.042,8.89466667 9.042,9.53066667 C9.042,10.1786667 9.17866667,10.6946667 9.45766667,11.0786667 C9.77466667,11.5226667 10.2613333,11.7506667 10.9123333,11.7506667 C11.3333333,11.7506667 11.6943333,11.6186667 11.995,11.3546667 C12.3176667,11.0726667 12.52,10.6826667 12.6076667,10.1786667 L11.9843333,10.1786667 C11.9076667,10.5026667 11.7763333,10.7486667 11.5903333,10.9106667 C11.4153333,11.0546667 11.1856667,11.1326667 10.907,11.1326667 C10.4803333,11.1326667 10.163,10.9826667 9.96066667,10.6946667 C9.77466667,10.4246667 9.68166667,10.0346667 9.68166667,9.53066667 C9.68166667,9.03866667 9.775,8.65466667 9.96633333,8.37866667 C10.174,8.06666667 10.4803333,7.91666667 10.8903333,7.91666667 C11.1636667,7.91666667 11.388,7.97666667 11.563,8.10866667 C11.7436667,8.24066667 11.864,8.44466667 11.9296667,8.72666667 L12.553,8.72666667 C12.493,8.29466667 12.323,7.94666667 12.039,7.69466667 C11.7436667,7.43066667 11.3606667,7.29866667 10.9013333,7.29866667 L10.9013333,7.29866667 Z" id="形状"></path>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
13
|
</svg>
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
-
<title>通用文件</title>
|
|
4
|
-
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
-
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -1091.000000)" fill-rule="nonzero">
|
|
6
|
-
<g id="编组-21备份-10" transform="translate(375.000000, 1085.000000)">
|
|
7
|
-
<g id="通用文件" transform="translate(8.000000, 6.000000)">
|
|
8
|
-
<path d="M11.615,0 L16,4.41333333 L16,14.6666667 C16,15.4030463 15.4030463,16 14.6666667,16 L3.33333333,16 C2.59695366,16 2,15.4030463 2,14.6666667 L2,13 L0.666666672,13 C0.298476836,13 0,12.7015232 0,12.3333333 L0,6.66666667 C0,6.48985568 0.0702378941,6.3202864 0.195262147,6.19526215 C0.320286401,6.07023789 0.489855677,6 0.666666672,6 L2,6 L2,1.33333333 C2,0.596953665 2.59695366,0 3.33333333,0 L11.615,0 Z M11.1986667,1 L3.33333333,1 C3.24492783,1 3.1601432,1.03511895 3.09763107,1.09763107 C3.03511895,1.1601432 3,1.24492783 3,1.33333333 L3,6 L13,6 C13.176811,6 13.3463803,6.07023789 13.4714045,6.19526215 C13.5964288,6.3202864 13.6666667,6.48985568 13.6666667,6.66666667 L13.6666667,12.3333333 C13.6666667,12.7015232 13.3681898,13 13,13 L3,13 L3,14.6666667 C3,14.7550722 3.03511895,14.8398568 3.09763107,14.9023689 C3.1601432,14.9648811 3.24492783,15 3.33333333,15 L14.6666667,15 C14.8507616,15 15,14.8507616 15,14.6666667 L15,4.82533333 L14.8423333,4.66666667 L12.8653333,4.66666667 C12.0192331,4.66666667 11.3333333,3.98076691 11.3333333,3.13466667 L11.3333333,1.13566667 L11.1986667,1 Z" id="形状" fill="#1890FF"></path>
|
|
9
|
-
<g id="FILE" transform="translate(1.600000, 7.400000)" fill="#FFFFFF">
|
|
10
|
-
<polygon id="F" points="2.394 0.594 0.672 0.594 0.672 1.806 2.274 1.806 2.274 2.394 0.672 2.394 0.672 4.164 0 4.164 0 0 2.394 0"></polygon>
|
|
11
|
-
<polygon id="I" points="3.186 4.164 3.186 0 3.858 0 3.858 4.164"></polygon>
|
|
12
|
-
<polygon id="L" points="5.574 3.564 7.326 3.564 7.326 4.164 4.902 4.164 4.902 0 5.574 0"></polygon>
|
|
13
|
-
<polygon id="E" points="8.664 3.564 10.512 3.564 10.512 4.164 7.992 4.164 7.992 0 10.386 0 10.386 0.594 8.664 0.594 8.664 1.728 10.266 1.728 10.266 2.292 8.664 2.292"></polygon>
|
|
14
|
-
</g>
|
|
15
|
-
</g>
|
|
16
|
-
</g>
|
|
17
|
-
</g>
|
|
18
|
-
</g>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>通用文件</title>
|
|
4
|
+
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -1091.000000)" fill-rule="nonzero">
|
|
6
|
+
<g id="编组-21备份-10" transform="translate(375.000000, 1085.000000)">
|
|
7
|
+
<g id="通用文件" transform="translate(8.000000, 6.000000)">
|
|
8
|
+
<path d="M11.615,0 L16,4.41333333 L16,14.6666667 C16,15.4030463 15.4030463,16 14.6666667,16 L3.33333333,16 C2.59695366,16 2,15.4030463 2,14.6666667 L2,13 L0.666666672,13 C0.298476836,13 0,12.7015232 0,12.3333333 L0,6.66666667 C0,6.48985568 0.0702378941,6.3202864 0.195262147,6.19526215 C0.320286401,6.07023789 0.489855677,6 0.666666672,6 L2,6 L2,1.33333333 C2,0.596953665 2.59695366,0 3.33333333,0 L11.615,0 Z M11.1986667,1 L3.33333333,1 C3.24492783,1 3.1601432,1.03511895 3.09763107,1.09763107 C3.03511895,1.1601432 3,1.24492783 3,1.33333333 L3,6 L13,6 C13.176811,6 13.3463803,6.07023789 13.4714045,6.19526215 C13.5964288,6.3202864 13.6666667,6.48985568 13.6666667,6.66666667 L13.6666667,12.3333333 C13.6666667,12.7015232 13.3681898,13 13,13 L3,13 L3,14.6666667 C3,14.7550722 3.03511895,14.8398568 3.09763107,14.9023689 C3.1601432,14.9648811 3.24492783,15 3.33333333,15 L14.6666667,15 C14.8507616,15 15,14.8507616 15,14.6666667 L15,4.82533333 L14.8423333,4.66666667 L12.8653333,4.66666667 C12.0192331,4.66666667 11.3333333,3.98076691 11.3333333,3.13466667 L11.3333333,1.13566667 L11.1986667,1 Z" id="形状" fill="#1890FF"></path>
|
|
9
|
+
<g id="FILE" transform="translate(1.600000, 7.400000)" fill="#FFFFFF">
|
|
10
|
+
<polygon id="F" points="2.394 0.594 0.672 0.594 0.672 1.806 2.274 1.806 2.274 2.394 0.672 2.394 0.672 4.164 0 4.164 0 0 2.394 0"></polygon>
|
|
11
|
+
<polygon id="I" points="3.186 4.164 3.186 0 3.858 0 3.858 4.164"></polygon>
|
|
12
|
+
<polygon id="L" points="5.574 3.564 7.326 3.564 7.326 4.164 4.902 4.164 4.902 0 5.574 0"></polygon>
|
|
13
|
+
<polygon id="E" points="8.664 3.564 10.512 3.564 10.512 4.164 7.992 4.164 7.992 0 10.386 0 10.386 0.594 8.664 0.594 8.664 1.728 10.266 1.728 10.266 2.292 8.664 2.292"></polygon>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
19
|
</svg>
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
-
<title>JPEG图标</title>
|
|
4
|
-
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
-
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -731.000000)" fill-rule="nonzero">
|
|
6
|
-
<g id="编组-21备份" transform="translate(375.000000, 725.000000)">
|
|
7
|
-
<g id="JPEG图标" transform="translate(8.000000, 6.000000)">
|
|
8
|
-
<path d="M11.615,0 L16,4.41333333 L16,14.6666667 C16,15.4030463 15.4030463,16 14.6666667,16 L3.33333333,16 C2.59695366,16 2,15.4030463 2,14.6666667 L2,13 L0.666666672,13 C0.298476836,13 0,12.7015232 0,12.3333333 L0,6.66666667 C0,6.48985568 0.0702378941,6.3202864 0.195262147,6.19526215 C0.320286401,6.07023789 0.489855677,6 0.666666672,6 L2,6 L2,1.33333333 C2,0.596953665 2.59695366,0 3.33333333,0 L11.615,0 Z M11.1986667,1 L3.33333333,1 C3.24492783,1 3.1601432,1.03511895 3.09763107,1.09763107 C3.03511895,1.1601432 3,1.24492783 3,1.33333333 L3,6 L13,6 C13.176811,6 13.3463803,6.07023789 13.4714045,6.19526215 C13.5964288,6.3202864 13.6666667,6.48985568 13.6666667,6.66666667 L13.6666667,12.3333333 C13.6666667,12.7015232 13.3681898,13 13,13 L3,13 L3,14.6666667 C3,14.7550722 3.03511895,14.8398568 3.09763107,14.9023689 C3.1601432,14.9648811 3.24492783,15 3.33333333,15 L14.6666667,15 C14.8507616,15 15,14.8507616 15,14.6666667 L15,4.82533333 L14.8423333,4.66666667 L12.8653333,4.66666667 C12.0192331,4.66666667 11.3333333,3.98076691 11.3333333,3.13466667 L11.3333333,1.13566667 L11.1986667,1 Z" id="形状" fill="#F67500"></path>
|
|
9
|
-
<path d="M2.43233333,7.38266667 L2.995,7.38266667 L2.995,10.2806667 C2.995,10.7726667 2.913,11.1326667 2.74966667,11.3726667 C2.567,11.6246667 2.27866667,11.7506667 1.87966667,11.7506667 C1.53333334,11.7506667 1.269,11.6306667 1.091,11.3906667 C0.908333328,11.1506667 0.817,10.8206667 0.817,10.4006667 L0.817,10.2626667 L1.37933333,10.2626667 L1.37933333,10.3946667 C1.37933333,10.8866667 1.54766666,11.1326667 1.88933333,11.1326667 C2.07666666,11.1326667 2.216,11.0606667 2.30266667,10.9226667 C2.38933334,10.7846667 2.43266667,10.5626667 2.43266667,10.2566667 L2.43266667,7.38266667 L2.43233333,7.38266667 Z M3.668,7.38266667 L5.091,7.38266667 C5.91766667,7.38266667 6.336,7.82066667 6.336,8.69666667 C6.336,9.57866667 5.918,10.0226667 5.08133333,10.0226667 L4.23033333,10.0226667 L4.23033333,11.6666667 L3.668,11.6666667 L3.668,7.38266667 Z M4.23033333,7.98266667 L4.23033333,9.42266667 L5.04766667,9.42266667 C5.29766667,9.42266667 5.48033334,9.36266667 5.59566667,9.25466667 C5.71133334,9.14066667 5.769,8.95466667 5.769,8.69666667 C5.769,8.43866667 5.70633333,8.25866667 5.591,8.15066667 C5.47566667,8.03666667 5.293,7.98266667 5.04766667,7.98266667 L4.23033333,7.98266667 L4.23033333,7.98266667 Z M6.817,7.38266667 L9.293,7.38266667 L9.293,7.98266667 L7.37966667,7.98266667 L7.37966667,9.17066667 L9.17733333,9.17066667 L9.17733333,9.77066667 L7.37933333,9.77066667 L7.37933333,11.0666667 L9.37466667,11.0666667 L9.37466667,11.6666667 L6.81666667,11.6666667 L6.81666667,7.38266667 L6.817,7.38266667 Z M11.3936667,7.29866667 C11.836,7.29866667 12.1823333,7.41866667 12.437,7.66466667 C12.6823333,7.90466667 12.836,8.25866667 12.8986667,8.73866667 L12.3313333,8.73866667 C12.2833333,8.46266667 12.1773333,8.25866667 12.0236667,8.12066667 C11.865,7.98266667 11.6536667,7.91666667 11.3936667,7.91666667 C11.0716667,7.91666667 10.817,8.04866667 10.6293333,8.32466667 C10.4226667,8.61266667 10.3216667,9.01466667 10.3216667,9.54266667 C10.3216667,10.0466667 10.413,10.4366667 10.5956667,10.7066667 C10.793,10.9946667 11.1006667,11.1386667 11.519,11.1386667 C11.6823333,11.1386667 11.836,11.1146667 11.9803333,11.0666667 C12.1126327,11.0189964 12.2372765,10.9522951 12.3503333,10.8686667 L12.3503333,9.98666667 L11.442,9.98666667 L11.442,9.38666667 L12.913,9.38666667 L12.913,11.1986667 C12.7338646,11.3748672 12.5213872,11.5135724 12.288,11.6066667 C12.038,11.7026667 11.764,11.7506667 11.4563333,11.7506667 C10.9083333,11.7506667 10.485,11.5346667 10.1823333,11.1026667 C9.89866666,10.7006667 9.759,10.1786667 9.759,9.54266667 C9.759,8.90066667 9.89866667,8.37266667 10.1823333,7.95866667 C10.4803333,7.51466667 10.8843333,7.29866667 11.3936667,7.29866667 L11.3936667,7.29866667 Z" id="形状" fill="#FFFFFF"></path>
|
|
10
|
-
</g>
|
|
11
|
-
</g>
|
|
12
|
-
</g>
|
|
13
|
-
</g>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>JPEG图标</title>
|
|
4
|
+
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -731.000000)" fill-rule="nonzero">
|
|
6
|
+
<g id="编组-21备份" transform="translate(375.000000, 725.000000)">
|
|
7
|
+
<g id="JPEG图标" transform="translate(8.000000, 6.000000)">
|
|
8
|
+
<path d="M11.615,0 L16,4.41333333 L16,14.6666667 C16,15.4030463 15.4030463,16 14.6666667,16 L3.33333333,16 C2.59695366,16 2,15.4030463 2,14.6666667 L2,13 L0.666666672,13 C0.298476836,13 0,12.7015232 0,12.3333333 L0,6.66666667 C0,6.48985568 0.0702378941,6.3202864 0.195262147,6.19526215 C0.320286401,6.07023789 0.489855677,6 0.666666672,6 L2,6 L2,1.33333333 C2,0.596953665 2.59695366,0 3.33333333,0 L11.615,0 Z M11.1986667,1 L3.33333333,1 C3.24492783,1 3.1601432,1.03511895 3.09763107,1.09763107 C3.03511895,1.1601432 3,1.24492783 3,1.33333333 L3,6 L13,6 C13.176811,6 13.3463803,6.07023789 13.4714045,6.19526215 C13.5964288,6.3202864 13.6666667,6.48985568 13.6666667,6.66666667 L13.6666667,12.3333333 C13.6666667,12.7015232 13.3681898,13 13,13 L3,13 L3,14.6666667 C3,14.7550722 3.03511895,14.8398568 3.09763107,14.9023689 C3.1601432,14.9648811 3.24492783,15 3.33333333,15 L14.6666667,15 C14.8507616,15 15,14.8507616 15,14.6666667 L15,4.82533333 L14.8423333,4.66666667 L12.8653333,4.66666667 C12.0192331,4.66666667 11.3333333,3.98076691 11.3333333,3.13466667 L11.3333333,1.13566667 L11.1986667,1 Z" id="形状" fill="#F67500"></path>
|
|
9
|
+
<path d="M2.43233333,7.38266667 L2.995,7.38266667 L2.995,10.2806667 C2.995,10.7726667 2.913,11.1326667 2.74966667,11.3726667 C2.567,11.6246667 2.27866667,11.7506667 1.87966667,11.7506667 C1.53333334,11.7506667 1.269,11.6306667 1.091,11.3906667 C0.908333328,11.1506667 0.817,10.8206667 0.817,10.4006667 L0.817,10.2626667 L1.37933333,10.2626667 L1.37933333,10.3946667 C1.37933333,10.8866667 1.54766666,11.1326667 1.88933333,11.1326667 C2.07666666,11.1326667 2.216,11.0606667 2.30266667,10.9226667 C2.38933334,10.7846667 2.43266667,10.5626667 2.43266667,10.2566667 L2.43266667,7.38266667 L2.43233333,7.38266667 Z M3.668,7.38266667 L5.091,7.38266667 C5.91766667,7.38266667 6.336,7.82066667 6.336,8.69666667 C6.336,9.57866667 5.918,10.0226667 5.08133333,10.0226667 L4.23033333,10.0226667 L4.23033333,11.6666667 L3.668,11.6666667 L3.668,7.38266667 Z M4.23033333,7.98266667 L4.23033333,9.42266667 L5.04766667,9.42266667 C5.29766667,9.42266667 5.48033334,9.36266667 5.59566667,9.25466667 C5.71133334,9.14066667 5.769,8.95466667 5.769,8.69666667 C5.769,8.43866667 5.70633333,8.25866667 5.591,8.15066667 C5.47566667,8.03666667 5.293,7.98266667 5.04766667,7.98266667 L4.23033333,7.98266667 L4.23033333,7.98266667 Z M6.817,7.38266667 L9.293,7.38266667 L9.293,7.98266667 L7.37966667,7.98266667 L7.37966667,9.17066667 L9.17733333,9.17066667 L9.17733333,9.77066667 L7.37933333,9.77066667 L7.37933333,11.0666667 L9.37466667,11.0666667 L9.37466667,11.6666667 L6.81666667,11.6666667 L6.81666667,7.38266667 L6.817,7.38266667 Z M11.3936667,7.29866667 C11.836,7.29866667 12.1823333,7.41866667 12.437,7.66466667 C12.6823333,7.90466667 12.836,8.25866667 12.8986667,8.73866667 L12.3313333,8.73866667 C12.2833333,8.46266667 12.1773333,8.25866667 12.0236667,8.12066667 C11.865,7.98266667 11.6536667,7.91666667 11.3936667,7.91666667 C11.0716667,7.91666667 10.817,8.04866667 10.6293333,8.32466667 C10.4226667,8.61266667 10.3216667,9.01466667 10.3216667,9.54266667 C10.3216667,10.0466667 10.413,10.4366667 10.5956667,10.7066667 C10.793,10.9946667 11.1006667,11.1386667 11.519,11.1386667 C11.6823333,11.1386667 11.836,11.1146667 11.9803333,11.0666667 C12.1126327,11.0189964 12.2372765,10.9522951 12.3503333,10.8686667 L12.3503333,9.98666667 L11.442,9.98666667 L11.442,9.38666667 L12.913,9.38666667 L12.913,11.1986667 C12.7338646,11.3748672 12.5213872,11.5135724 12.288,11.6066667 C12.038,11.7026667 11.764,11.7506667 11.4563333,11.7506667 C10.9083333,11.7506667 10.485,11.5346667 10.1823333,11.1026667 C9.89866666,10.7006667 9.759,10.1786667 9.759,9.54266667 C9.759,8.90066667 9.89866667,8.37266667 10.1823333,7.95866667 C10.4803333,7.51466667 10.8843333,7.29866667 11.3936667,7.29866667 L11.3936667,7.29866667 Z" id="形状" fill="#FFFFFF"></path>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
14
|
</svg>
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
-
<title>PDF图标</title>
|
|
4
|
-
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
-
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -691.000000)" fill="#EA4318" fill-rule="nonzero">
|
|
6
|
-
<g id="编组-21" transform="translate(375.000000, 685.000000)">
|
|
7
|
-
<g id="PDF图标" transform="translate(8.000000, 6.000000)">
|
|
8
|
-
<path d="M3,6 L13,6 C13.176811,6 13.3463803,6.07023789 13.4714045,6.19526215 C13.5964288,6.3202864 13.6666667,6.48985568 13.6666667,6.66666667 L13.6666667,12.3333333 C13.6666667,12.7015232 13.3681898,13 13,13 L3,13 L3,14.6666667 C3,14.7550722 3.03511895,14.8398568 3.09763107,14.9023689 C3.1601432,14.9648811 3.24492783,15 3.33333333,15 L14.6666667,15 C14.8507616,15 15,14.8507616 15,14.6666667 L15,4.82533333 L14.8423333,4.66666667 L12.8653333,4.66666667 C12.0192331,4.66666667 11.3333333,3.98076691 11.3333333,3.13466667 L11.3333333,1.13533333 L11.1986667,1 L3.33333333,1 C3.24492783,1 3.1601432,1.03511895 3.09763107,1.09763107 C3.03511895,1.1601432 3,1.24492783 3,1.33333333 L3,6 Z M2,13 L0.666666672,13 C0.298476836,13 0,12.7015232 0,12.3333333 L0,6.66666667 C0,6.48985568 0.0702378941,6.3202864 0.195262147,6.19526215 C0.320286401,6.07023789 0.489855677,6 0.666666672,6 L2,6 L2,1.33333333 C2,0.596953665 2.59695366,0 3.33333333,0 L11.615,0 L16,4.41333333 L16,14.6666667 C16,15.4030463 15.4030463,16 14.6666667,16 L3.33333333,16 C2.59695366,16 2,15.4030463 2,14.6666667 L2,13 L2,13 Z M1.38233333,7.38266667 L1.38233333,11.6666667 L2.08433333,11.6666667 L2.08433333,10.0226667 L3.14633333,10.0226667 C4.19033333,10.0226667 4.71233333,9.57866667 4.71233333,8.69666667 C4.71233333,7.82066667 4.19033333,7.38266667 3.15833333,7.38266667 L1.38233333,7.38266667 Z M2.08433333,7.98266667 L3.10433333,7.98266667 C3.41033333,7.98266667 3.63833333,8.03666667 3.78233333,8.15066667 C3.92633333,8.25866667 4.00433333,8.43866667 4.00433333,8.69666667 C4.00433333,8.95466667 3.93233333,9.14066667 3.78833333,9.25466667 C3.64433333,9.36266667 3.41633333,9.42266667 3.10433333,9.42266667 L2.08433333,9.42266667 L2.08433333,7.98266667 L2.08433333,7.98266667 Z M5.31233333,7.38266667 L5.31233333,11.6666667 L6.87833333,11.6666667 C7.57433333,11.6666667 8.09633333,11.4746667 8.45633333,11.0906667 C8.79833333,10.7246667 8.97233333,10.2026667 8.97233333,9.52466667 C8.97233333,8.84066667 8.79833333,8.31866667 8.45633333,7.95866667 C8.09633333,7.57466667 7.57433333,7.38266667 6.87833333,7.38266667 L5.31233333,7.38266667 Z M6.01433333,7.98266667 L6.74633333,7.98266667 C7.28033333,7.98266667 7.67033333,8.10266667 7.91633333,8.34866667 C8.15633333,8.58866667 8.27633333,8.98466667 8.27633333,9.52466667 C8.27633333,10.0526667 8.15633333,10.4426667 7.91633333,10.6946667 C7.67033333,10.9406667 7.28033333,11.0666667 6.74633333,11.0666667 L6.01433333,11.0666667 L6.01433333,7.98266667 L6.01433333,7.98266667 Z M9.63233333,7.38266667 L9.63233333,11.6666667 L10.3343333,11.6666667 L10.3343333,9.77066667 L12.4283333,9.77066667 L12.4283333,9.17066667 L10.3343333,9.17066667 L10.3343333,7.98266667 L12.5543333,7.98266667 L12.5543333,7.38266667 L9.63233333,7.38266667 Z" id="形状"></path>
|
|
9
|
-
</g>
|
|
10
|
-
</g>
|
|
11
|
-
</g>
|
|
12
|
-
</g>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>PDF图标</title>
|
|
4
|
+
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -691.000000)" fill="#EA4318" fill-rule="nonzero">
|
|
6
|
+
<g id="编组-21" transform="translate(375.000000, 685.000000)">
|
|
7
|
+
<g id="PDF图标" transform="translate(8.000000, 6.000000)">
|
|
8
|
+
<path d="M3,6 L13,6 C13.176811,6 13.3463803,6.07023789 13.4714045,6.19526215 C13.5964288,6.3202864 13.6666667,6.48985568 13.6666667,6.66666667 L13.6666667,12.3333333 C13.6666667,12.7015232 13.3681898,13 13,13 L3,13 L3,14.6666667 C3,14.7550722 3.03511895,14.8398568 3.09763107,14.9023689 C3.1601432,14.9648811 3.24492783,15 3.33333333,15 L14.6666667,15 C14.8507616,15 15,14.8507616 15,14.6666667 L15,4.82533333 L14.8423333,4.66666667 L12.8653333,4.66666667 C12.0192331,4.66666667 11.3333333,3.98076691 11.3333333,3.13466667 L11.3333333,1.13533333 L11.1986667,1 L3.33333333,1 C3.24492783,1 3.1601432,1.03511895 3.09763107,1.09763107 C3.03511895,1.1601432 3,1.24492783 3,1.33333333 L3,6 Z M2,13 L0.666666672,13 C0.298476836,13 0,12.7015232 0,12.3333333 L0,6.66666667 C0,6.48985568 0.0702378941,6.3202864 0.195262147,6.19526215 C0.320286401,6.07023789 0.489855677,6 0.666666672,6 L2,6 L2,1.33333333 C2,0.596953665 2.59695366,0 3.33333333,0 L11.615,0 L16,4.41333333 L16,14.6666667 C16,15.4030463 15.4030463,16 14.6666667,16 L3.33333333,16 C2.59695366,16 2,15.4030463 2,14.6666667 L2,13 L2,13 Z M1.38233333,7.38266667 L1.38233333,11.6666667 L2.08433333,11.6666667 L2.08433333,10.0226667 L3.14633333,10.0226667 C4.19033333,10.0226667 4.71233333,9.57866667 4.71233333,8.69666667 C4.71233333,7.82066667 4.19033333,7.38266667 3.15833333,7.38266667 L1.38233333,7.38266667 Z M2.08433333,7.98266667 L3.10433333,7.98266667 C3.41033333,7.98266667 3.63833333,8.03666667 3.78233333,8.15066667 C3.92633333,8.25866667 4.00433333,8.43866667 4.00433333,8.69666667 C4.00433333,8.95466667 3.93233333,9.14066667 3.78833333,9.25466667 C3.64433333,9.36266667 3.41633333,9.42266667 3.10433333,9.42266667 L2.08433333,9.42266667 L2.08433333,7.98266667 L2.08433333,7.98266667 Z M5.31233333,7.38266667 L5.31233333,11.6666667 L6.87833333,11.6666667 C7.57433333,11.6666667 8.09633333,11.4746667 8.45633333,11.0906667 C8.79833333,10.7246667 8.97233333,10.2026667 8.97233333,9.52466667 C8.97233333,8.84066667 8.79833333,8.31866667 8.45633333,7.95866667 C8.09633333,7.57466667 7.57433333,7.38266667 6.87833333,7.38266667 L5.31233333,7.38266667 Z M6.01433333,7.98266667 L6.74633333,7.98266667 C7.28033333,7.98266667 7.67033333,8.10266667 7.91633333,8.34866667 C8.15633333,8.58866667 8.27633333,8.98466667 8.27633333,9.52466667 C8.27633333,10.0526667 8.15633333,10.4426667 7.91633333,10.6946667 C7.67033333,10.9406667 7.28033333,11.0666667 6.74633333,11.0666667 L6.01433333,11.0666667 L6.01433333,7.98266667 L6.01433333,7.98266667 Z M9.63233333,7.38266667 L9.63233333,11.6666667 L10.3343333,11.6666667 L10.3343333,9.77066667 L12.4283333,9.77066667 L12.4283333,9.17066667 L10.3343333,9.17066667 L10.3343333,7.98266667 L12.5543333,7.98266667 L12.5543333,7.38266667 L9.63233333,7.38266667 Z" id="形状"></path>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
13
|
</svg>
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
-
<title>PNG图标</title>
|
|
4
|
-
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
-
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -971.000000)" fill="#FCCC00" fill-rule="nonzero">
|
|
6
|
-
<g id="编组-21备份-7" transform="translate(375.000000, 965.000000)">
|
|
7
|
-
<g id="PNG图标" transform="translate(8.000000, 6.000000)">
|
|
8
|
-
<path d="M3,6 L13,6 C13.176811,6 13.3463803,6.07023789 13.4714045,6.19526215 C13.5964288,6.3202864 13.6666667,6.48985568 13.6666667,6.66666667 L13.6666667,12.3333333 C13.6666667,12.7015232 13.3681898,13 13,13 L3,13 L3,14.6666667 C3,14.7550722 3.03511895,14.8398568 3.09763107,14.9023689 C3.1601432,14.9648811 3.24492783,15 3.33333333,15 L14.6666667,15 C14.8507616,15 15,14.8507616 15,14.6666667 L15,4.82533333 L14.8423333,4.66666667 L12.8653333,4.66666667 C12.0192331,4.66666667 11.3333333,3.98076691 11.3333333,3.13466667 L11.3333333,1.13533333 L11.1986667,1 L3.33333333,1 C3.24492783,1 3.1601432,1.03511895 3.09763107,1.09763107 C3.03511895,1.1601432 3,1.24492783 3,1.33333333 L3,6 Z M2,13 L0.666666672,13 C0.298476836,13 0,12.7015232 0,12.3333333 L0,6.66666667 C0,6.48985568 0.0702378941,6.3202864 0.195262147,6.19526215 C0.320286401,6.07023789 0.489855677,6 0.666666672,6 L2,6 L2,1.33333333 C2,0.596953665 2.59695366,0 3.33333333,0 L11.615,0 L16,4.41333333 L16,14.6666667 C16,15.4030463 15.4030463,16 14.6666667,16 L3.33333333,16 C2.59695366,16 2,15.4030463 2,14.6666667 L2,13 L2,13 Z M1.44233333,7.38266667 L1.44233333,11.6666667 L2.07233333,11.6666667 L2.07233333,10.0226667 L3.02566667,10.0226667 C3.963,10.0226667 4.43133333,9.57866667 4.43133333,8.69666667 C4.43133333,7.82066667 3.963,7.38266667 3.03633333,7.38266667 L1.44233333,7.38266667 Z M2.07233333,7.98266667 L2.988,7.98266667 C3.26266667,7.98266667 3.46733333,8.03666667 3.59666667,8.15066667 C3.726,8.25866667 3.796,8.43866667 3.796,8.69666667 C3.796,8.95466667 3.73133333,9.14066667 3.602,9.25466667 C3.47266667,9.36266667 3.268,9.42266667 2.988,9.42266667 L2.07233333,9.42266667 L2.07233333,7.98266667 L2.07233333,7.98266667 Z M4.97,7.38266667 L4.97,11.6666667 L5.6,11.6666667 L5.6,8.53466667 L5.62166667,8.53466667 L7.54466667,11.6666667 L8.15866667,11.6666667 L8.15866667,7.38266667 L7.52333333,7.38266667 L7.52333333,10.4726667 L7.502,10.4726667 L5.60066667,7.38266667 L4.97066667,7.38266667 L4.97,7.38266667 Z M10.5823333,7.29866667 C10.0116667,7.29866667 9.559,7.51466667 9.225,7.95866667 C8.90733333,8.37266667 8.75133333,8.90066667 8.75133333,9.54266667 C8.75133333,10.1786667 8.90733333,10.7006667 9.225,11.1026667 C9.56433333,11.5346667 10.0383333,11.7506667 10.6523333,11.7506667 C10.9973333,11.7506667 11.3043333,11.7026667 11.5843333,11.6066667 C11.8413472,11.5161114 12.0788713,11.3776687 12.2843333,11.1986667 L12.2843333,9.38666667 L10.6366667,9.38666667 L10.6366667,9.98666667 L11.6546667,9.98666667 L11.6546667,10.8686667 C11.5260832,10.9532016 11.3865768,11.0198148 11.24,11.0666667 C11.0720587,11.1155578 10.8979095,11.1398107 10.723,11.1386667 C10.2543333,11.1386667 9.90966667,10.9946667 9.68866667,10.7066667 C9.484,10.4366667 9.382,10.0466667 9.382,9.54266667 C9.382,9.01466667 9.49466667,8.61266667 9.72633333,8.32466667 C9.93633333,8.04866667 10.222,7.91666667 10.583,7.91666667 C10.8736667,7.91666667 11.1106667,7.98266667 11.2883333,8.12066667 C11.4606667,8.25866667 11.5793333,8.46266667 11.633,8.73866667 L12.2686667,8.73866667 C12.1986667,8.25866667 12.0263333,7.90466667 11.7516667,7.66466667 C11.466,7.41866667 11.0783333,7.29866667 10.5826667,7.29866667 L10.5823333,7.29866667 Z" id="形状"></path>
|
|
9
|
-
</g>
|
|
10
|
-
</g>
|
|
11
|
-
</g>
|
|
12
|
-
</g>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>PNG图标</title>
|
|
4
|
+
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -971.000000)" fill="#FCCC00" fill-rule="nonzero">
|
|
6
|
+
<g id="编组-21备份-7" transform="translate(375.000000, 965.000000)">
|
|
7
|
+
<g id="PNG图标" transform="translate(8.000000, 6.000000)">
|
|
8
|
+
<path d="M3,6 L13,6 C13.176811,6 13.3463803,6.07023789 13.4714045,6.19526215 C13.5964288,6.3202864 13.6666667,6.48985568 13.6666667,6.66666667 L13.6666667,12.3333333 C13.6666667,12.7015232 13.3681898,13 13,13 L3,13 L3,14.6666667 C3,14.7550722 3.03511895,14.8398568 3.09763107,14.9023689 C3.1601432,14.9648811 3.24492783,15 3.33333333,15 L14.6666667,15 C14.8507616,15 15,14.8507616 15,14.6666667 L15,4.82533333 L14.8423333,4.66666667 L12.8653333,4.66666667 C12.0192331,4.66666667 11.3333333,3.98076691 11.3333333,3.13466667 L11.3333333,1.13533333 L11.1986667,1 L3.33333333,1 C3.24492783,1 3.1601432,1.03511895 3.09763107,1.09763107 C3.03511895,1.1601432 3,1.24492783 3,1.33333333 L3,6 Z M2,13 L0.666666672,13 C0.298476836,13 0,12.7015232 0,12.3333333 L0,6.66666667 C0,6.48985568 0.0702378941,6.3202864 0.195262147,6.19526215 C0.320286401,6.07023789 0.489855677,6 0.666666672,6 L2,6 L2,1.33333333 C2,0.596953665 2.59695366,0 3.33333333,0 L11.615,0 L16,4.41333333 L16,14.6666667 C16,15.4030463 15.4030463,16 14.6666667,16 L3.33333333,16 C2.59695366,16 2,15.4030463 2,14.6666667 L2,13 L2,13 Z M1.44233333,7.38266667 L1.44233333,11.6666667 L2.07233333,11.6666667 L2.07233333,10.0226667 L3.02566667,10.0226667 C3.963,10.0226667 4.43133333,9.57866667 4.43133333,8.69666667 C4.43133333,7.82066667 3.963,7.38266667 3.03633333,7.38266667 L1.44233333,7.38266667 Z M2.07233333,7.98266667 L2.988,7.98266667 C3.26266667,7.98266667 3.46733333,8.03666667 3.59666667,8.15066667 C3.726,8.25866667 3.796,8.43866667 3.796,8.69666667 C3.796,8.95466667 3.73133333,9.14066667 3.602,9.25466667 C3.47266667,9.36266667 3.268,9.42266667 2.988,9.42266667 L2.07233333,9.42266667 L2.07233333,7.98266667 L2.07233333,7.98266667 Z M4.97,7.38266667 L4.97,11.6666667 L5.6,11.6666667 L5.6,8.53466667 L5.62166667,8.53466667 L7.54466667,11.6666667 L8.15866667,11.6666667 L8.15866667,7.38266667 L7.52333333,7.38266667 L7.52333333,10.4726667 L7.502,10.4726667 L5.60066667,7.38266667 L4.97066667,7.38266667 L4.97,7.38266667 Z M10.5823333,7.29866667 C10.0116667,7.29866667 9.559,7.51466667 9.225,7.95866667 C8.90733333,8.37266667 8.75133333,8.90066667 8.75133333,9.54266667 C8.75133333,10.1786667 8.90733333,10.7006667 9.225,11.1026667 C9.56433333,11.5346667 10.0383333,11.7506667 10.6523333,11.7506667 C10.9973333,11.7506667 11.3043333,11.7026667 11.5843333,11.6066667 C11.8413472,11.5161114 12.0788713,11.3776687 12.2843333,11.1986667 L12.2843333,9.38666667 L10.6366667,9.38666667 L10.6366667,9.98666667 L11.6546667,9.98666667 L11.6546667,10.8686667 C11.5260832,10.9532016 11.3865768,11.0198148 11.24,11.0666667 C11.0720587,11.1155578 10.8979095,11.1398107 10.723,11.1386667 C10.2543333,11.1386667 9.90966667,10.9946667 9.68866667,10.7066667 C9.484,10.4366667 9.382,10.0466667 9.382,9.54266667 C9.382,9.01466667 9.49466667,8.61266667 9.72633333,8.32466667 C9.93633333,8.04866667 10.222,7.91666667 10.583,7.91666667 C10.8736667,7.91666667 11.1106667,7.98266667 11.2883333,8.12066667 C11.4606667,8.25866667 11.5793333,8.46266667 11.633,8.73866667 L12.2686667,8.73866667 C12.1986667,8.25866667 12.0263333,7.90466667 11.7516667,7.66466667 C11.466,7.41866667 11.0783333,7.29866667 10.5826667,7.29866667 L10.5823333,7.29866667 Z" id="形状"></path>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
13
|
</svg>
|