123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <template>
- <view>
- <view class="cmain">
- <view class="box order_detail" style="margin-top: 0px">
- <view class="item">
- <text class="label">收购状态</text>
- <text class="desc" v-if="item.isOrders == 0">
- <text class="icon"></text>
- <text>未接单</text>
- </text>
- <text class="desc" v-if="item.isOrders == 1">
- <text class="icon" style="color: #13ce66"></text>
- <text>已接单</text>
- </text>
- <text class="desc" v-if="item.isConfirm == 1">
- <text class="icon" style="color: #13ce66"></text>
- <text>已确认</text>
- </text>
- </view>
- </view>
- <view class="box order_detail">
- <view class="item">
- <text class="label">收购商品</text>
- <text class="desc omit">{{ item.goodsName }}</text>
- </view>
- <view class="item">
- <text class="label">数量</text>
- <text class="desc">{{ item.goodsQuantity }}</text>
- </view>
- <view class="item">
- <text class="label">发布时间</text>
- <text class="desc">{{ item.goodsDemandTime }}</text>
- </view>
- <view class="item">
- <text class="label">接单组名</text>
- <text class="desc">{{ item.groupName }}</text>
- </view>
- <view class="item">
- <text class="label">接单组长</text>
- <text class="desc">{{ item.createName }}</text>
- </view>
- <view class="item">
- <text class="label">组长备注</text>
- <text class="desc">{{ item.remark }}</text>
- </view>
- <view class="item">
- <text class="label">出价金额</text>
- <text class="desc">{{ item.quotation }}</text>
- </view>
- <view class="item">
- <text class="label">报价时间</text>
- <text class="desc">{{ item.createTime }}</text>
- </view>
- </view>
- <button class="btn" @click.stop="confirm()" v-if="item.isConfirm != 1">同意接单并支付</button>
- <button class="btn" style="background-color: #F44336;" v-if="item.isConfirm != 1">拒绝接单</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- item: {}
- };
- },
- onLoad(e) {
- if (e.id) {
- this.http.request({
- url: '/level-two-server/app/TbGoodsDemand/goodsDemandDetail?id=' + e.id,
- success: res => {
- this.item = res.data.data;
- }
- });
- }
- },
- methods: {
- confirm() {
- this.http.request({
- url: '/level-two-server/app/TbOrders/add',
- data: this.item,
- success: res => {
- uni.showToast({ title: '操作成功' });
- // 收购商已确认
- this.item.isConfirm = 1
- }
- });
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background-color: $pg;
- }
- .btn{
- margin-top: 20px;
- width: 70%;
- }
- </style>
|