|
@@ -3,14 +3,8 @@
|
|
|
<div style="width: 100%">
|
|
|
<el-row style="padding: 10px 0 0 0px">
|
|
|
<el-col :span="6" style="width: 363px">
|
|
|
- <periodDatePickerActive
|
|
|
- :start="parmValue.start_date"
|
|
|
- :end="parmValue.end_date"
|
|
|
- :placeholder="'竞价'"
|
|
|
- :width="'165px'"
|
|
|
- :size="searchSize"
|
|
|
- @timeReturned="time"
|
|
|
- />
|
|
|
+ <periodDatePickerActive :start="parmValue.start_date" :end="parmValue.end_date" :placeholder="'创建'"
|
|
|
+ :width="'165px'" :size="searchSize" @timeReturned="time" />
|
|
|
</el-col>
|
|
|
<!-- <el-col :span="4" style="width: 66px; float: right">
|
|
|
<el-button
|
|
@@ -24,38 +18,33 @@
|
|
|
</el-button>
|
|
|
</el-col> -->
|
|
|
<el-col :span="3" style="width: 66px; float: right">
|
|
|
- <el-button
|
|
|
- :size="searchSize"
|
|
|
- type="primary"
|
|
|
- style="float: right; margin-left: 5px"
|
|
|
- @click="searchList"
|
|
|
- >
|
|
|
+ <el-button :size="searchSize" type="primary" style="float: right; margin-left: 5px" @click="searchList">
|
|
|
刷新
|
|
|
</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="4" style="width: 66px; float: right">
|
|
|
- <el-button
|
|
|
- type="warning"
|
|
|
- class="fr"
|
|
|
- :size="searchSize"
|
|
|
- @click="restSearch"
|
|
|
- >
|
|
|
+ <el-button type="warning" class="fr" :size="searchSize" @click="restSearch">
|
|
|
重置
|
|
|
</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</div>
|
|
|
- <el-table
|
|
|
- :data="tableData"
|
|
|
- :size="searchSize"
|
|
|
- :span-method="objectSpanMethod"
|
|
|
- border
|
|
|
- style="width: 100%; margin-top: 20px"
|
|
|
- >
|
|
|
- <el-table-column :prop="item.prop" :label="item.label" v-for="(item,index) in table2" :key="index"/>
|
|
|
-
|
|
|
+ <el-table :data="tableData" :size="searchSize" :span-method="objectSpanMethod" border
|
|
|
+ style="width: 100%; margin-top: 20px">
|
|
|
+ <el-table-column :prop="item.prop" :label="item.label" v-for="(item,index) in table2" :key="index" />
|
|
|
+
|
|
|
+ <el-table-column label="待与供应商确认">
|
|
|
+ <el-table-column label="总金额" prop="wait_confirm_total_fee" />
|
|
|
+ <el-table-column label="总单数" prop="wait_confirm_total_num" />
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
+ <el-table-column label="待入库">
|
|
|
+ <el-table-column label="总金额" prop='wait_in_total_fee' />
|
|
|
+ <el-table-column label="总单数" prop="wait_in_total_num" />
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
</el-table>
|
|
|
- <el-pagination
|
|
|
+ <!-- <el-pagination
|
|
|
:current-page.sync="pageInfo.curr"
|
|
|
:page-sizes="[15, 50, 100]"
|
|
|
:page-size="pageInfo.size"
|
|
@@ -64,10 +53,10 @@
|
|
|
:total="pageInfo.total"
|
|
|
@size-change="handleSizeChange"
|
|
|
@current-change="handleCurrentChange"
|
|
|
- />
|
|
|
+ /> -->
|
|
|
</div>
|
|
|
</template>
|
|
|
- <script>
|
|
|
+<script>
|
|
|
import mixinPage from "@/mixins/elPaginationHandle";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
import urlConfig from "@/apis/url-config";
|
|
@@ -125,20 +114,20 @@ export default {
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
- //分页集合
|
|
|
- handleSizeChange(val){
|
|
|
+ //分页集合
|
|
|
+ handleSizeChange(val) {
|
|
|
this.parmValue.size = val;
|
|
|
this.parmValue.page = 1;
|
|
|
// this.pageInfo.total = val;
|
|
|
|
|
|
- this.searchList()
|
|
|
+ this.searchList()
|
|
|
},
|
|
|
- handleCurrentChange(val){
|
|
|
+ handleCurrentChange(val) {
|
|
|
// this.pageInfo.total = val;
|
|
|
this.parmValue.page = val;
|
|
|
this.searchList()
|
|
|
},
|
|
|
- //合并方法
|
|
|
+ //合并方法
|
|
|
objectSpanMethod({ row, column, rowIndex, columnIndex }) {
|
|
|
if (columnIndex == 0) {
|
|
|
//合并相同的名字
|
|
@@ -196,7 +185,7 @@ export default {
|
|
|
|
|
|
const res = await asyncRequest.reportpurcheaseordersum(this.parmValue);
|
|
|
if (res && res.code === 0 && res.data) {
|
|
|
- this.tableData = res.data.list;
|
|
|
+ this.tableData = res.data;
|
|
|
this.pageInfo.total = Number(res.data.count);
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
await this.logout();
|
|
@@ -316,13 +305,14 @@ export default {
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
|
- <style lang="scss" scoped>
|
|
|
+<style lang="scss" scoped>
|
|
|
.purchaseOrder {
|
|
|
// text-align: right;
|
|
|
}
|
|
|
-/deep/ .el-pagination{
|
|
|
+
|
|
|
+/deep/ .el-pagination {
|
|
|
float: right;
|
|
|
- margin-top: 10px;
|
|
|
+ margin-top: 10px;
|
|
|
}
|
|
|
</style>
|
|
|
|