vue2-client 1.19.21 → 1.19.22
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/package.json
CHANGED
|
@@ -985,7 +985,7 @@ export default {
|
|
|
985
985
|
default: null
|
|
986
986
|
},
|
|
987
987
|
// 外部数据(通过 XAddNativeForm 的 provide 传递)
|
|
988
|
-
|
|
988
|
+
getExternalData: {
|
|
989
989
|
default: () => ({})
|
|
990
990
|
}
|
|
991
991
|
},
|
|
@@ -994,7 +994,7 @@ export default {
|
|
|
994
994
|
* 获取外部数据
|
|
995
995
|
* @returns {Object} 外部扩展数据对象 比如收费表单中俄的 用户信息要参与表单判断
|
|
996
996
|
*/
|
|
997
|
-
|
|
997
|
+
getExtData() {
|
|
998
998
|
return this._getExternalData() || {}
|
|
999
999
|
},
|
|
1000
1000
|
// 处理 queryParams 结果并更新 rowChooseFixedQueryValue
|