浏览代码

Modal.update失效解决,固定vue版本

刘洋 10 月之前
父节点
当前提交
b664bcf424
共有 3 个文件被更改,包括 327 次插入331 次删除
  1. 1 1
      package.json
  2. 1 1
      src/lib/watermark.ts
  3. 325 329
      yarn.lock

+ 1 - 1
package.json

@@ -36,7 +36,7 @@
     "requestretry": "^3.1.0",
     "thinkjs-util": ">=0.0.1",
     "vertx": "^0.0.1-security",
-    "vue": "^3.2.6",
+    "vue": "3.2.6",
     "vue-router": "^4.0.0-0"
   },
   "devDependencies": {

+ 1 - 1
src/lib/watermark.ts

@@ -190,7 +190,7 @@ export async function addWatermark(
     // if (student.inspector) {
     //   drawText(x, (y += height), "复核人: " + student.inspector.loginName);
     // }
-    if (student.inspector?.length) {
+    if (student.inspector && student.inspector.length) {
       const allNameStr = student.inspector
         .map((item: any) => item.loginName)
         .join("、");

文件差异内容过多而无法显示
+ 325 - 329
yarn.lock


部分文件因为文件数量过多而无法显示