|
|
@@ -262,6 +262,11 @@ export default {
|
|
|
type: Boolean,
|
|
|
default: false
|
|
|
},
|
|
|
+ // 修改流程时间
|
|
|
+ timeModification: {
|
|
|
+ type: Boolean,
|
|
|
+ default: false
|
|
|
+ },
|
|
|
mainCode: String, // 主表名
|
|
|
params: Object // 参数
|
|
|
},
|
|
|
@@ -574,6 +579,11 @@ export default {
|
|
|
* 获取真实的权限
|
|
|
*/
|
|
|
getRealRights (rights) {
|
|
|
+ // 点击体系运行记录盒修改数据,子表返回状态可编辑
|
|
|
+ if (!this.timeModification) {
|
|
|
+ return 'e'
|
|
|
+ }
|
|
|
+
|
|
|
if (this.tableReadonly) {
|
|
|
return rights === FormOptions.t.PERMISSIONS.HIDE ? rights : FormOptions.t.PERMISSIONS.READ
|
|
|
} else {
|