|
@@ -133,6 +133,12 @@ const config = computed(() => {
|
|
|
},
|
|
|
{
|
|
|
attrs: {
|
|
|
+ label: "材质",
|
|
|
+ prop: "materialQuality",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
label: "单位",
|
|
|
prop: "unit",
|
|
|
},
|
|
@@ -264,7 +270,11 @@ const getList = async (req = {}) => {
|
|
|
proxy
|
|
|
.post("/productInfo/pageByWdly", sourceList.value.pagination)
|
|
|
.then((message) => {
|
|
|
- sourceList.value.data = message.rows.map((x) => ({ ...x, fileList: [] }));
|
|
|
+ sourceList.value.data = message.rows.map((x) => ({
|
|
|
+ ...x,
|
|
|
+ fileList: [],
|
|
|
+ ...JSON.parse(x.victoriatouristJson),
|
|
|
+ }));
|
|
|
sourceList.value.pagination.total = message.total;
|
|
|
setTimeout(() => {
|
|
|
loading.value = false;
|