zlisen 4 年 前
コミット
a61f3221a7
共有2 個のファイルを変更した8 個の追加0 個の削除を含む
  1. 2
    0
      package.json
  2. 6
    0
      src/common/constants.js

+ 2
- 0
package.json ファイルの表示

53
     "@umijs/route-utils": "^1.0.33",
53
     "@umijs/route-utils": "^1.0.33",
54
     "ali-oss": "^6.15.2",
54
     "ali-oss": "^6.15.2",
55
     "antd": "^4.12.0",
55
     "antd": "^4.12.0",
56
+    "array-move": "^3.0.1",
56
     "classnames": "^2.2.6",
57
     "classnames": "^2.2.6",
57
     "lodash": "^4.17.11",
58
     "lodash": "^4.17.11",
58
     "md5": "^2.3.0",
59
     "md5": "^2.3.0",
62
     "react-dev-inspector": "^1.1.1",
63
     "react-dev-inspector": "^1.1.1",
63
     "react-dom": "^17.0.0",
64
     "react-dom": "^17.0.0",
64
     "react-helmet-async": "^1.0.4",
65
     "react-helmet-async": "^1.0.4",
66
+    "react-sortable-hoc": "^2.0.0",
65
     "umi": "^3.4.1",
67
     "umi": "^3.4.1",
66
     "umi-request": "^1.0.8",
68
     "umi-request": "^1.0.8",
67
     "wangeditor": "^4.6.15"
69
     "wangeditor": "^4.6.15"

+ 6
- 0
src/common/constants.js ファイルの表示

1
+const stateOptions = {
2
+  0: '未上架',
3
+  1: '已上架',
4
+};
5
+
6
+export { stateOptions };