Commit 418a8e19 authored by 沈翠玲's avatar 沈翠玲

编排单号颜色改为蓝色

parent 0e11dcd9
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
</u-form> </u-form>
</view> </view>
<view class="prod-body-left-task"> <view class="prod-body-left-task">
<zb-table ref="zbtable" :columns="tableColumn" :stripe="true" rowKey="taskWorkunitId" <zb-table ref="zbtable" :columns="tableColumn" :stripe="true" rowKey="taskWorkunitId" :cellStyle="cellStyle"
:isTrClassStyle="isTrClassStyle" @rowClick="rowClick" @toggleRowSelection="toggleRowSelection" :isTrClassStyle="isTrClassStyle" @rowClick="rowClick" @toggleRowSelection="toggleRowSelection"
@toggleAllSelection="toggleAllSelection" :border="true" :data="tableData"></zb-table> @toggleAllSelection="toggleAllSelection" :border="true" :data="tableData"></zb-table>
</view> </view>
...@@ -1476,6 +1476,12 @@ export default { ...@@ -1476,6 +1476,12 @@ export default {
} }
}, },
methods: { methods: {
cellStyle ({ row,column,rowIndex,columnIndex }) {
if(columnIndex === 1) {
return {color: '#3578ff !important'}
}
return ''
},
handleChangePackNum(feedback, i) { handleChangePackNum(feedback, i) {
this.getWorkorderDirectiveList(feedback, i, true) this.getWorkorderDirectiveList(feedback, i, true)
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment