| | |
| | | if(res.code==200){ |
| | | productIdData.value=deepClone(res.data.data) |
| | | produceList.value = deepClone(res.data.data) |
| | | |
| | | console.log(produceList.value) |
| | | delivery.value=deepClone(res.data.delivery) |
| | | money.value=deepClone(res.data.money) |
| | | produceList.value.forEach(item => { |
| | |
| | | <th style="width: 10%;">面积</th> |
| | | <th style="width: 10%;">单价</th> |
| | | <th style="width: 12%;">金额</th> |
| | | <th style="width: 20%;" colspan="2">加工要求</th> |
| | | <th v-if="company.showDeliveryCreator" style="width: 20%;" colspan="2">加工要求</th> |
| | | <th v-if="!company.showDeliveryCreator" style="width: 10%;" colspan="1">加工要求</th> |
| | | <th v-if="!company.showDeliveryCreator" style="width: 10%;" colspan="1">备注</th> |
| | | </tr> |
| | | <template v-for="(item, index) in produceList" :key="index" > |
| | | <tr> |
| | |
| | | <td>{{items.compute_gross_area}}</td> |
| | | <td>{{items.price}}</td> |
| | | <td>{{items.gross_amount}}</td> |
| | | <td colspan="2">{{items.processingNote}}</td> |
| | | <td v-if="company.showDeliveryCreator" colspan="2">{{items.processingNote}}</td> |
| | | <td v-if="!company.showDeliveryCreator" >{{items.processingNote}}</td> |
| | | <td v-if="!company.showDeliveryCreator" >{{items.remarks}}</td> |
| | | </tr> |
| | | <tr class="day-in" > |
| | | <td style="font-size: 15px;font-weight: bold;" colspan="3">小计:</td> |