|
@@ -88,7 +88,24 @@ Page({
|
|
|
}
|
|
|
}
|
|
|
})
|
|
|
- });
|
|
|
+ });
|
|
|
+
|
|
|
+ const columnId = util.column('6').columnId;
|
|
|
+ this.distinction(2, columnId, 1, 2, res => {
|
|
|
+ if(res.data.success) {
|
|
|
+ console.log(res.data.data)
|
|
|
+ this.setData({
|
|
|
+ productionData: res.data.data
|
|
|
+ })
|
|
|
+ if(res.data.data) {
|
|
|
+ if(res.data.data.totalSize > 2) {
|
|
|
+ this.setData({
|
|
|
+ productionMore: true
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
},
|
|
|
onLoad: function (options) {
|
|
|
|
|
@@ -179,18 +196,7 @@ Page({
|
|
|
"pageSize": pageSize
|
|
|
}).success(success)
|
|
|
}, function() {
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
});
|
|
|
},
|
|
|
|