@airpower/web 2.0.3 → 2.0.4
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/main.js +2 -2
- package/dist/web.css +4 -4
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -13895,7 +13895,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
13895
13895
|
setup(__props) {
|
|
13896
13896
|
const props = __props;
|
|
13897
13897
|
const showMoney = computed(() => {
|
|
13898
|
-
const precision =
|
|
13898
|
+
const precision = 1e6;
|
|
13899
13899
|
let number = props.money * precision;
|
|
13900
13900
|
if (props.direction === "up") {
|
|
13901
13901
|
number = Math.ceil(number);
|
|
@@ -13920,7 +13920,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
13920
13920
|
};
|
|
13921
13921
|
}
|
|
13922
13922
|
});
|
|
13923
|
-
const AMoney = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-
|
|
13923
|
+
const AMoney = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-635845fe"]]);
|
|
13924
13924
|
class QueryPage extends RootModel {
|
|
13925
13925
|
/**
|
|
13926
13926
|
* ### 分页页数
|
package/dist/web.css
CHANGED
|
@@ -915,7 +915,7 @@ textarea {
|
|
|
915
915
|
height: 10px;
|
|
916
916
|
margin-right: -15px;
|
|
917
917
|
border-radius: 100%;
|
|
918
|
-
}.web-money[data-v-
|
|
918
|
+
}.web-money[data-v-635845fe] {
|
|
919
919
|
display: flex;
|
|
920
920
|
flex-direction: row;
|
|
921
921
|
align-items: flex-end;
|
|
@@ -923,16 +923,16 @@ textarea {
|
|
|
923
923
|
width: auto;
|
|
924
924
|
flex: none;
|
|
925
925
|
}
|
|
926
|
-
.web-money[data-v-
|
|
926
|
+
.web-money[data-v-635845fe] .el-link__inner {
|
|
927
927
|
display: flex;
|
|
928
928
|
flex-direction: row;
|
|
929
929
|
align-items: center;
|
|
930
930
|
justify-content: flex-end;
|
|
931
931
|
}
|
|
932
|
-
.web-money .money[data-v-
|
|
932
|
+
.web-money .money[data-v-635845fe] {
|
|
933
933
|
font-weight: bold;
|
|
934
934
|
}
|
|
935
|
-
.web-money .prefix[data-v-
|
|
935
|
+
.web-money .prefix[data-v-635845fe] {
|
|
936
936
|
color: #999;
|
|
937
937
|
font-size: 12px;
|
|
938
938
|
}.web-page {
|