突然提示 is not hexColor
发布于 7 年前 作者 zhongna 10315 次浏览 来自 问答

突然就提示错误,

VM13:1 money/pages/order/index.json: [“backgroundColor”]: “f0f0f0” is not hexColor

之前好好的,而且这个json文件没有被改过,代码如下:

{
  "enablePullDownRefresh": true,
  "navigationBarBackgroundColor": "#fff",
  "navigationBarTextStyle": "black",
  "navigationBarTitleText": "优惠",
  "backgroundColor": "f1f1f1",
  "usingComponents": {
    "barrage":"/component/barrage/barrage"
  }
}
2 回复

f0f0f0 不是十六进制色码改一下。如:#436EEE

  "backgroundColor": "#f1f1f1"
回到顶部