el-plus-crud 0.0.39 → 0.0.41
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/.eslintrc.js +78 -78
- package/.prettierrc.js +39 -39
- package/CHANGELOG.md +5 -1
- package/build.js +31 -31
- package/dist/el-plus-crud.mjs +1803 -1801
- package/dist/el-plus-crud.umd.js +7 -7
- package/dist/style.css +1 -1
- package/example/App.vue +67 -67
- package/example/main.js +18 -18
- package/index.html +13 -13
- package/lib/components/el-plus-form/ElPlusForm.vue +771 -774
- package/lib/components/el-plus-form/ElPlusFormDialog.vue +90 -90
- package/lib/components/el-plus-form/ElPlusFormGroup.vue +116 -116
- package/lib/components/el-plus-form/components/ElPlusFormArea.vue +61 -61
- package/lib/components/el-plus-form/components/ElPlusFormAutocomplete.vue +49 -49
- package/lib/components/el-plus-form/components/ElPlusFormBtn.vue +102 -102
- package/lib/components/el-plus-form/components/ElPlusFormBtns.vue +133 -133
- package/lib/components/el-plus-form/components/ElPlusFormCascader.vue +63 -63
- package/lib/components/el-plus-form/components/ElPlusFormCascaderPanel.vue +53 -53
- package/lib/components/el-plus-form/components/ElPlusFormCheckbox.vue +44 -44
- package/lib/components/el-plus-form/components/ElPlusFormCheckboxButton.vue +44 -44
- package/lib/components/el-plus-form/components/ElPlusFormColor.vue +38 -38
- package/lib/components/el-plus-form/components/ElPlusFormDate.vue +39 -39
- package/lib/components/el-plus-form/components/ElPlusFormDaterange.vue +46 -46
- package/lib/components/el-plus-form/components/ElPlusFormDatetime.vue +40 -40
- package/lib/components/el-plus-form/components/ElPlusFormFile.vue +47 -47
- package/lib/components/el-plus-form/components/ElPlusFormImage.vue +113 -113
- package/lib/components/el-plus-form/components/ElPlusFormLink.vue +281 -281
- package/lib/components/el-plus-form/components/ElPlusFormLkuser.vue +489 -489
- package/lib/components/el-plus-form/components/ElPlusFormNbinput.vue +53 -53
- package/lib/components/el-plus-form/components/ElPlusFormNumber.vue +146 -146
- package/lib/components/el-plus-form/components/ElPlusFormQuickInput.vue +94 -94
- package/lib/components/el-plus-form/components/ElPlusFormRadio.vue +42 -42
- package/lib/components/el-plus-form/components/ElPlusFormRate.vue +38 -38
- package/lib/components/el-plus-form/components/ElPlusFormSelect.vue +161 -161
- package/lib/components/el-plus-form/components/ElPlusFormSlider.vue +38 -38
- package/lib/components/el-plus-form/components/ElPlusFormSwitch.vue +38 -38
- package/lib/components/el-plus-form/components/ElPlusFormTag.vue +78 -78
- package/lib/components/el-plus-form/components/ElPlusFormText.vue +99 -99
- package/lib/components/el-plus-form/components/ElPlusFormTextarea.vue +49 -49
- package/lib/components/el-plus-form/components/ElPlusFormTransfer.vue +44 -44
- package/lib/components/el-plus-form/components/ElPlusFormTree.vue +76 -76
- package/lib/components/el-plus-form/components/ElPlusFormTreeSelect.vue +59 -59
- package/lib/components/el-plus-form/components/ElPlusFormUpload.vue +368 -368
- package/lib/components/el-plus-form/components/components/file-icons/FileIcons.vue +135 -135
- package/lib/components/el-plus-form/components/components/file-icons/data/index.ts +27 -27
- 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.ts +17 -17
- package/lib/components/el-plus-form/data/file.ts +74 -74
- package/lib/components/el-plus-form/mixins/index.ts +115 -113
- package/lib/components/el-plus-form/util/index.ts +257 -257
- package/lib/components/el-plus-form/util/validate.ts +332 -332
- package/lib/components/el-plus-table/components/columnItem.vue +205 -205
- package/lib/components/el-plus-table/components/header.vue +240 -240
- package/lib/components/el-plus-table/components/statisticInfo.vue +47 -47
- package/lib/components/el-plus-table/util/index.ts +147 -147
- package/lib/config/index.ts +30 -30
- package/lib/index.d.ts +4 -4
- package/lib/index.ts +51 -51
- package/package.json +1 -1
- package/types/axios.d.ts +13 -13
- package/types/formList.d.ts +440 -440
- package/types/layout.d.ts +57 -57
- package/types/mitt.d.ts +38 -38
- package/types/pinia.d.ts +149 -149
- package/types/views.d.ts +329 -329
- package/vite.config.ts +78 -78
|
@@ -1,135 +1,135 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="file-icons-panel">
|
|
3
|
-
<div :class="[isCard ? 'card-list' : 'file-list']" v-if="files && files.length">
|
|
4
|
-
<div v-for="(item, i) in files" :key="i" class="file-item" @click="handelPreview(item)">
|
|
5
|
-
<el-image :src="getIcon(item)" :style="style" fit="cover" />
|
|
6
|
-
<div v-if="showName" class="file-name">{{ cutString(item.name, 50) + item.suffix }}</div>
|
|
7
|
-
</div>
|
|
8
|
-
</div>
|
|
9
|
-
|
|
10
|
-
<!-- 图片查看的站位标签 -->
|
|
11
|
-
<el-image-viewer v-if="showPreview" @close="showPreview = false" teleported :initialIndex="previewIndex" :url-list="previewList" />
|
|
12
|
-
</div>
|
|
13
|
-
</template>
|
|
14
|
-
<script lang="ts" setup name="FileIcons">
|
|
15
|
-
import { ref, computed } from 'vue'
|
|
16
|
-
import fileIcon, { imgSuffix, iconMap } from './data'
|
|
17
|
-
import { cutString } from '../../../util'
|
|
18
|
-
|
|
19
|
-
const props = defineProps<{
|
|
20
|
-
files: Array<IOssInfo>
|
|
21
|
-
size?: number
|
|
22
|
-
// 是否是卡片布局
|
|
23
|
-
isCard?: boolean
|
|
24
|
-
// 如果是图片,是否直接显示, 默认显示的图片icon
|
|
25
|
-
showImg?: boolean
|
|
26
|
-
// 是否能够预览
|
|
27
|
-
preview?: boolean
|
|
28
|
-
// 是否显示名称
|
|
29
|
-
showName?: boolean
|
|
30
|
-
}>()
|
|
31
|
-
|
|
32
|
-
const showPreview = ref(false)
|
|
33
|
-
const previewIndex = ref(0)
|
|
34
|
-
|
|
35
|
-
// 预览列表
|
|
36
|
-
const previewList = computed(() =>
|
|
37
|
-
props.files
|
|
38
|
-
.map((item: any) => {
|
|
39
|
-
if (imgSuffix.indexOf(item.suffix || '') >= 0) {
|
|
40
|
-
return item.shareUrl
|
|
41
|
-
}
|
|
42
|
-
})
|
|
43
|
-
.filter((url) => url)
|
|
44
|
-
)
|
|
45
|
-
|
|
46
|
-
/**
|
|
47
|
-
* 图片的样式
|
|
48
|
-
*/
|
|
49
|
-
const style = computed(() => {
|
|
50
|
-
return {
|
|
51
|
-
width: (props.size || 16) + 'px',
|
|
52
|
-
height: (props.size || 16) + 'px'
|
|
53
|
-
}
|
|
54
|
-
})
|
|
55
|
-
|
|
56
|
-
/**
|
|
57
|
-
* 获取Icon
|
|
58
|
-
* @param item
|
|
59
|
-
*/
|
|
60
|
-
function getIcon(item: IOssInfo) {
|
|
61
|
-
let icon = iconMap[item.suffix || ''] || fileIcon
|
|
62
|
-
if (props.showImg) {
|
|
63
|
-
if (imgSuffix.indexOf(item.suffix || '') >= 0) {
|
|
64
|
-
return item.shareUrl
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
return icon
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
// 处理点击事件
|
|
71
|
-
function handelPreview(file: IOssInfo) {
|
|
72
|
-
// console.log('preview: ', props.preview, file, previewList.value)
|
|
73
|
-
if (props.preview) {
|
|
74
|
-
// 如果是图片
|
|
75
|
-
if (imgSuffix.indexOf(file.suffix || '') >= 0) {
|
|
76
|
-
previewIndex.value = previewList.value.indexOf(file.shareUrl || file.furl)
|
|
77
|
-
showPreview.value = true
|
|
78
|
-
} else {
|
|
79
|
-
window.open(file.previewUrl || file.shareUrl || file.furl, '_blank')
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
</script>
|
|
84
|
-
<style lang="scss" scoped>
|
|
85
|
-
.file-icons-panel {
|
|
86
|
-
width: 100%;
|
|
87
|
-
|
|
88
|
-
.file-list {
|
|
89
|
-
width: 100%;
|
|
90
|
-
display: flex;
|
|
91
|
-
flex-direction: column;
|
|
92
|
-
|
|
93
|
-
.file-item {
|
|
94
|
-
display: flex;
|
|
95
|
-
flex-direction: row;
|
|
96
|
-
align-items: center;
|
|
97
|
-
width: 100%;
|
|
98
|
-
height: 28px;
|
|
99
|
-
line-height: 28px;
|
|
100
|
-
padding: 0 10px;
|
|
101
|
-
background: #f5f7fa;
|
|
102
|
-
margin-bottom: 10px;
|
|
103
|
-
cursor: pointer;
|
|
104
|
-
font-size: 13px;
|
|
105
|
-
font-weight: 400;
|
|
106
|
-
color: #303133;
|
|
107
|
-
|
|
108
|
-
&:hover {
|
|
109
|
-
background: #e7e8eb;
|
|
110
|
-
color: var(--el-color-primary);
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.file-name {
|
|
114
|
-
margin-left: 10px;
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.card-list {
|
|
120
|
-
width: 100%;
|
|
121
|
-
display: flex;
|
|
122
|
-
flex-direction: row;
|
|
123
|
-
|
|
124
|
-
.file-item {
|
|
125
|
-
display: flex;
|
|
126
|
-
flex-direction: column;
|
|
127
|
-
align-items: center;
|
|
128
|
-
|
|
129
|
-
.file-name {
|
|
130
|
-
margin-top: 10px;
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="file-icons-panel">
|
|
3
|
+
<div :class="[isCard ? 'card-list' : 'file-list']" v-if="files && files.length">
|
|
4
|
+
<div v-for="(item, i) in files" :key="i" class="file-item" @click="handelPreview(item)">
|
|
5
|
+
<el-image :src="getIcon(item)" :style="style" fit="cover" />
|
|
6
|
+
<div v-if="showName" class="file-name">{{ cutString(item.name, 50) + item.suffix }}</div>
|
|
7
|
+
</div>
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
<!-- 图片查看的站位标签 -->
|
|
11
|
+
<el-image-viewer v-if="showPreview" @close="showPreview = false" teleported :initialIndex="previewIndex" :url-list="previewList" />
|
|
12
|
+
</div>
|
|
13
|
+
</template>
|
|
14
|
+
<script lang="ts" setup name="FileIcons">
|
|
15
|
+
import { ref, computed } from 'vue'
|
|
16
|
+
import fileIcon, { imgSuffix, iconMap } from './data'
|
|
17
|
+
import { cutString } from '../../../util'
|
|
18
|
+
|
|
19
|
+
const props = defineProps<{
|
|
20
|
+
files: Array<IOssInfo>
|
|
21
|
+
size?: number
|
|
22
|
+
// 是否是卡片布局
|
|
23
|
+
isCard?: boolean
|
|
24
|
+
// 如果是图片,是否直接显示, 默认显示的图片icon
|
|
25
|
+
showImg?: boolean
|
|
26
|
+
// 是否能够预览
|
|
27
|
+
preview?: boolean
|
|
28
|
+
// 是否显示名称
|
|
29
|
+
showName?: boolean
|
|
30
|
+
}>()
|
|
31
|
+
|
|
32
|
+
const showPreview = ref(false)
|
|
33
|
+
const previewIndex = ref(0)
|
|
34
|
+
|
|
35
|
+
// 预览列表
|
|
36
|
+
const previewList = computed(() =>
|
|
37
|
+
props.files
|
|
38
|
+
.map((item: any) => {
|
|
39
|
+
if (imgSuffix.indexOf(item.suffix || '') >= 0) {
|
|
40
|
+
return item.shareUrl
|
|
41
|
+
}
|
|
42
|
+
})
|
|
43
|
+
.filter((url) => url)
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* 图片的样式
|
|
48
|
+
*/
|
|
49
|
+
const style = computed(() => {
|
|
50
|
+
return {
|
|
51
|
+
width: (props.size || 16) + 'px',
|
|
52
|
+
height: (props.size || 16) + 'px'
|
|
53
|
+
}
|
|
54
|
+
})
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* 获取Icon
|
|
58
|
+
* @param item
|
|
59
|
+
*/
|
|
60
|
+
function getIcon(item: IOssInfo) {
|
|
61
|
+
let icon = iconMap[item.suffix || ''] || fileIcon
|
|
62
|
+
if (props.showImg) {
|
|
63
|
+
if (imgSuffix.indexOf(item.suffix || '') >= 0) {
|
|
64
|
+
return item.shareUrl
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
return icon
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// 处理点击事件
|
|
71
|
+
function handelPreview(file: IOssInfo) {
|
|
72
|
+
// console.log('preview: ', props.preview, file, previewList.value)
|
|
73
|
+
if (props.preview) {
|
|
74
|
+
// 如果是图片
|
|
75
|
+
if (imgSuffix.indexOf(file.suffix || '') >= 0) {
|
|
76
|
+
previewIndex.value = previewList.value.indexOf(file.shareUrl || file.furl)
|
|
77
|
+
showPreview.value = true
|
|
78
|
+
} else {
|
|
79
|
+
window.open(file.previewUrl || file.shareUrl || file.furl, '_blank')
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
</script>
|
|
84
|
+
<style lang="scss" scoped>
|
|
85
|
+
.file-icons-panel {
|
|
86
|
+
width: 100%;
|
|
87
|
+
|
|
88
|
+
.file-list {
|
|
89
|
+
width: 100%;
|
|
90
|
+
display: flex;
|
|
91
|
+
flex-direction: column;
|
|
92
|
+
|
|
93
|
+
.file-item {
|
|
94
|
+
display: flex;
|
|
95
|
+
flex-direction: row;
|
|
96
|
+
align-items: center;
|
|
97
|
+
width: 100%;
|
|
98
|
+
height: 28px;
|
|
99
|
+
line-height: 28px;
|
|
100
|
+
padding: 0 10px;
|
|
101
|
+
background: #f5f7fa;
|
|
102
|
+
margin-bottom: 10px;
|
|
103
|
+
cursor: pointer;
|
|
104
|
+
font-size: 13px;
|
|
105
|
+
font-weight: 400;
|
|
106
|
+
color: #303133;
|
|
107
|
+
|
|
108
|
+
&:hover {
|
|
109
|
+
background: #e7e8eb;
|
|
110
|
+
color: var(--el-color-primary);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.file-name {
|
|
114
|
+
margin-left: 10px;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.card-list {
|
|
120
|
+
width: 100%;
|
|
121
|
+
display: flex;
|
|
122
|
+
flex-direction: row;
|
|
123
|
+
|
|
124
|
+
.file-item {
|
|
125
|
+
display: flex;
|
|
126
|
+
flex-direction: column;
|
|
127
|
+
align-items: center;
|
|
128
|
+
|
|
129
|
+
.file-name {
|
|
130
|
+
margin-top: 10px;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
</style>
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
// 引入图标
|
|
2
|
-
import doc from '../images/doc.svg'
|
|
3
|
-
import file from '../images/file.svg'
|
|
4
|
-
import jpg from '../images/jpg.svg'
|
|
5
|
-
import pdf from '../images/pdf.svg'
|
|
6
|
-
import png from '../images/png.svg'
|
|
7
|
-
import ppt from '../images/ppt.svg'
|
|
8
|
-
import xls from '../images/xls.svg'
|
|
9
|
-
|
|
10
|
-
export default file
|
|
11
|
-
|
|
12
|
-
// 图片后缀
|
|
13
|
-
export const imgSuffix = ['.png', '.jpg', '.gif', '.jpeg']
|
|
14
|
-
|
|
15
|
-
// 图标Map
|
|
16
|
-
export const iconMap = {
|
|
17
|
-
'.doc': doc,
|
|
18
|
-
'.docx': doc,
|
|
19
|
-
'.jpg': jpg,
|
|
20
|
-
'.jpeg': jpg,
|
|
21
|
-
'.png': png,
|
|
22
|
-
'.pdf': pdf,
|
|
23
|
-
'.ppt': ppt,
|
|
24
|
-
'.pptx': ppt,
|
|
25
|
-
'.xls': ppt,
|
|
26
|
-
'.xlsx': xls
|
|
27
|
-
}
|
|
1
|
+
// 引入图标
|
|
2
|
+
import doc from '../images/doc.svg'
|
|
3
|
+
import file from '../images/file.svg'
|
|
4
|
+
import jpg from '../images/jpg.svg'
|
|
5
|
+
import pdf from '../images/pdf.svg'
|
|
6
|
+
import png from '../images/png.svg'
|
|
7
|
+
import ppt from '../images/ppt.svg'
|
|
8
|
+
import xls from '../images/xls.svg'
|
|
9
|
+
|
|
10
|
+
export default file
|
|
11
|
+
|
|
12
|
+
// 图片后缀
|
|
13
|
+
export const imgSuffix = ['.png', '.jpg', '.gif', '.jpeg']
|
|
14
|
+
|
|
15
|
+
// 图标Map
|
|
16
|
+
export const iconMap = {
|
|
17
|
+
'.doc': doc,
|
|
18
|
+
'.docx': doc,
|
|
19
|
+
'.jpg': jpg,
|
|
20
|
+
'.jpeg': jpg,
|
|
21
|
+
'.png': png,
|
|
22
|
+
'.pdf': pdf,
|
|
23
|
+
'.ppt': ppt,
|
|
24
|
+
'.pptx': ppt,
|
|
25
|
+
'.xls': ppt,
|
|
26
|
+
'.xlsx': xls
|
|
27
|
+
}
|
|
@@ -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>
|
|
@@ -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>PPT图标</title>
|
|
4
|
-
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
-
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -891.000000)" fill="#F85207" fill-rule="nonzero">
|
|
6
|
-
<g id="编组-21备份-5" transform="translate(375.000000, 885.000000)">
|
|
7
|
-
<g id="PPT图标" 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.47833333,7.38266667 L1.47833333,11.6666667 L2.18033333,11.6666667 L2.18033333,10.0226667 L3.24233333,10.0226667 C4.28633333,10.0226667 4.80833333,9.57866667 4.80833333,8.69666667 C4.80833333,7.82066667 4.28633333,7.38266667 3.25433333,7.38266667 L1.47833333,7.38266667 Z M2.18033333,7.98266667 L3.20033333,7.98266667 C3.50633333,7.98266667 3.73433333,8.03666667 3.87833333,8.15066667 C4.02233333,8.25866667 4.10033333,8.43866667 4.10033333,8.69666667 C4.10033333,8.95466667 4.02833333,9.14066667 3.88433333,9.25466667 C3.74033333,9.36266667 3.51233333,9.42266667 3.20033333,9.42266667 L2.18033333,9.42266667 L2.18033333,7.98266667 L2.18033333,7.98266667 Z M5.40833333,7.38266667 L5.40833333,11.6666667 L6.11033333,11.6666667 L6.11033333,10.0226667 L7.17233333,10.0226667 C8.21633333,10.0226667 8.73833333,9.57866667 8.73833333,8.69666667 C8.73833333,7.82066667 8.21633333,7.38266667 7.18433333,7.38266667 L5.40833333,7.38266667 Z M6.11033333,7.98266667 L7.13033333,7.98266667 C7.43633333,7.98266667 7.66433333,8.03666667 7.80833333,8.15066667 C7.95233333,8.25866667 8.03033333,8.43866667 8.03033333,8.69666667 C8.03033333,8.95466667 7.95833333,9.14066667 7.81433333,9.25466667 C7.67033333,9.36266667 7.44233333,9.42266667 7.13033333,9.42266667 L6.11033333,9.42266667 L6.11033333,7.98266667 L6.11033333,7.98266667 Z M9.00833333,7.38266667 L9.00833333,7.98266667 L10.4123333,7.98266667 L10.4123333,11.6666667 L11.1143333,11.6666667 L11.1143333,7.98266667 L12.5183333,7.98266667 L12.5183333,7.38266667 L9.00833333,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>PPT图标</title>
|
|
4
|
+
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -891.000000)" fill="#F85207" fill-rule="nonzero">
|
|
6
|
+
<g id="编组-21备份-5" transform="translate(375.000000, 885.000000)">
|
|
7
|
+
<g id="PPT图标" 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.47833333,7.38266667 L1.47833333,11.6666667 L2.18033333,11.6666667 L2.18033333,10.0226667 L3.24233333,10.0226667 C4.28633333,10.0226667 4.80833333,9.57866667 4.80833333,8.69666667 C4.80833333,7.82066667 4.28633333,7.38266667 3.25433333,7.38266667 L1.47833333,7.38266667 Z M2.18033333,7.98266667 L3.20033333,7.98266667 C3.50633333,7.98266667 3.73433333,8.03666667 3.87833333,8.15066667 C4.02233333,8.25866667 4.10033333,8.43866667 4.10033333,8.69666667 C4.10033333,8.95466667 4.02833333,9.14066667 3.88433333,9.25466667 C3.74033333,9.36266667 3.51233333,9.42266667 3.20033333,9.42266667 L2.18033333,9.42266667 L2.18033333,7.98266667 L2.18033333,7.98266667 Z M5.40833333,7.38266667 L5.40833333,11.6666667 L6.11033333,11.6666667 L6.11033333,10.0226667 L7.17233333,10.0226667 C8.21633333,10.0226667 8.73833333,9.57866667 8.73833333,8.69666667 C8.73833333,7.82066667 8.21633333,7.38266667 7.18433333,7.38266667 L5.40833333,7.38266667 Z M6.11033333,7.98266667 L7.13033333,7.98266667 C7.43633333,7.98266667 7.66433333,8.03666667 7.80833333,8.15066667 C7.95233333,8.25866667 8.03033333,8.43866667 8.03033333,8.69666667 C8.03033333,8.95466667 7.95833333,9.14066667 7.81433333,9.25466667 C7.67033333,9.36266667 7.44233333,9.42266667 7.13033333,9.42266667 L6.11033333,9.42266667 L6.11033333,7.98266667 L6.11033333,7.98266667 Z M9.00833333,7.38266667 L9.00833333,7.98266667 L10.4123333,7.98266667 L10.4123333,11.6666667 L11.1143333,11.6666667 L11.1143333,7.98266667 L12.5183333,7.98266667 L12.5183333,7.38266667 L9.00833333,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>XLS图标</title>
|
|
4
|
-
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
-
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -771.000000)" fill="#77D425" fill-rule="nonzero">
|
|
6
|
-
<g id="编组-21备份-2" transform="translate(375.000000, 765.000000)">
|
|
7
|
-
<g id="XLS图标" 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 M10.3616667,7.29866667 C9.89966667,7.29866667 9.52166667,7.40066667 9.22166667,7.61066667 C8.89766667,7.82666667 8.74166667,8.12666667 8.74166667,8.50466667 C8.74166667,8.88266667 8.90366667,9.17066667 9.23366667,9.36866667 C9.35966667,9.44066667 9.68966667,9.56066667 10.2176667,9.72866667 C10.6916667,9.87266667 10.9676667,9.96866667 11.0516667,10.0106667 C11.3156667,10.1426667 11.4536667,10.3226667 11.4536667,10.5506667 C11.4536667,10.7306667 11.3576667,10.8686667 11.1776667,10.9766667 C10.9976667,11.0786667 10.7456667,11.1326667 10.4336667,11.1326667 C10.0796667,11.1326667 9.82166667,11.0666667 9.65366667,10.9466667 C9.46766667,10.8086667 9.35366667,10.5746667 9.30566667,10.2506667 L8.60966667,10.2506667 C8.63966667,10.7966667 8.83766667,11.1926667 9.19766667,11.4446667 C9.49166667,11.6486667 9.90566667,11.7506667 10.4336667,11.7506667 C10.9796667,11.7506667 11.4056667,11.6366667 11.7056667,11.4206667 C12.0056667,11.1986667 12.1556667,10.8926667 12.1556667,10.5086667 C12.1556667,10.1126667 11.9696667,9.80666667 11.5976667,9.58466667 C11.4296667,9.48866667 11.0576667,9.34466667 10.4756667,9.16466667 C10.0796667,9.03866667 9.83366667,8.94866667 9.74366667,8.90066667 C9.53966667,8.79266667 9.44366667,8.64266667 9.44366667,8.46266667 C9.44366667,8.25866667 9.52766667,8.10866667 9.70766667,8.01866667 C9.85166667,7.94066667 10.0556667,7.90466667 10.3256667,7.90466667 C10.6376667,7.90466667 10.8776667,7.95866667 11.0336667,8.07866667 C11.1896667,8.19266667 11.3036667,8.38466667 11.3636667,8.64866667 L12.0596667,8.64866667 C12.0176667,8.18066667 11.8436667,7.83266667 11.5436667,7.61066667 C11.2616667,7.40066667 10.8656667,7.29866667 10.3616667,7.29866667 L10.3616667,7.29866667 Z M2.42966667,7.38266667 L1.57166667,7.38266667 L3.00566667,9.45266667 L1.47566667,11.6666667 L2.33366667,11.6666667 L3.43766667,10.0106667 L4.54166667,11.6666667 L5.39966667,11.6666667 L3.85766667,9.45266667 L5.30366667,7.38266667 L4.44566667,7.38266667 L3.43766667,8.89466667 L2.42966667,7.38266667 L2.42966667,7.38266667 Z M6.45166667,7.38266667 L5.75566667,7.38266667 L5.75566667,11.6666667 L8.43433333,11.6666667 L8.43433333,11.0666667 L6.45166667,11.0666667 L6.45166667,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>XLS图标</title>
|
|
4
|
+
<g id="供应商管理" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="供应商管理-供应商列表详情-20条附件" transform="translate(-383.000000, -771.000000)" fill="#77D425" fill-rule="nonzero">
|
|
6
|
+
<g id="编组-21备份-2" transform="translate(375.000000, 765.000000)">
|
|
7
|
+
<g id="XLS图标" 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 M10.3616667,7.29866667 C9.89966667,7.29866667 9.52166667,7.40066667 9.22166667,7.61066667 C8.89766667,7.82666667 8.74166667,8.12666667 8.74166667,8.50466667 C8.74166667,8.88266667 8.90366667,9.17066667 9.23366667,9.36866667 C9.35966667,9.44066667 9.68966667,9.56066667 10.2176667,9.72866667 C10.6916667,9.87266667 10.9676667,9.96866667 11.0516667,10.0106667 C11.3156667,10.1426667 11.4536667,10.3226667 11.4536667,10.5506667 C11.4536667,10.7306667 11.3576667,10.8686667 11.1776667,10.9766667 C10.9976667,11.0786667 10.7456667,11.1326667 10.4336667,11.1326667 C10.0796667,11.1326667 9.82166667,11.0666667 9.65366667,10.9466667 C9.46766667,10.8086667 9.35366667,10.5746667 9.30566667,10.2506667 L8.60966667,10.2506667 C8.63966667,10.7966667 8.83766667,11.1926667 9.19766667,11.4446667 C9.49166667,11.6486667 9.90566667,11.7506667 10.4336667,11.7506667 C10.9796667,11.7506667 11.4056667,11.6366667 11.7056667,11.4206667 C12.0056667,11.1986667 12.1556667,10.8926667 12.1556667,10.5086667 C12.1556667,10.1126667 11.9696667,9.80666667 11.5976667,9.58466667 C11.4296667,9.48866667 11.0576667,9.34466667 10.4756667,9.16466667 C10.0796667,9.03866667 9.83366667,8.94866667 9.74366667,8.90066667 C9.53966667,8.79266667 9.44366667,8.64266667 9.44366667,8.46266667 C9.44366667,8.25866667 9.52766667,8.10866667 9.70766667,8.01866667 C9.85166667,7.94066667 10.0556667,7.90466667 10.3256667,7.90466667 C10.6376667,7.90466667 10.8776667,7.95866667 11.0336667,8.07866667 C11.1896667,8.19266667 11.3036667,8.38466667 11.3636667,8.64866667 L12.0596667,8.64866667 C12.0176667,8.18066667 11.8436667,7.83266667 11.5436667,7.61066667 C11.2616667,7.40066667 10.8656667,7.29866667 10.3616667,7.29866667 L10.3616667,7.29866667 Z M2.42966667,7.38266667 L1.57166667,7.38266667 L3.00566667,9.45266667 L1.47566667,11.6666667 L2.33366667,11.6666667 L3.43766667,10.0106667 L4.54166667,11.6666667 L5.39966667,11.6666667 L3.85766667,9.45266667 L5.30366667,7.38266667 L4.44566667,7.38266667 L3.43766667,8.89466667 L2.42966667,7.38266667 L2.42966667,7.38266667 Z M6.45166667,7.38266667 L5.75566667,7.38266667 L5.75566667,11.6666667 L8.43433333,11.6666667 L8.43433333,11.0666667 L6.45166667,11.0666667 L6.45166667,7.38266667 Z" id="形状"></path>
|
|
9
|
+
</g>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
13
|
</svg>
|