@kyfe/fms-vue2-components 0.0.2-beta.0
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/dist/assets/css/fms-ks-decrypt.css +1 -0
- package/dist/fms-copy-box/index.js +69 -0
- package/dist/fms-copy-box/style.css +1 -0
- package/dist/fms-empty/index.js +42 -0
- package/dist/fms-empty/style.css +1 -0
- package/dist/fms-ks-decrypt/index.js +9 -0
- package/dist/fms-ks-decrypt.bcc12f44.js +335 -0
- package/dist/fms-ks-file-upload/index.js +148 -0
- package/dist/fms-ks-file-upload/style.css +1 -0
- package/dist/fms-ks-file-view/index.js +286 -0
- package/dist/fms-ks-file-view/style.css +1 -0
- package/dist/fms-scroll-list/index.js +241 -0
- package/dist/fms-scroll-list/style.css +1 -0
- package/dist/index.js +37 -0
- package/dist/plugin-vue2_normalizer.ed7092a9.js +30 -0
- package/package.json +31 -0
- package/src/assets/images/code.png +0 -0
- package/src/assets/images/copy-icon.png +0 -0
- package/src/assets/images/tag-gkbk.png +0 -0
- package/src/assets/style/common.less +62 -0
- package/src/components/fms-copy-box/fms-copy-box.vue +97 -0
- package/src/components/fms-copy-box/index.js +7 -0
- package/src/components/fms-copy-box//345/244/215/345/210/266.md +0 -0
- package/src/components/fms-empty/assets/default.png +0 -0
- package/src/components/fms-empty/assets/search.png +0 -0
- package/src/components/fms-empty/fms-empty.vue +57 -0
- package/src/components/fms-empty/index.js +7 -0
- package/src/components/fms-ks-decrypt/component/call/index.vue +283 -0
- package/src/components/fms-ks-decrypt/component/call/mixin.less +50 -0
- package/src/components/fms-ks-decrypt/component/custom-call/index.vue +50 -0
- package/src/components/fms-ks-decrypt/fms-ks-decrypt.vue +257 -0
- package/src/components/fms-ks-decrypt/index.js +7 -0
- package/src/components/fms-ks-decrypt/phone.svg +24 -0
- package/src/components/fms-ks-decrypt//346/225/217/346/204/237/347/233/221/346/216/247/347/273/204/344/273/266.md +140 -0
- package/src/components/fms-ks-file-upload/assets/icon_close.png +0 -0
- package/src/components/fms-ks-file-upload/fms-ks-file-upload.vue +254 -0
- package/src/components/fms-ks-file-upload/index.js +7 -0
- package/src/components/fms-ks-file-upload//344/270/212/344/274/240/347/273/204/344/273/266.md +0 -0
- package/src/components/fms-ks-file-view/assets/icon_default.svg +23 -0
- package/src/components/fms-ks-file-view/assets/icon_default_new.png +0 -0
- package/src/components/fms-ks-file-view/assets/icon_excel.svg +20 -0
- package/src/components/fms-ks-file-view/assets/icon_excel_new.png +0 -0
- package/src/components/fms-ks-file-view/assets/icon_file.png +0 -0
- package/src/components/fms-ks-file-view/assets/icon_pdf_new.png +0 -0
- package/src/components/fms-ks-file-view/assets/icon_ppt.svg +20 -0
- package/src/components/fms-ks-file-view/assets/icon_ppt_new.png +0 -0
- package/src/components/fms-ks-file-view/assets/icon_preview_file.png +0 -0
- package/src/components/fms-ks-file-view/assets/icon_txt.png +0 -0
- package/src/components/fms-ks-file-view/assets/icon_word.svg +19 -0
- package/src/components/fms-ks-file-view/assets/icon_word_new.png +0 -0
- package/src/components/fms-ks-file-view/assets/icon_xmind.png +0 -0
- package/src/components/fms-ks-file-view/components/attachment.vue +343 -0
- package/src/components/fms-ks-file-view/fms-ks-file-view.vue +165 -0
- package/src/components/fms-ks-file-view/index.js +7 -0
- package/src/components/fms-ks-file-view/utils/index.js +27 -0
- package/src/components/fms-ks-file-view//346/226/207/344/273/266/351/242/204/350/247/210.md +23 -0
- package/src/components/fms-scroll-list/Waterfall.js +91 -0
- package/src/components/fms-scroll-list/fms-scroll-list.vue +294 -0
- package/src/components/fms-scroll-list/index.js +7 -0
- package/src/components/fms-scroll-list//346/273/232/345/212/250.md +0 -0
- package/src/index.js +37 -0
- package/vite.config.js +82 -0
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
#### 参数
|
|
2
|
+
参数名 | 说明 | 类型 | 默认值 | 是否必须值
|
|
3
|
+
-----------|--------|------|------|--
|
|
4
|
+
v-model (value) | 当前输入的值| string, number | - |-
|
|
5
|
+
formData | 表单数据(或列表的行数据) | object | - | 是
|
|
6
|
+
fieldName | 对应的后端字段名 | string | - |是
|
|
7
|
+
fieldNameStr | 字段中文名称 | string | -|是
|
|
8
|
+
idKey | 业务实体id的key |string |id |是
|
|
9
|
+
meunCode | {moduleCode:xx, moduleName: xx} | object | -|是
|
|
10
|
+
- | moduleCode:解密时菜单ID | string | - |是
|
|
11
|
+
- | moduleName:当前模块名 | string | - |是
|
|
12
|
+
isField | 是否是在表单中使用(为true时,可使用van-field的原生能力) |string |false |-
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
#### 事件
|
|
16
|
+
事件名 | 说明
|
|
17
|
+
-----------|--------
|
|
18
|
+
input| 输入框内容变化时触发
|
|
19
|
+
focus| 输入框获得焦点时触发
|
|
20
|
+
blur| 输入框失去焦点时触发
|
|
21
|
+
clear| 点击清除按钮时触发
|
|
22
|
+
click-left-icon| 点击左侧图标时触发
|
|
23
|
+
click-right-icon| 点击右侧图标时触发
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
#### 用法
|
|
27
|
+
```javascript
|
|
28
|
+
<template>
|
|
29
|
+
<div>
|
|
30
|
+
<!-- 表单start -->
|
|
31
|
+
<ks-cell-group title="基础用法-表单">
|
|
32
|
+
<ks-decrypt v-model="formData.riskAmount"
|
|
33
|
+
:meunCode="meunCode"
|
|
34
|
+
:isField="true"
|
|
35
|
+
:formData.sync="formData"
|
|
36
|
+
fieldName='riskAmount'
|
|
37
|
+
@blur="riskAmountBlur"
|
|
38
|
+
placeholder="请输入用户名" />
|
|
39
|
+
<ks-decrypt v-model="formData.username"
|
|
40
|
+
:isField="true"
|
|
41
|
+
:meunCode="meunCode"
|
|
42
|
+
:formData="formData"
|
|
43
|
+
fieldName='username'
|
|
44
|
+
required
|
|
45
|
+
input-align="right"
|
|
46
|
+
clearable
|
|
47
|
+
label="解密可输入" />
|
|
48
|
+
<ks-decrypt v-model="formData.payLoanAmount"
|
|
49
|
+
:isField="true"
|
|
50
|
+
:meunCode="meunCode"
|
|
51
|
+
:formData.sync="formData"
|
|
52
|
+
disabled
|
|
53
|
+
fieldName='payLoanAmount'
|
|
54
|
+
type="digit"
|
|
55
|
+
label="解密后禁用" />
|
|
56
|
+
<ks-decrypt v-model="formData.payLoan"
|
|
57
|
+
:isField="true"
|
|
58
|
+
:meunCode="meunCode"
|
|
59
|
+
:formData.sync="formData"
|
|
60
|
+
fieldName='payLoan'
|
|
61
|
+
type="digit"
|
|
62
|
+
label="敏感数据" />
|
|
63
|
+
</ks-cell-group>
|
|
64
|
+
<!-- 表单end -->
|
|
65
|
+
|
|
66
|
+
<!-- 列表start -->
|
|
67
|
+
<ks-cell-group title="列表中使用解密">
|
|
68
|
+
<div v-for="(item, index) in list"
|
|
69
|
+
:key="index">
|
|
70
|
+
<van-cell title="公司名称">
|
|
71
|
+
<ks-decrypt class="left"
|
|
72
|
+
:value="item.username"
|
|
73
|
+
:formData="item"
|
|
74
|
+
idKey="id"
|
|
75
|
+
fieldName="username"
|
|
76
|
+
fieldNameStr="公司名称"
|
|
77
|
+
:meunCode="meunCode"
|
|
78
|
+
@decryptData="decryptData"></ks-decrypt>
|
|
79
|
+
</van-cell>
|
|
80
|
+
</div>
|
|
81
|
+
</ks-cell-group>
|
|
82
|
+
|
|
83
|
+
<!-- 列表end -->
|
|
84
|
+
</div>
|
|
85
|
+
</template>
|
|
86
|
+
|
|
87
|
+
<script>
|
|
88
|
+
import ksDecrypt from '../components/ks-decrypt';
|
|
89
|
+
export default {
|
|
90
|
+
name: "field",
|
|
91
|
+
data () {
|
|
92
|
+
return {
|
|
93
|
+
formData: {
|
|
94
|
+
riskAmount: '******',
|
|
95
|
+
riskAmountMask: 'ef2160623c6fd54a013e8ff9a379de9f',
|
|
96
|
+
username: '******',
|
|
97
|
+
usernameMask: '37e2e92d1007bb5a6fa66b98444fb3fd',
|
|
98
|
+
payLoanAmount: '******',
|
|
99
|
+
payLoanAmountMask: 'ef2160623c6fd54a013e8ff9a379de9f',
|
|
100
|
+
payLoan: '',
|
|
101
|
+
payLoanMaskSec: 'ef2160623c6fd54a013e8ff9a379de9f',
|
|
102
|
+
},
|
|
103
|
+
// 公共的菜单名称和模块编码(菜单ID)
|
|
104
|
+
meunCode: {
|
|
105
|
+
moduleCode: '00988d27e36247da91b4d5198e3d9517',
|
|
106
|
+
moduleName: '预存开户'
|
|
107
|
+
},
|
|
108
|
+
// 列表数据
|
|
109
|
+
list: [
|
|
110
|
+
{
|
|
111
|
+
username: '******',
|
|
112
|
+
usernameMask: '37e2e92d1007bb5a6fa66b98444fb3fd',
|
|
113
|
+
id: '111'
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
username: '',
|
|
117
|
+
usernameMaskSec: '37e2e92d1007bb5a6fa66b98444fb3fd',
|
|
118
|
+
id: '222'
|
|
119
|
+
},
|
|
120
|
+
]
|
|
121
|
+
};
|
|
122
|
+
},
|
|
123
|
+
components: {
|
|
124
|
+
ksDecrypt
|
|
125
|
+
},
|
|
126
|
+
methods: {
|
|
127
|
+
riskAmountBlur (val) {
|
|
128
|
+
console.log('val', val)
|
|
129
|
+
},
|
|
130
|
+
clear () {
|
|
131
|
+
console.log('333333')
|
|
132
|
+
},
|
|
133
|
+
decryptData (val, key, id) {
|
|
134
|
+
console.log('val, key, id: ', val, key, id)
|
|
135
|
+
},
|
|
136
|
+
}
|
|
137
|
+
};
|
|
138
|
+
</script>
|
|
139
|
+
|
|
140
|
+
```
|
|
Binary file
|
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="ks-file-upload">
|
|
3
|
+
<div class="upload-title">
|
|
4
|
+
{{ titleName }}({{ value.length }}/{{ maxLength }})
|
|
5
|
+
<span class="required-tip" v-if="required">*</span>
|
|
6
|
+
</div>
|
|
7
|
+
<div class="van-uploader">
|
|
8
|
+
<div class="van-uploader__wrapper">
|
|
9
|
+
<div v-for="(item, index) of value" :key="index" class="van-uploader__preview">
|
|
10
|
+
<div
|
|
11
|
+
class="van-image van-uploader__preview-image"
|
|
12
|
+
style="overflow: hidden; border-radius: 4px; border: 1px solid #f2f0f4"
|
|
13
|
+
>
|
|
14
|
+
<img
|
|
15
|
+
:src="item.url"
|
|
16
|
+
@click="previewAssets(index, value)"
|
|
17
|
+
class="van-image__img"
|
|
18
|
+
style="object-fit: cover"
|
|
19
|
+
/>
|
|
20
|
+
</div>
|
|
21
|
+
<img
|
|
22
|
+
v-if="!disabled && canDelete"
|
|
23
|
+
src="./assets/icon_close.png"
|
|
24
|
+
class="van-uploader__preview-delete"
|
|
25
|
+
@click="onDelete(index)"
|
|
26
|
+
/>
|
|
27
|
+
</div>
|
|
28
|
+
<div
|
|
29
|
+
v-if="(maxLength && value.length < maxLength) || !maxLength"
|
|
30
|
+
class="van-uploader__upload"
|
|
31
|
+
@click="onPreview"
|
|
32
|
+
>
|
|
33
|
+
<i class="van-icon van-icon-plus van-uploader__upload-icon"></i>
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
36
|
+
<ks-action-sheet
|
|
37
|
+
v-model="show"
|
|
38
|
+
:actions="actions"
|
|
39
|
+
get-container="body"
|
|
40
|
+
cancel-text="取消"
|
|
41
|
+
@select="onSelect"
|
|
42
|
+
@cancel="onCancel"
|
|
43
|
+
/>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</template>
|
|
47
|
+
|
|
48
|
+
<script>
|
|
49
|
+
const Toast = window.vant && window.vant.Toast
|
|
50
|
+
|
|
51
|
+
export default {
|
|
52
|
+
name: 'FmsKsFileUpload',
|
|
53
|
+
model: {
|
|
54
|
+
prop: 'value',
|
|
55
|
+
event: 'input',
|
|
56
|
+
},
|
|
57
|
+
props: {
|
|
58
|
+
value: {
|
|
59
|
+
type: Array,
|
|
60
|
+
default: () => [],
|
|
61
|
+
},
|
|
62
|
+
bizId: String,
|
|
63
|
+
bizCode: String,
|
|
64
|
+
maxLength: {
|
|
65
|
+
type: Number,
|
|
66
|
+
default: 9,
|
|
67
|
+
},
|
|
68
|
+
// 标题
|
|
69
|
+
titleName: {
|
|
70
|
+
type: String,
|
|
71
|
+
default: '附件',
|
|
72
|
+
},
|
|
73
|
+
// 自动获取该 bizId&bizCode 对应文件中心的文件
|
|
74
|
+
autoGetFile: {
|
|
75
|
+
type: Boolean,
|
|
76
|
+
default: false,
|
|
77
|
+
},
|
|
78
|
+
// 显示附件必填标识
|
|
79
|
+
required: {
|
|
80
|
+
type: Boolean,
|
|
81
|
+
default: false,
|
|
82
|
+
},
|
|
83
|
+
disabled: Boolean,
|
|
84
|
+
canDelete: {
|
|
85
|
+
type: Boolean,
|
|
86
|
+
default: true
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
data() {
|
|
90
|
+
return {
|
|
91
|
+
show: false,
|
|
92
|
+
actions: [],
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
watch: {
|
|
96
|
+
bizId: {
|
|
97
|
+
immediate: true,
|
|
98
|
+
handler(val) {
|
|
99
|
+
if (val && this.autoGetFile) {
|
|
100
|
+
this.getImageList()
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
created() {
|
|
106
|
+
if (window.isKsPcMiniProgram) {
|
|
107
|
+
// PC跨声环境,去掉拍照选项
|
|
108
|
+
this.actions = [{ name: '从相册选择' }]
|
|
109
|
+
} else {
|
|
110
|
+
this.actions = [{ name: '从相册选择' }, { name: '拍照' }]
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
methods: {
|
|
114
|
+
onPreview() {
|
|
115
|
+
if (this.disabled) {
|
|
116
|
+
return
|
|
117
|
+
}
|
|
118
|
+
this.show = true
|
|
119
|
+
},
|
|
120
|
+
onCancel() {
|
|
121
|
+
this.show = false
|
|
122
|
+
},
|
|
123
|
+
async onSelect(item) {
|
|
124
|
+
let fileList = null
|
|
125
|
+
try {
|
|
126
|
+
// NOTE: 此处原代码为 this.$store.commit('setPreviewFile', true),因改为组件库,所以此处改为暴露事件 beforeSelect
|
|
127
|
+
this.$emit('beforeSelect', item)
|
|
128
|
+
if (item.name === '从相册选择') {
|
|
129
|
+
// 选择照片的数量( 默认可选9张图片 )
|
|
130
|
+
const totalCount = Number(this.maxLength - this.value.length)
|
|
131
|
+
fileList = await window.ks.callFunc({
|
|
132
|
+
method: 'pickAssets',
|
|
133
|
+
params: {
|
|
134
|
+
totalCount: totalCount,
|
|
135
|
+
allowRecordVideo: false,
|
|
136
|
+
selectType: 1,
|
|
137
|
+
quality: 80,
|
|
138
|
+
},
|
|
139
|
+
})
|
|
140
|
+
} else if (item.name === '拍照') {
|
|
141
|
+
fileList = await window.ks.takeByCamera()
|
|
142
|
+
}
|
|
143
|
+
this.onCancel()
|
|
144
|
+
if (this.maxLength && fileList.length > this.maxLength) {
|
|
145
|
+
Toast('选择文件太多')
|
|
146
|
+
} else {
|
|
147
|
+
this.upload(fileList)
|
|
148
|
+
}
|
|
149
|
+
} catch (error) {
|
|
150
|
+
console.info('onSelect--error', error)
|
|
151
|
+
if (error && error.msg) {
|
|
152
|
+
Toast(error.msg)
|
|
153
|
+
}
|
|
154
|
+
this.onCancel()
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
|
|
158
|
+
async getImageList() {
|
|
159
|
+
const imgList = await this.$http('file.getByBizCodeAndBizId', '10124', {
|
|
160
|
+
bizCode: this.bizCode,
|
|
161
|
+
bizId: this.bizId,
|
|
162
|
+
})
|
|
163
|
+
this.$emit('input', imgList)
|
|
164
|
+
},
|
|
165
|
+
|
|
166
|
+
onDelete(index) {
|
|
167
|
+
let list = JSON.parse(JSON.stringify(this.value))
|
|
168
|
+
let data = list[index]
|
|
169
|
+
list.splice(index, 1)
|
|
170
|
+
this.$emit('input', list)
|
|
171
|
+
this.$http('file.deleteByBizAndId', 10124, data)
|
|
172
|
+
.then((res) => {
|
|
173
|
+
this.$emit('deleteSuccess', res, data)
|
|
174
|
+
})
|
|
175
|
+
.catch((err) => {
|
|
176
|
+
console.log(err)
|
|
177
|
+
})
|
|
178
|
+
},
|
|
179
|
+
async upload(list) {
|
|
180
|
+
let res = await window.ks.uploadAssets({
|
|
181
|
+
filePaths: list.map((item) => item.filePath),
|
|
182
|
+
fileNames: list.map((item) => item.fileName),
|
|
183
|
+
bizCode: this.bizCode,
|
|
184
|
+
bizId: this.bizId,
|
|
185
|
+
})
|
|
186
|
+
this.$emit('input', res.reverse())
|
|
187
|
+
this.$emit('uploadSuccess')
|
|
188
|
+
this.onCancel()
|
|
189
|
+
},
|
|
190
|
+
previewAssets(index, list) {
|
|
191
|
+
// NOTE: 此处原代码为 this.$store.commit('setPreviewFile', true),因改为组件库,所以此处改为暴露事件 beforePreviewAssets
|
|
192
|
+
this.$emit('beforePreviewAssets', {
|
|
193
|
+
index,
|
|
194
|
+
list,
|
|
195
|
+
})
|
|
196
|
+
let filePaths = list.map((item) => item.url)
|
|
197
|
+
window.ks.previewAssets({
|
|
198
|
+
index, // 默认从第几个资源开始浏览 index不能大于assetsPaths的长度
|
|
199
|
+
filePaths, // 接口返回的文件系统路径,或者本地路径
|
|
200
|
+
})
|
|
201
|
+
},
|
|
202
|
+
},
|
|
203
|
+
}
|
|
204
|
+
</script>
|
|
205
|
+
|
|
206
|
+
<style lang="less" scoped>
|
|
207
|
+
.ks-file-upload {
|
|
208
|
+
padding: 12px 16px 16px 16px;
|
|
209
|
+
.upload-title {
|
|
210
|
+
font-size: 14px;
|
|
211
|
+
text-align: left;
|
|
212
|
+
color: #858793;
|
|
213
|
+
.required-tip {
|
|
214
|
+
margin-top: 2px;
|
|
215
|
+
color: #f99257;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
.van-uploader {
|
|
219
|
+
padding: 0;
|
|
220
|
+
.van-uploader__wrapper {
|
|
221
|
+
margin-top: 12px;
|
|
222
|
+
}
|
|
223
|
+
.van-uploader__upload {
|
|
224
|
+
margin: 0;
|
|
225
|
+
}
|
|
226
|
+
.van-uploader__preview {
|
|
227
|
+
margin: 0 12px 8px 0;
|
|
228
|
+
}
|
|
229
|
+
.van-uploader__preview-image {
|
|
230
|
+
width: 52px;
|
|
231
|
+
height: 52px;
|
|
232
|
+
}
|
|
233
|
+
&__upload {
|
|
234
|
+
border: 0.5px dashed #c6c6d0;
|
|
235
|
+
background-color: #fff;
|
|
236
|
+
cursor: pointer;
|
|
237
|
+
border-radius: 4px;
|
|
238
|
+
width: 52px;
|
|
239
|
+
height: 52px;
|
|
240
|
+
}
|
|
241
|
+
&__preview-delete {
|
|
242
|
+
width: 18px;
|
|
243
|
+
height: 18px;
|
|
244
|
+
font-size: 18px;
|
|
245
|
+
top: -8px;
|
|
246
|
+
right: -8px;
|
|
247
|
+
bottom: unset;
|
|
248
|
+
border-radius: 100%;
|
|
249
|
+
background-color: #fff;
|
|
250
|
+
color: #969799;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
</style>
|
|
File without changes
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 62 (91390) - https://sketch.com -->
|
|
4
|
+
<title>icon_通用文件</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<g id="页面-3" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
7
|
+
<g id="10通用申请-申请表单5已撤销" transform="translate(-47.000000, -1919.000000)" fill-rule="nonzero">
|
|
8
|
+
<g id="编组-9备份-2" transform="translate(0.000000, 1880.000000)">
|
|
9
|
+
<g id="icon_通用文件" transform="translate(47.000000, 39.000000)">
|
|
10
|
+
<rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="42" height="42"></rect>
|
|
11
|
+
<g id="PPT" transform="translate(3.000000, 1.000000)">
|
|
12
|
+
<path d="M36,9.67000003 L28.82,9.67000003 C27.7154305,9.67000003 26.82,8.77456952 26.82,7.67000002 L26.82,0 L2,0 C0.895430507,0 0,0.895430507 0,2 L0,38 C0.00223279535,38.5295769 0.214412225,39.0366497 0.590000016,39.41 C0.958779535,39.792325 1.4688337,40.0057519 2,40.0001134 L34,40.0001134 C35.1045695,40.0001134 36,39.1045695 36,38 L36,9.68000002 L36,9.67000003 Z" id="路径" fill="#978AF9"></path>
|
|
13
|
+
<g id="编组-10" transform="translate(9.000000, 12.000000)">
|
|
14
|
+
<path d="M8.7133758,7.36050955 C8.91974522,7.24585987 9.17197452,7.17707006 9.42420382,7.17707006 C9.67643312,7.17707006 9.92866242,7.24585987 10.1350318,7.36050955 L18.4127389,12.1528662 C18.6191083,12.2675159 18.7796178,12.5197452 18.7796178,12.7719745 C18.7796178,13.0242038 18.6420382,13.2764331 18.4127389,13.3910828 L10.066242,18.2292994 C9.85987261,18.343949 9.60764331,18.4127389 9.35541401,18.4127389 C9.10318471,18.4127389 8.85095541,18.343949 8.64458599,18.2292994 L0.366878981,13.4140127 C0.160509554,13.2993631 3.55271368e-15,13.0471338 3.55271368e-15,12.7949045 C3.55271368e-15,12.5426752 0.137579618,12.2904459 0.366878981,12.1757962 L8.7133758,7.36050955 L8.7133758,7.36050955 Z" id="路径" fill="#BAB0FF"></path>
|
|
15
|
+
<path d="M8.7133758,0.18343949 C8.91974522,0.0687898089 9.17197452,-2.39808173e-14 9.42420382,-2.39808173e-14 C9.67643312,-2.39808173e-14 9.92866242,0.0687898089 10.1350318,0.18343949 L18.4127389,4.97579618 C18.6191083,5.09044586 18.7796178,5.34267516 18.7796178,5.59490446 C18.7796178,5.84713376 18.6420382,6.09936306 18.4127389,6.21401274 L10.066242,11.0522293 C9.85987261,11.166879 9.60764331,11.2356688 9.35541401,11.2356688 C9.10318471,11.2356688 8.85095541,11.166879 8.64458599,11.0522293 L0.366878981,6.25987261 C0.160509554,6.14522293 1.42108547e-14,5.89299363 1.42108547e-14,5.64076433 C1.42108547e-14,5.38853503 0.137579618,5.13630573 0.366878981,5.02165605 L8.7133758,0.18343949 L8.7133758,0.18343949 Z" id="路径" fill="#FFFFFF"></path>
|
|
16
|
+
</g>
|
|
17
|
+
<path d="M36,9.67562498 L28.83,9.67562498 C27.7254305,9.67562498 26.83,8.78019451 26.83,7.67562502 L26.83,0.0156249844 L36,9.67562498 Z" id="路径" fill="#BAB0FF"></path>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</g>
|
|
21
|
+
</g>
|
|
22
|
+
</g>
|
|
23
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 62 (91390) - https://sketch.com -->
|
|
4
|
+
<title>icon_excel</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<g id="页面-3" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
7
|
+
<g id="10通用申请-申请表单支持附件显示" transform="translate(-47.000000, -1874.000000)" fill-rule="nonzero">
|
|
8
|
+
<g id="编组-9备份-2" transform="translate(0.000000, 1844.000000)">
|
|
9
|
+
<g id="icon_excel" transform="translate(47.000000, 30.000000)">
|
|
10
|
+
<rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="42" height="42"></rect>
|
|
11
|
+
<g id="PPT" transform="translate(3.000000, 1.000000)">
|
|
12
|
+
<path d="M36,9.67000003 L28.82,9.67000003 C27.7154305,9.67000003 26.82,8.77456952 26.82,7.67000002 L26.82,0 L2,0 C0.895430507,0 0,0.895430507 0,2 L0,38 C0.00223279535,38.5295769 0.214412225,39.0366497 0.590000016,39.41 C0.958779535,39.792325 1.4688337,40.0057519 2,40.0001134 L34,40.0001134 C35.1045695,40.0001134 36,39.1045695 36,38 L36,9.68000002 L36,9.67000003 Z" id="路径" fill="#5ACC9B"></path>
|
|
13
|
+
<polygon id="路径" fill="#FFFFFF" points="16.2308917 20.8073248 11.3582803 14 14.7261146 14 17.9148089 18.8726115 21.2468153 14 24.5071656 14 19.5270701 20.8073248 24.7579618 28.044586 21.3542994 28.044586 17.8431529 22.8853503 14.3320064 28.080414 11 28.080414"></polygon>
|
|
14
|
+
<path d="M36,9.67562498 L28.83,9.67562498 C27.7254305,9.67562498 26.83,8.78019451 26.83,7.67562502 L26.83,0.0156249844 L36,9.67562498 Z" id="路径" fill="#BDEBD7"></path>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 62 (91390) - https://sketch.com -->
|
|
4
|
+
<title>icon_ppt</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<g id="页面-3" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
7
|
+
<g id="10通用申请-申请表单支持附件显示" transform="translate(-47.000000, -1670.000000)" fill-rule="nonzero">
|
|
8
|
+
<g id="编组-9" transform="translate(0.000000, 1640.000000)">
|
|
9
|
+
<g id="icon_ppt" transform="translate(47.000000, 30.000000)">
|
|
10
|
+
<rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="42" height="42"></rect>
|
|
11
|
+
<g id="PPT" transform="translate(3.000000, 1.000000)" fill="#F25B4C">
|
|
12
|
+
<path d="M21.8,17.775625 C21.8,19.475625 20.8,20.285625 18.8,20.315625 L15.65,20.315625 L15.65,15.405625 L18.77,15.405625 C20.76,15.455625 21.73,16.215625 21.8,17.775625 Z" id="路径"></path>
|
|
13
|
+
<path d="M36,9.68562502 L28.82,9.68562502 C27.7154305,9.68562502 26.82,8.79019451 26.82,7.685625 L26.82,0.0156249844 L2,0.0156249844 C0.895430507,0.0156249844 0,0.911055492 0,2.01562498 L0,38.015625 C0.00223279535,38.5452019 0.214412225,39.0522747 0.590000016,39.425625 C0.958779535,39.80795 1.4688337,40.0213769 2,40.0157383 L34,40.0157383 C35.1045695,40.0157383 36,39.1201945 36,38.015625 L36,9.695625 L36,9.68562502 Z M19.06,22.955625 L15.65,22.955625 L15.65,28.585625 L12.53,28.585625 L12.53,12.825625 L19.28,12.825625 C22.86,12.985625 24.78,14.615625 25,17.715625 C25,21.145625 22.94,22.895625 19.06,22.955625 Z" id="形状"></path>
|
|
14
|
+
<path d="M36,9.67562498 L28.83,9.67562498 C27.7254305,9.67562498 26.83,8.78019451 26.83,7.67562502 L26.83,0.0156249844 L36,9.67562498 Z" id="路径" opacity="0.6"></path>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 62 (91390) - https://sketch.com -->
|
|
4
|
+
<title>icon_word</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<g id="页面-3" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
7
|
+
<g id="10通用申请-申请表单支持附件显示" transform="translate(-47.000000, -1772.000000)" fill-rule="nonzero">
|
|
8
|
+
<g id="编组-9备份" transform="translate(0.000000, 1742.000000)">
|
|
9
|
+
<g id="icon_word" transform="translate(47.000000, 30.000000)">
|
|
10
|
+
<rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="42" height="42"></rect>
|
|
11
|
+
<g id="PPT" transform="translate(3.000000, 1.000000)">
|
|
12
|
+
<path d="M26.82,0.0156249844 L26.82,7.685625 C26.82,8.79019451 27.7154305,9.68562502 28.82,9.68562502 L28.82,9.68562502 L36,9.68562502 L36,38.015625 C36,39.1201945 35.1045695,40.0157383 34,40.0157383 L34,40.0157383 L2,40.0157383 C1.4688337,40.0213769 0.958779535,39.80795 0.590000016,39.425625 C0.214412225,39.0522747 0.00223279535,38.5452019 0,38.015625 L0,38.015625 L0,2.01562498 C0,0.911055492 0.895430507,0.0156249844 2,0.0156249844 L2,0.0156249844 L26.82,0.0156249844 Z M11.2072929,14.0285714 L8.94375,14.0285714 L12.7234072,29.1142857 L14.7832928,29.1142857 L17.78535,18.0427428 L17.9211214,18.0427428 L20.9327786,29.1142857 L22.9830643,29.1142857 L26.7723214,14.0285714 L24.5087786,14.0285714 L21.9435214,25.5808 L21.80775,25.5808 L18.8632929,14.0285714 L16.8431786,14.0285714 L13.9186072,25.5808 L13.7828357,25.5808 L11.2072929,14.0285714 Z" id="形状" fill="#2C97FF"></path>
|
|
13
|
+
<path d="M36,9.67562498 L28.83,9.67562498 C27.7254305,9.67562498 26.83,8.78019451 26.83,7.67562502 L26.83,0.0156249844 L36,9.67562498 Z" id="路径" fill="#80C0FF"></path>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</svg>
|
|
Binary file
|
|
Binary file
|