|  |  |  | 
|---|
|  |  |  | import Pagination from '@/components/common/Pagination' | 
|---|
|  |  |  | import OperaPricingParamWindow from '@/components/business/OperaPricingParamWindow' | 
|---|
|  |  |  | import PriceConfiguration from '@/components/business/priceConfiguration' | 
|---|
|  |  |  | import { updateById } from '@/api/business/pricingParam' | 
|---|
|  |  |  | import { updateStatusById } from '@/api/business/pricingParam' | 
|---|
|  |  |  | export default { | 
|---|
|  |  |  | name: 'PricingParam', | 
|---|
|  |  |  | extends: BaseTable, | 
|---|
|  |  |  | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | methods: { | 
|---|
|  |  |  | changeStatus(row) { | 
|---|
|  |  |  | updateById(row) | 
|---|
|  |  |  | updateStatusById(row) | 
|---|
|  |  |  | .then(() => { | 
|---|
|  |  |  | this.$tip.apiSuccess('成功') | 
|---|
|  |  |  | }) | 
|---|