给采购订单里面的请购单号增加链接
This commit is contained in:
@@ -212,6 +212,7 @@
|
|||||||
{ title: '供应商', dataIndex: 'organName',width:120, ellipsis:true},
|
{ title: '供应商', dataIndex: 'organName',width:120, ellipsis:true},
|
||||||
{ title: '单据编号', dataIndex: 'number',width:160,
|
{ title: '单据编号', dataIndex: 'number',width:160,
|
||||||
customRender:function (text,record,index) {
|
customRender:function (text,record,index) {
|
||||||
|
text = record.linkApply?text+"[请]":text
|
||||||
text = record.linkNumber?text+"[转]":text
|
text = record.linkNumber?text+"[转]":text
|
||||||
return text
|
return text
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -280,12 +280,12 @@
|
|||||||
{{model.number}}
|
{{model.number}}
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="6">
|
<a-col :span="6" v-if="model.linkApply">
|
||||||
<a-form-item :labelCol="{xs: { span: 24 },sm: { span: 6 }}" :wrapperCol="wrapperCol" label="关联请购单">
|
<a-form-item :labelCol="{xs: { span: 24 },sm: { span: 6 }}" :wrapperCol="wrapperCol" label="关联请购单">
|
||||||
{{model.linkApply}}
|
<a @click="myHandleDetail(model.linkApply)">{{model.linkApply}}</a>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="6">
|
<a-col :span="6" v-if="model.linkNumber">
|
||||||
<a-form-item v-if="purchaseBySaleFlag" :labelCol="labelCol" :wrapperCol="wrapperCol" label="关联订单">
|
<a-form-item v-if="purchaseBySaleFlag" :labelCol="labelCol" :wrapperCol="wrapperCol" label="关联订单">
|
||||||
{{model.linkNumber}}
|
{{model.linkNumber}}
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
|||||||
Reference in New Issue
Block a user