vue2-client 1.2.19 → 1.2.20

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/CHANGELOG.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
- **##1.2.16 - 1.2.18 -2022-03-25 @朱子峰**
4
+ **##1.2.17 - 1.2.19 -2022-03-25 @朱子峰**
5
5
  - 问题修复:
6
6
  - [钉钉消息推送]:将类别字段从int修改为String,直接传字典中的值
7
7
  - 功能修改:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.2.19",
3
+ "version": "1.2.20",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -663,7 +663,8 @@
663
663
  },
664
664
  // 控制关闭工单按钮可用状态
665
665
  closeBtnDisable () {
666
- return this.step === 0 || this.disableCloseBtn || this.details.id != this.currUser.id
666
+ // TODO 改变对比方式,改为用名称对比
667
+ return this.step === 0 || this.disableCloseBtn || this.details.name != this.currUser.ename
667
668
  },
668
669
  // 优先级文字显示
669
670
  showPriority () {