|
@@ -142,14 +142,18 @@
|
|
|
class="button-info"
|
|
|
v-if="record.billStatus !== 'CANCEL' && record.billStatus !== 'FINISH' && record.billStatus != 'WAIT_OUT_WAREHOUSE'"
|
|
|
@click="handleEdit(record)"
|
|
|
- id="salesManagementList-edit-btn">编辑</a-button>
|
|
|
+ id="salesManagementList-edit-btn">
|
|
|
+ {{ record.salesBillSource == 'PURCHASE'?'改单':'编辑' }}
|
|
|
+ </a-button>
|
|
|
<a-button
|
|
|
size="small"
|
|
|
type="link"
|
|
|
class="button-error"
|
|
|
v-if="record.billStatus !== 'FINISH' && record.financialStatus !== 'FINISH'"
|
|
|
@click="handleDel(record)"
|
|
|
- id="salesManagementList-del-btn">删除</a-button>
|
|
|
+ id="salesManagementList-del-btn">
|
|
|
+ {{ record.salesBillSource == 'PURCHASE'?'取消':'删除' }}
|
|
|
+ </a-button>
|
|
|
<span v-if="record.billStatus == 'FINISH'">--</span>
|
|
|
</template>
|
|
|
</s-table>
|