|
@@ -244,7 +244,16 @@
|
|
|
</pl-table-column>
|
|
|
<pl-table-column prop="priceType" label="价格类型" align="left" min-width="150">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.priceType }}
|
|
|
+ <template v-if="scope.row.fang">
|
|
|
+ {{ scope.row.priceType }}
|
|
|
+ </template>
|
|
|
+ <el-input
|
|
|
+ v-else
|
|
|
+ v-model="scope.row.priceType"
|
|
|
+ placeholder="备注"
|
|
|
+ size="mini"
|
|
|
+ @change="setText($event, scope.$index, scope.row, 'priceType')"
|
|
|
+ />
|
|
|
</template>
|
|
|
</pl-table-column>
|
|
|
<pl-table-column prop="price" label="单价" align="right" show-overflow-tooltip min-width="150">
|