|
|
@ -115,7 +115,7 @@ |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="productName" label="课程名称" align="center" min-width="150" show-overflow-tooltip> |
|
|
|
<el-table-column prop="productName" label="课程名称" align="center" min-width="150" show-overflow-tooltip> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="使用期限" align="center" min-width="150"> |
|
|
|
<el-table-column label="使用期限" align="center" min-width="170"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="small"> |
|
|
|
<div class="small"> |
|
|
|
<el-input |
|
|
|
<el-input |
|
|
@ -136,7 +136,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="起止日期" align="center" min-width="150"> |
|
|
|
<el-table-column label="起止日期" align="center" min-width="240"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<p v-if="!scope.row.startTime"> |
|
|
|
<p v-if="!scope.row.startTime"> |
|
|
|
<el-date-picker |
|
|
|
<el-date-picker |
|
|
@ -160,7 +160,7 @@ |
|
|
|
<span v-if="scope.row.startTime"><span v-if='scope.row.endTime'> - </span>{{ scope.row.endTime }}</span></p> |
|
|
|
<span v-if="scope.row.startTime"><span v-if='scope.row.endTime'> - </span>{{ scope.row.endTime }}</span></p> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="剩余期限" align="center" min-width="80"> |
|
|
|
<el-table-column label="剩余期限" align="center" min-width="110"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="small"> |
|
|
|
<div class="small"> |
|
|
|
<el-input disabled v-model="scope.row.remainingPeriod" placeholder="" |
|
|
|
<el-input disabled v-model="scope.row.remainingPeriod" placeholder="" |
|
|
@ -169,7 +169,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="市场价" align="center" min-width="80"> |
|
|
|
<el-table-column label="市场价" align="center" min-width="110"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="small"> |
|
|
|
<div class="small"> |
|
|
|
<el-input disabled v-model="scope.row.marketValue" placeholder="" |
|
|
|
<el-input disabled v-model="scope.row.marketValue" placeholder="" |
|
|
@ -178,7 +178,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="成交价" align="center" min-width="80"> |
|
|
|
<el-table-column label="成交价" align="center" min-width="110"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="small"> |
|
|
|
<div class="small"> |
|
|
|
<el-input :class="scope.row.finalPrice === '' && whetherSubmit?'red':''" |
|
|
|
<el-input :class="scope.row.finalPrice === '' && whetherSubmit?'red':''" |
|
|
@ -191,15 +191,13 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="折扣率 " align="center" min-width="80"> |
|
|
|
<el-table-column label="折扣率 " align="center" min-width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="small"> |
|
|
|
|
|
|
|
<el-input disabled v-model="scope.row.discountRate" placeholder="" |
|
|
|
<el-input disabled v-model="scope.row.discountRate" placeholder="" |
|
|
|
type="text"></el-input> |
|
|
|
type="text" size="small" style="width: 100%"></el-input> |
|
|
|
</div> |
|
|
|
|
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="端口地址 " align="center" min-width="80"> |
|
|
|
<el-table-column label="端口地址 " align="center" min-width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button @click="configure(scope.row)">配置</el-button> |
|
|
|
<el-button @click="configure(scope.row)">配置</el-button> |
|
|
|
</template> |
|
|
|
</template> |
|
|
@ -257,7 +255,7 @@ |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="productName" label="产品名称" align="center" min-width="100"> |
|
|
|
<el-table-column prop="productName" label="产品名称" align="center" min-width="100"> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="使用期限" align="center" min-width="120"> |
|
|
|
<el-table-column label="使用期限" align="center" min-width="150"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="small"> |
|
|
|
<div class="small"> |
|
|
|
<el-input onkeyup="value=this.value.replace(/\D+/g,'')" |
|
|
|
<el-input onkeyup="value=this.value.replace(/\D+/g,'')" |
|
|
@ -276,7 +274,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="起止日期" align="center" min-width="180"> |
|
|
|
<el-table-column label="起止日期" align="center" min-width="240"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<p v-if="!scope.row.startTime"> |
|
|
|
<p v-if="!scope.row.startTime"> |
|
|
|
<el-date-picker |
|
|
|
<el-date-picker |
|
|
@ -300,7 +298,7 @@ |
|
|
|
<span v-if="scope.row.startTime"><span v-if='scope.row.endTime'> - </span>{{ scope.row.endTime }}</span></p> |
|
|
|
<span v-if="scope.row.startTime"><span v-if='scope.row.endTime'> - </span>{{ scope.row.endTime }}</span></p> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="剩余期限" align="center" min-width="70"> |
|
|
|
<el-table-column label="剩余期限" align="center" min-width="120"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="small"> |
|
|
|
<div class="small"> |
|
|
|
<el-input disabled v-model="scope.row.remainingPeriod" placeholder="" |
|
|
|
<el-input disabled v-model="scope.row.remainingPeriod" placeholder="" |
|
|
@ -309,7 +307,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="市场价" align="center" min-width="120"> |
|
|
|
<el-table-column label="市场价" align="center" min-width="160"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="small"> |
|
|
|
<div class="small"> |
|
|
|
<el-input disabled v-model="scope.row.marketValue" placeholder="" |
|
|
|
<el-input disabled v-model="scope.row.marketValue" placeholder="" |
|
|
@ -318,7 +316,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="成交价" align="center" min-width="120"> |
|
|
|
<el-table-column label="成交价" align="center" min-width="170"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div class="small"> |
|
|
|
<div class="small"> |
|
|
|
<el-input :class="scope.row.finalPrice === '' && whetherSubmit?'red':''" |
|
|
|
<el-input :class="scope.row.finalPrice === '' && whetherSubmit?'red':''" |
|
|
@ -331,7 +329,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="折扣率" align="center" min-width="80"> |
|
|
|
<el-table-column label="折扣率" align="center" min-width="140"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<!-- <div class="discountRate"> --> |
|
|
|
<!-- <div class="discountRate"> --> |
|
|
|
<div class="small"> |
|
|
|
<div class="small"> |
|
|
|