hookehuyr

fix 电子签名移除hash参数

1 <!-- 1 <!--
2 * @Date: 2023-03-29 17:44:24 2 * @Date: 2023-03-29 17:44:24
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2023-04-18 15:29:10 4 + * @LastEditTime: 2023-06-29 19:06:27
5 * @FilePath: /data-table/src/components/SignField/MyComponent.vue 5 * @FilePath: /data-table/src/components/SignField/MyComponent.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -144,7 +144,7 @@ const handleUpload = async (files, filename) => { ...@@ -144,7 +144,7 @@ const handleUpload = async (files, filename) => {
144 // 获取七牛token 144 // 获取七牛token
145 const { token, key, code } = await qiniuTokenAPI({ 145 const { token, key, code } = await qiniuTokenAPI({
146 name: filename, 146 name: filename,
147 - hash, 147 + // hash,
148 }); 148 });
149 // 文件上传七牛云 149 // 文件上传七牛云
150 const imgUrl = await uploadQiniu(files, token, filename); 150 const imgUrl = await uploadQiniu(files, token, filename);
......