|
@@ -46,7 +46,7 @@
|
|
|
</li>
|
|
</li>
|
|
|
<li>
|
|
<li>
|
|
|
<span>当前步骤</span>
|
|
<span>当前步骤</span>
|
|
|
- <span>{{ item.curstepname }}</span>
|
|
|
|
|
|
|
+ <span>{{ handleNoneValue(item.curstepname) }}</span>
|
|
|
</li>
|
|
</li>
|
|
|
<li>
|
|
<li>
|
|
|
<span>卖方已收</span>
|
|
<span>卖方已收</span>
|
|
@@ -59,8 +59,8 @@
|
|
|
</ul>
|
|
</ul>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="g-order-list__btnbar">
|
|
<div class="g-order-list__btnbar">
|
|
|
- <Button size="small" @click="showComponent('breach', item)" round>违约</Button>
|
|
|
|
|
- <Button size="small" @click="showComponent('modify', item)" round>修改</Button>
|
|
|
|
|
|
|
+ <Button size="small" v-if="![6, 7].includes(item.performancestatus)" @click="showComponent('breach', item)" round>违约</Button>
|
|
|
|
|
+ <Button size="small" v-if="![6, 7].includes(item.performancestatus)" @click="showComponent('modify', item)" round>修改</Button>
|
|
|
<Button size="small" @click="showComponent('detail', item)" round>详情</Button>
|
|
<Button size="small" @click="showComponent('detail', item)" round>详情</Button>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -77,7 +77,7 @@ import { Tab, Tabs, Button } from 'vant'
|
|
|
import { useComponent } from '@/hooks/component'
|
|
import { useComponent } from '@/hooks/component'
|
|
|
import { useRequest } from '@/hooks/request'
|
|
import { useRequest } from '@/hooks/request'
|
|
|
import { queryPerformancePlan } from '@/services/api/performance'
|
|
import { queryPerformancePlan } from '@/services/api/performance'
|
|
|
-import { formatDate } from '@/filters'
|
|
|
|
|
|
|
+import { formatDate, handleNoneValue } from '@/filters'
|
|
|
import { getPerformanceStatusName, getPerformanceTypeName } from '@/constants/order'
|
|
import { getPerformanceStatusName, getPerformanceTypeName } from '@/constants/order'
|
|
|
|
|
|
|
|
import AppPullRefresh from '@mobile/components/base/pull-refresh/index.vue'
|
|
import AppPullRefresh from '@mobile/components/base/pull-refresh/index.vue'
|