bhd-components 0.6.9 → 0.7.2
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 +1 -1
- package/dist/{a1012a79.esm.es5.production.js → 03434506.esm.es5.production.js} +1 -1
- package/dist/{769f0c13.esm.es5.development.js → 86a6ab15.esm.es5.development.js} +76 -76
- package/dist/index.esm.es5.development.css +774 -752
- package/dist/index.esm.es5.development.js +349 -282
- package/dist/index.esm.es5.production.css +1 -1
- package/dist/index.esm.es5.production.js +1 -1
- package/es2017/customerService/common.module.less +1391 -0
- package/es2017/customerService/historyFun.js +2 -2
- package/es2017/customerService/index.js +330 -261
- package/es2017/customerService/index.module.less +25 -12
- package/es2017/customerService/index2.module.less +27 -9
- package/esm/customerService/common.module.less +1391 -0
- package/esm/customerService/historyFun.js +2 -2
- package/esm/customerService/index.js +344 -277
- package/esm/customerService/index.module.less +25 -12
- package/esm/customerService/index2.module.less +27 -9
- package/package.json +1 -1
|
@@ -110,7 +110,7 @@ const HistoryFun = (props)=>{
|
|
|
110
110
|
pageNumber = 1;
|
|
111
111
|
}
|
|
112
112
|
console.log(roomId, pageNumber, id, receiver, "第几页第几页第几页第几页第几页第几页");
|
|
113
|
-
loadSpecifiedData(roomId, pageNumber, id, receiver);
|
|
113
|
+
loadSpecifiedData(roomId, pageNumber, id, receiver, keyWordProblem);
|
|
114
114
|
onClose();
|
|
115
115
|
setKeyWordProblem("");
|
|
116
116
|
setTotalData([]);
|
|
@@ -373,7 +373,7 @@ const HistoryFun = (props)=>{
|
|
|
373
373
|
return /*#__PURE__*/ _jsxs(_Fragment, {
|
|
374
374
|
children: [
|
|
375
375
|
/*#__PURE__*/ _jsxs("div", {
|
|
376
|
-
className: styles.list_summary
|
|
376
|
+
className: `${styles.list_summary} ${item.show ? styles.list_summary_active : ""}`,
|
|
377
377
|
id: item.roomId,
|
|
378
378
|
onClick: ()=>{
|
|
379
379
|
if (item.count == 1) {
|