zl程序教程

您现在的位置是:首页 >  其它

当前栏目

自定义数据

定义数据
2023-09-14 09:06:32 时间
if (_temp.dataView) {
          const _json = JSON.parse(_temp.dataView);
          const _tempArr = [];
          Object.keys(_json).forEach((key, index) => {
            _tempArr.push({
              value: _json[key],
              name: key,
            });
          });
          _this.deviceDataView = [..._tempArr];
        }