|
@@ -106,7 +106,7 @@
|
|
<span
|
|
<span
|
|
v-if="
|
|
v-if="
|
|
!scope.row.basischange &&
|
|
!scope.row.basischange &&
|
|
- scope.row.basis &&
|
|
|
|
|
|
+ String(scope.row.basis) &&
|
|
scope.row.salePlanType == '期货'
|
|
scope.row.salePlanType == '期货'
|
|
"
|
|
"
|
|
>{{ '+'+scope.row.basis }}</span
|
|
>{{ '+'+scope.row.basis }}</span
|
|
@@ -126,7 +126,7 @@
|
|
<img
|
|
<img
|
|
v-if="
|
|
v-if="
|
|
!scope.row.basischange &&
|
|
!scope.row.basischange &&
|
|
- scope.row.basis &&
|
|
|
|
|
|
+ String(scope.row.basis) &&
|
|
scope.row.salePlanType == '期货'
|
|
scope.row.salePlanType == '期货'
|
|
"
|
|
"
|
|
width="17"
|
|
width="17"
|
|
@@ -136,7 +136,7 @@
|
|
@click="editbasis(scope.row)"
|
|
@click="editbasis(scope.row)"
|
|
alt=""
|
|
alt=""
|
|
/>
|
|
/>
|
|
- <span v-if="!scope.row.basis">-</span>
|
|
|
|
|
|
+ <span v-if="!String(scope.row.basis)">-</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|