cyy-vue-material 1.0.34 → 1.0.35
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
|
@@ -75,9 +75,8 @@ export default {
|
|
|
75
75
|
this.imgUrl = getUrl(this);
|
|
76
76
|
console.log("this.imgUrl", this.imgUrl);
|
|
77
77
|
const { goods = [] } = this.props;
|
|
78
|
-
const
|
|
79
|
-
const paramObj = {
|
|
80
|
-
console.log("🐽🐽🐽🐽🐽🐽🐽🐽m", goodsCode);
|
|
78
|
+
const skuCode = goods.toString();
|
|
79
|
+
const paramObj = { skuCodeStr: skuCode };
|
|
81
80
|
const res = await fetchGoodImpl(this, paramObj);
|
|
82
81
|
this.listArr = get(res, "list", []);
|
|
83
82
|
console.log("🐽🐽🐽🐽🐽🐽🐽🐽w", this.listArr);
|
|
@@ -209,9 +208,10 @@ button {
|
|
|
209
208
|
border-radius: 5px;
|
|
210
209
|
background-color: red;
|
|
211
210
|
color: white;
|
|
212
|
-
min-width: 74px;
|
|
211
|
+
// min-width: 74px;
|
|
213
212
|
margin: 0.5em 0.25em 0;
|
|
214
213
|
align-self: flex-end;
|
|
214
|
+
font-size: 12px;
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
217
|
}
|