| | |
| | | <template> |
| | | <view class="sales-account"> |
| | | <PageHeader title="供应商管理" @back="goBack"> |
| | | <template #right> |
| | | <up-button |
| | | type="primary" |
| | | size="small" |
| | | text="新增" |
| | | :customStyle="{ marginRight: '12px' }" |
| | | @click="goAdd" |
| | | /> |
| | | </template> |
| | | </PageHeader> |
| | | <PageHeader title="供应商管理" @back="goBack"/> |
| | | <view class="search-section"> |
| | | <view class="search-bar"> |
| | | <view class="search-input"> |
| | |
| | | <text class="detail-label">维护时间</text> |
| | | <text class="detail-value">{{ item.maintainTime || "-" }}</text> |
| | | </view> |
| | | </view> |
| | | <view class="action-buttons"> |
| | | <u-button size="small" class="action-btn" @click="goEdit(item)">编辑</u-button> |
| | | <u-button |
| | | type="error" |
| | | size="small" |
| | | class="action-btn" |
| | | @click="handleDelete(item)" |
| | | > |
| | | 删除 |
| | | </u-button> |
| | | </view> |
| | | </view> |
| | | </view> |