|
|
@ -11,7 +11,8 @@ |
|
|
|
> |
|
|
|
> |
|
|
|
<div style="width: 96%;margin:0 auto 30px;border-bottom: 1px solid #e8e8e8;padding-bottom: 30px"> |
|
|
|
<div style="width: 96%;margin:0 auto 30px;border-bottom: 1px solid #e8e8e8;padding-bottom: 30px"> |
|
|
|
<h1 style="text-align: center;margin-bottom: 30px;border-bottom: 1px solid #e8e8e8;padding-bottom: 20px">黄淮学院服装智能制造管理平台 - <span>基本工序</span></h1> |
|
|
|
<h1 style="text-align: center;margin-bottom: 30px;border-bottom: 1px solid #e8e8e8;padding-bottom: 20px">黄淮学院服装智能制造管理平台 - <span>基本工序</span></h1> |
|
|
|
<!--组件--><zyProcess :data="data"></zyProcess> |
|
|
|
<!-- 基本工序--> |
|
|
|
|
|
|
|
<zyProcess :data="ProcessData"></zyProcess> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<!-- <a-card :title="`动作`+(index+1)" v-for="(item,index) in data.zyClothAction" :key="item.id" :headStyle="headStyle">--> |
|
|
|
<!-- <a-card :title="`动作`+(index+1)" v-for="(item,index) in data.zyClothAction" :key="item.id" :headStyle="headStyle">--> |
|
|
|
<!-- <div style="width:100%;height:20px;display:flex;font-size:18px">--> |
|
|
|
<!-- <div style="width:100%;height:20px;display:flex;font-size:18px">--> |
|
|
@ -26,16 +27,25 @@ |
|
|
|
<!-- </table>--> |
|
|
|
<!-- </table>--> |
|
|
|
<!-- </div>--> |
|
|
|
<!-- </div>--> |
|
|
|
<!-- </a-card>--> |
|
|
|
<!-- </a-card>--> |
|
|
|
|
|
|
|
<!-- 基础动作--> |
|
|
|
<div style="width: 96%;margin:0 auto 30px"> |
|
|
|
<div style="width: 96%;margin:0 auto 30px"> |
|
|
|
<h2 style="text-align: left;margin-bottom: 30px;border-bottom: 1px solid #e8e8e8;padding-bottom: 20px">基础动作</h2> |
|
|
|
<h2 style="text-align: left;margin-bottom: 30px;border-bottom: 1px solid #e8e8e8;padding-bottom: 20px">基础动作</h2> |
|
|
|
|
|
|
|
<basicAction :tableModel="basicActionData"></basicAction> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div style="width: 96%;margin:0 auto 30px"> |
|
|
|
|
|
|
|
<h2 style="text-align: left;margin-bottom: 30px;border-bottom: 1px solid #e8e8e8;padding-bottom: 20px">工序面料</h2> |
|
|
|
|
|
|
|
<processFabric :tableModel="accessoriesData"></processFabric> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
</a-modal> |
|
|
|
</a-modal> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<script> |
|
|
|
<script> |
|
|
|
import zyProcess from '@/components/procedure/zyProcess' |
|
|
|
import zyProcess from '@/components/procedure/zyProcess' |
|
|
|
|
|
|
|
import basicAction from '@/components/procedure/basicAction' |
|
|
|
|
|
|
|
import processFabric from '@/components/procedure/processFabric' |
|
|
|
export default { |
|
|
|
export default { |
|
|
|
components:{zyProcess}, |
|
|
|
components:{zyProcess,basicAction,processFabric}, |
|
|
|
data() { |
|
|
|
data() { |
|
|
|
return{ |
|
|
|
return{ |
|
|
|
ModalText: 'Content of the modal', |
|
|
|
ModalText: 'Content of the modal', |
|
|
@ -46,9 +56,12 @@ |
|
|
|
img1:require('@/assets/9-2.png'),//默认图片 |
|
|
|
img1:require('@/assets/9-2.png'),//默认图片 |
|
|
|
mp4:'', |
|
|
|
mp4:'', |
|
|
|
data:{}, |
|
|
|
data:{}, |
|
|
|
|
|
|
|
ProcessData:{}, |
|
|
|
|
|
|
|
basicActionData:[], |
|
|
|
|
|
|
|
accessoriesData:[], |
|
|
|
headStyle:{ |
|
|
|
headStyle:{ |
|
|
|
height:'10px' |
|
|
|
height:'10px' |
|
|
|
} |
|
|
|
}, |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
created(){ |
|
|
|
created(){ |
|
|
@ -59,8 +72,12 @@ |
|
|
|
this.$http.get('/base/zyProcess/queryById?id='+id).then( |
|
|
|
this.$http.get('/base/zyProcess/queryById?id='+id).then( |
|
|
|
res=>{ |
|
|
|
res=>{ |
|
|
|
this.data = res.result |
|
|
|
this.data = res.result |
|
|
|
|
|
|
|
this.ProcessData = res.result.zyProcess |
|
|
|
|
|
|
|
this.basicActionData = res.result.zyProcessAction |
|
|
|
|
|
|
|
this.accessoriesData = res.result.zyProcessAccessories |
|
|
|
console.log('this.data') |
|
|
|
console.log('this.data') |
|
|
|
console.log(this.data) |
|
|
|
console.log(this.data) |
|
|
|
|
|
|
|
console.log(this.accessoriesData) |
|
|
|
this.img = "http://10.100.200.112/jeecg-boot/sys/common/static/"+this.data.image; |
|
|
|
this.img = "http://10.100.200.112/jeecg-boot/sys/common/static/"+this.data.image; |
|
|
|
this.mp4 = "http://10.100.200.112/jeecg-boot/sys/common/static/"+this.data.vedio; |
|
|
|
this.mp4 = "http://10.100.200.112/jeecg-boot/sys/common/static/"+this.data.vedio; |
|
|
|
} |
|
|
|
} |
|
|
|