|
|
@@ -31,7 +31,16 @@
|
|
|
:param="productParam"
|
|
|
:filterMultiple="true"
|
|
|
:columns="utils.TBLayout('productListTable').splice(0,utils.TBLayout('productListTable').length - 1)" title="选择所属产品"
|
|
|
+ :custom="true"
|
|
|
>
|
|
|
+ <template #custom="{ data }">
|
|
|
+ <div v-if="data.column.dataIndex == 'isused'">
|
|
|
+ {{ data.record.isused ? '启用' : '停用' }}
|
|
|
+ </div>
|
|
|
+ <div v-else>
|
|
|
+ {{ data.record[data.column.dataIndex] }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
<template v-slot:slot1>
|
|
|
<a-input-search
|
|
|
v-model:value="form.prodname"
|