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