12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <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-else>
- <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">{{ 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>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- item: {}
- };
- },
- onLoad(e) {
- if (e.id) {
- this.http.request({
- url: '/level-two-server/app/TbGoodsDemand/goodsDemandDetail',
- data: {id: e.id},
- loading: 'false',
- success: res => {
- this.item = res.data.data;
- }
- });
- }
- },
- methods: {}
- };
- </script>
- <style lang="scss">
- page {
- background-color: $pg;
- }
- </style>
|