|
|
|
@ -48,20 +48,24 @@ |
|
|
|
|
<!-- </table>--> |
|
|
|
|
<a-spin :spinning="confirmLoading"> |
|
|
|
|
<h3 style="width: 98%;;margin:0px auto">款式详情</h3> |
|
|
|
|
<a-table style="width: 98%;font-size:14px;margin:10px auto" :columns="columns1" :data-source="data1" bordered rowKey="nums" :pagination="false"> |
|
|
|
|
<a-table style="width: 98%;font-size:14px;margin:10px auto" :columns="columns1" :data-source="data1" bordered |
|
|
|
|
rowKey="nums" :pagination="false"> |
|
|
|
|
</a-table> |
|
|
|
|
|
|
|
|
|
<h3 style="width: 98%;;margin:20px auto 0">管理模块</h3> |
|
|
|
|
<a-table style="width: 98%;font-size:14px;margin:10px auto 0" :columns="columns" :data-source="data" rowKey="id" bordered :pagination="false"> |
|
|
|
|
<a-table style="width: 98%;font-size:14px;margin:10px auto 0" :columns="columns" :data-source="data" rowKey="id" |
|
|
|
|
bordered :pagination="false"> |
|
|
|
|
</a-table> |
|
|
|
|
|
|
|
|
|
<h3 style="width: 98%;;margin:20px auto 0">管理面料</h3> |
|
|
|
|
<a-table style="width: 98%;font-size:14px;margin:10px auto 0" :columns="columns2" :data-source="data2" rowKey="id" bordered :pagination="false"> |
|
|
|
|
<a-table style="width: 98%;font-size:14px;margin:10px auto 0" :columns="columns2" :data-source="data2" |
|
|
|
|
rowKey="id" bordered :pagination="false"> |
|
|
|
|
|
|
|
|
|
</a-table> |
|
|
|
|
|
|
|
|
|
<h3 style="width: 98%;;margin:20px auto 0">管理辅料</h3> |
|
|
|
|
<a-table style="width: 98%;font-size:14px;margin:10px auto 0" :columns="columns3" :data-source="data3" rowKey="id" bordered :pagination="false"> |
|
|
|
|
<a-table style="width: 98%;font-size:14px;margin:10px auto 0" :columns="columns3" :data-source="data3" |
|
|
|
|
rowKey="id" bordered :pagination="false"> |
|
|
|
|
|
|
|
|
|
</a-table> |
|
|
|
|
|
|
|
|
@ -71,7 +75,8 @@ |
|
|
|
|
<!-- </a-table>--> |
|
|
|
|
|
|
|
|
|
<h3 style="width: 98%;;margin:20px auto 0">管理工序</h3> |
|
|
|
|
<a-table style="width: 98%;font-size:14px;margin:10px auto 0" :columns="columns5" :data-source="data5" rowKey="id" bordered :pagination="false"> |
|
|
|
|
<a-table style="width: 98%;font-size:14px;margin:10px auto 0" :columns="columns5" :data-source="data5" |
|
|
|
|
rowKey="id" bordered :pagination="false"> |
|
|
|
|
|
|
|
|
|
</a-table> |
|
|
|
|
</a-spin> |
|
|
|
@ -116,7 +121,7 @@ |
|
|
|
|
dataIndex: 'createTime', |
|
|
|
|
key: 'createTime', |
|
|
|
|
align: 'center' |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
]; |
|
|
|
|
const columns = [ |
|
|
|
|
{ |
|
|
|
@ -340,8 +345,7 @@ |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
visible: false, |
|
|
|
|
model:{ |
|
|
|
|
}, |
|
|
|
|
model: {}, |
|
|
|
|
confirmLoading: true, |
|
|
|
|
// 管理模块 |
|
|
|
|
data: [], |
|
|
|
@ -389,9 +393,10 @@ |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
this.confirmLoading = false |
|
|
|
|
if(this.data1.length == 0){ |
|
|
|
|
this.data1.push(res.result.zyClothsStyle) |
|
|
|
|
if (this.data1.length === 0) { |
|
|
|
|
this.data1.push(res.result.zyClothsStyles) |
|
|
|
|
} |
|
|
|
|
this.data1 = res.result.zyClothsStyles |
|
|
|
|
this.data2 = res.result.zyStyleFabricList |
|
|
|
|
this.data3 = res.result.zyStyleAccessoriesList |
|
|
|
|
this.data = res.result.zyStyleModuleList |
|
|
|
@ -411,7 +416,17 @@ |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
<style scoped> |
|
|
|
|
.table{border-color:#d9d9d9;border-radius: 3px} |
|
|
|
|
.table td{padding: 10px 20px;max-width: 380px; } |
|
|
|
|
.table td span{color: #333} |
|
|
|
|
.table { |
|
|
|
|
border-color: #d9d9d9; |
|
|
|
|
border-radius: 3px |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.table td { |
|
|
|
|
padding: 10px 20px; |
|
|
|
|
max-width: 380px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.table td span { |
|
|
|
|
color: #333 |
|
|
|
|
} |
|
|
|
|
</style> |