@yoooloo42/joker 1.0.150 → 1.0.152
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/dist/index.cjs.js +13 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +13 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -22651,7 +22651,6 @@ const refresh = async _ref => {
|
|
|
22651
22651
|
page: scopeThis.query && scopeThis.query.currentPage ? scopeThis.query.currentPage : 1
|
|
22652
22652
|
}
|
|
22653
22653
|
});
|
|
22654
|
-
console.log('测试 000', result);
|
|
22655
22654
|
if (result.code === 0) {
|
|
22656
22655
|
scopeThis.tableData = {
|
|
22657
22656
|
data: result.data,
|
|
@@ -41973,7 +41972,7 @@ const hdl = {
|
|
|
41973
41972
|
if (col.hdlMouseover) {
|
|
41974
41973
|
col.hdlMouseover({scopeThis: scopeThis_box, row, col});
|
|
41975
41974
|
} else {
|
|
41976
|
-
|
|
41975
|
+
tableProps_box.table.cellTooltip = [];
|
|
41977
41976
|
}
|
|
41978
41977
|
},
|
|
41979
41978
|
download({row, col}) {
|
|
@@ -42499,6 +42498,18 @@ const tableProps_box = vue.reactive(unclassified.deepClone.deepMerge(
|
|
|
42499
42498
|
props.myProps
|
|
42500
42499
|
));
|
|
42501
42500
|
|
|
42501
|
+
const a = props.modelValue;
|
|
42502
|
+
vue.watch(a, function (newVal, oldVal) {
|
|
42503
|
+
|
|
42504
|
+
console.log('测试 222', newVal);
|
|
42505
|
+
|
|
42506
|
+
});
|
|
42507
|
+
vue.watch(tableData_box, function (newVal, oldVal) {
|
|
42508
|
+
|
|
42509
|
+
console.log('测试 333', newVal);
|
|
42510
|
+
|
|
42511
|
+
});
|
|
42512
|
+
|
|
42502
42513
|
const scopeThis_box = vue.reactive(props.scopeThis);
|
|
42503
42514
|
|
|
42504
42515
|
return (_ctx, _cache) => {
|