|
|
@@ -194,6 +194,7 @@
|
|
|
</view>
|
|
|
|
|
|
<view class="app-footer open_btn">
|
|
|
+ <view v-if="detailInfo.status == 4" @click="changePrice()" class="admin-button-com big blue">修改价格</view>
|
|
|
<view v-if="detailInfo.status == 3" @click="cancelIn()" class="admin-button-com big default">取消入库</view>
|
|
|
<view v-if="detailInfo.status == 3" @click="confirmIn()" class="admin-button-com big blue">确认入库</view>
|
|
|
</view>
|
|
|
@@ -223,6 +224,9 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
|
+ changePrice(){
|
|
|
+ this.$util.pageTo({url: "/pagesPurchase/components/pageSuccess?orderSn="+this.detailInfo.orderSn+"&id="+this.detailInfo.id+"&status="+this.detailInfo.status,type:2})
|
|
|
+ },
|
|
|
cancelIn(){
|
|
|
let that = this
|
|
|
that.$util.confirmModal({content:'确认取消此单?'},() => {
|