Commit 8094a6c4 by LJM

add

parent f7defc13
......@@ -133,7 +133,7 @@
</view>
<view class="text-item row verCenter" v-if="item.is_need_three_qc_cn == '是'">
<text class="label">三方送检:</text>
<text class="tt" style="color: red;">{{ item.is_need_three_qc_cn }}</text>
<text class="tt" style="color: red;">需三方送检</text>
</view>
<view class="btn-box row bothSide">
<view class="row verCenter" style="margin-left: 79rpx;">
......
......@@ -105,7 +105,7 @@
</view>
<view class="text-item row verCenter" v-if="item.is_need_three_qc_cn == '是'">
<text class="label">三方送检:</text>
<text class="tt" style="color: red;">{{ item.is_need_three_qc_cn }}</text>
<text class="tt" style="color: red;">需三方送检</text>
</view>
<view class="btn-box row bothSide">
<view class="row verCenter" style="margin-left: 79rpx;">
......
......@@ -76,7 +76,7 @@
</view>
<view class="input-box row verCenter" v-if="item.is_need_three_qc">
<text class="label">三方送检:</text>
<text class="text" style="color: red;">{{ item.is_need_three_qc_val }}</text>
<text class="text" style="color: red;">需三方送检</text>
</view>
<view class="input-box row verCenter">
<text class="label">货品名称:</text>
......
......@@ -59,7 +59,7 @@
<text>提交</text>
</label>
</radio-group>
<view class="total-text" v-if="list.length > 0"><text class="tt">{{list.length}}</text>条数据</view>
<view class="total-text" v-if="list.length > 0"><text class="tt">{{total}}</text>条数据</view>
</view>
<!-- 列表 -->
<view class="list row bothSide" v-if="list.length > 0">
......@@ -409,10 +409,10 @@
* 获取列表数据
*/
getData() {
console.log(this.searchParams.stock_shelf_time)
this.request(API.onShelfRecordList, 'GET', { page: this.page, limit: this.limit, ...this.searchParams }, false).then(res => {
if (res.code === 0) {
if (res.data.total > 0) {
this.total = res.data.total;
this.hasMoreData = true;
this.list = this.list.concat(res.data.list);
this.filter_list = createArray(this.list.length, false);
......
......@@ -159,7 +159,7 @@
<text class="tt" style="max-width: 491rpx;color: red;">{{ detail.pack_requeire }}</text>
</view>
<view class="item row" style="flex: 0 0 100%;" v-if="detail.is_need_three_qc">
<text class="label" style="width: 112rpx;">三方送检:</text>
<text class="label" style="width: 112rpx;">三方送检:</text>
<text class="tt" style="max-width: 491rpx;color: red;">{{ detail.is_need_three_qc_cn }}</text>
</view>
<view class="item row verCenter" style="flex: 0 0 100%;">
......
......@@ -138,7 +138,7 @@
</view>
<view class="text-item row verCenter" v-if="item.is_need_three_qc">
<text class="label">三方送检:</text>
<text class="tt" style="color: red;">{{ item.is_need_three_qc_cn }}</text>
<text class="tt" style="color: red;">需三方送检</text>
</view>
<view class="text-item row verCenter">
<text class="label">理货数量:</text>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment