doctor-admin-components 1.0.14-beta.72 → 1.0.14-beta.73

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/README.md CHANGED
@@ -15,36 +15,13 @@
15
15
  npm install
16
16
  ```
17
17
 
18
- ### 运行项目可以开调试模块(example 文件)
19
-
20
- ```
21
- npm run serve
22
- ```
23
-
24
- ### 打包(组件修改在 packages 文件中)
25
-
26
- ```
27
- npm run lib
28
- ```
29
-
30
- ### 调试
31
-
32
- package.json 文件 入口改为:"main": "packages/index.js"
33
-
34
- #### 把模块链接到全局
35
-
18
+ #### 1 把公共模块链接到全局
36
19
  ```
37
20
  sudo npm link
38
21
  ```
39
22
 
40
- #### 模块取消软链接
41
-
42
- ```
43
- sudo npm unlink doctor-admin-components
44
- ```
45
-
46
- #### 把模块链接到项目
47
23
 
24
+ #### 2 把公共模块链接到项目中
48
25
  ```
49
26
  npm link doctor-admin-components --legacy-peer-deps
50
27
  ```
@@ -57,34 +34,31 @@ npm unlink doctor-admin-components --legacy-peer-deps
57
34
 
58
35
  ### 发布包
59
36
 
60
- ```
61
- package.json文件 入口改为:"main": "lib/index.umd.min.js"
62
-
63
- 登录npm账号
37
+ 1登录npm账号
38
+ 确保是npm镜像
39
+ nrm ls 查看镜像列表
40
+ npm ---------- https://registry.npmjs.org/
41
+ yarn --------- https://registry.yarnpkg.com/
42
+ tencent ------ https://mirrors.cloud.tencent.com/npm/
43
+ cnpm --------- https://r.cnpmjs.org/
44
+ taobao ------- https://registry.npmmirror.com/
45
+ npmMirror ---- https://skimdb.npmjs.com/registry/
46
+ nrm use npm
64
47
 
65
48
  npm login
49
+ 填写信息
50
+ Username: xizaozao
51
+ Password: 158394933000abc
52
+ Email: (this IS public) 3316756985@qq.com
53
+ 如果出现这个:联系我
54
+ Enter one-time password:
66
55
 
67
- 1 npm run lib
68
- 2 修改package.json里的 version
69
- 2.1 调试版本格式:"1.0.0-beta.11"
70
- npm publish --tag=beta
71
- 2.2 正式版本格式:"1.0.0"
72
- npm publish
73
- ```
74
-
75
- ### Customize configuration
76
-
77
- See [Configuration Reference](https://cli.vuejs.org/config/).
78
-
79
- VDistpicker
56
+ 2 发布
57
+ 修改package.json里的 version
58
+ 调试版本格式:"1.0.0-beta.11"
59
+ npm publish --tag=beta
80
60
  ```
81
- <VDistpicker :hideArea="true" @selected="onSelected"></VDistpicker>
82
- #### 重新编辑
83
- <VDistpicker :hideArea="true" @selected="onSelected" :province="placeholders.province" :city="placeholders.city"></VDistpicker>
84
-
85
- ```
86
-
87
- https://npmmirror.com/package/doctor-admin-components/versions?
88
61
 
89
62
 
90
- npm config set proxy http://127.0.0.1:7890
63
+ 3 拉取最新版本镜像 点击同步 可能会有延迟
64
+ https://npmmirror.com/package/doctor-admin-components/versions?version=1.0.14-beta.72
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "doctor-admin-components",
3
3
  "version1": "1.0.11",
4
- "version": "1.0.14-beta.72",
4
+ "version": "1.0.14-beta.73",
5
5
  "private": false,
6
6
  "main1": "lib/index.umd.min.js",
7
7
  "main": "packages/index.js",
@@ -131,6 +131,7 @@
131
131
  <el-descriptions-item label="Partial Shipment"> {{ form.partialShipment }}</el-descriptions-item>
132
132
  <el-descriptions-item label="Transshipment"> {{ form.transshipment }}</el-descriptions-item>
133
133
  <el-descriptions-item label="Quality" v-if="form.qualityCertificateSwitch">{{ form.qualityCertificate }}</el-descriptions-item>
134
+ <el-descriptions-item label="Customs Rejection" v-if="form.returnedBearer">{{ form.returnedBearer && form.returnedBearer.toUpperCase() }} shall bear the return costs if goods are not in compliance with the required standards of the import country and are rejected by customs authoritie</el-descriptions-item>
134
135
  <el-descriptions-item label="Claim" v-if="form.claimSwitch">
135
136
  <div v-html="form.claim" style="white-space: pre-wrap; word-break: break-word;"></div>
136
137
  </el-descriptions-item>