|
|
|
@ -121,7 +121,7 @@
|
|
|
|
|
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
|
|
|
|
import { columnList } from '@/option/storagecost/WarehousePricingTemplate.js'; |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
|
|
|
|
import { $_getMyWarehouseList } from '@/api/storagecost/index.js'; |
|
|
|
|
import { $_getMyWarehouseList ,$_WarehousePricingTemplate} from '@/api/storagecost/index.js'; |
|
|
|
|
import { processRowProperty, setNodeHeight } from '@/utils/util'; |
|
|
|
|
import functions from '@/utils/functions.js'; |
|
|
|
|
import { ElMessageBox, ElMessage } from 'element-plus'; |
|
|
|
@ -237,10 +237,8 @@ const showdrawer = _flag => {
|
|
|
|
|
const inputsc = (index, row) => { |
|
|
|
|
details.query[row.prop] = index; |
|
|
|
|
processRowProperty(index, row, details); |
|
|
|
|
test(details.query); |
|
|
|
|
}; |
|
|
|
|
// 实例函数 |
|
|
|
|
const test = val => {}; |
|
|
|
|
/** 表格表头时间选择 */ |
|
|
|
|
const timesc = (index, row) => { |
|
|
|
|
console.log(index, row); |
|
|
|
@ -302,7 +300,27 @@ function updateDictionary(targetArray, dictionaryType) {
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
// 页面初始化 |
|
|
|
|
const onLoad = () => {}; |
|
|
|
|
|
|
|
|
|
const onLoad = value => { |
|
|
|
|
let data = { |
|
|
|
|
current: details.page.currentPage, |
|
|
|
|
size: details.page.pageSize, |
|
|
|
|
...details.query, |
|
|
|
|
...value, |
|
|
|
|
}; |
|
|
|
|
details.loadingObj.list=true; |
|
|
|
|
$_WarehousePricingTemplate(data).then(res => { |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
details.data = res.data.data.records || []; |
|
|
|
|
details.page.total = res.data.data.total; //页码 |
|
|
|
|
} |
|
|
|
|
}).catch((error)=>{ |
|
|
|
|
console.log(error); |
|
|
|
|
}).finally(()=>{ |
|
|
|
|
details.loadingObj.list=false; |
|
|
|
|
}); |
|
|
|
|
; |
|
|
|
|
}; |
|
|
|
|
// 获取仓库 |
|
|
|
|
const MyWarehouseList = () => { |
|
|
|
|
$_getMyWarehouseList().then(res => { |
|
|
|
@ -323,6 +341,7 @@ const EditTemplate = () => {
|
|
|
|
|
}; |
|
|
|
|
const PageOnload = () => { |
|
|
|
|
MyWarehouseList(); //获取仓库 |
|
|
|
|
onLoad(); //获取数据 |
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|