Compare commits

..

No commits in common. "d4e0384e1095253dfd269c10ca435bbcee2c2e7f" and "d725cb7a0c351b8616a946a54597137697231a8e" have entirely different histories.

2 changed files with 6 additions and 4 deletions

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2020-12-29 15:41:11 * @Date: 2020-12-29 15:41:11
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2022-03-15 14:15:30 * @LastEditTime: 2022-03-11 16:29:46
* @Description: * @Description:
--> -->
<template> <template>
@ -33,6 +33,7 @@ import { locationByProcessList } from '@/api/basicData/Warehouse/StorageBoxInfo'
import i18n from '@/lang' import i18n from '@/lang'
import BaseTable from '@/components/BaseTable' import BaseTable from '@/components/BaseTable'
// import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn' // import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
import { timeFormatter } from '@/filters'
/** /**
* 表格表头配置项 TypeScript接口注释 * 表格表头配置项 TypeScript接口注释
* tableConfig<ConfigItem> = [] * tableConfig<ConfigItem> = []
@ -59,6 +60,7 @@ const tableProps = [
{ {
prop: 'code', prop: 'code',
label: i18n.t('module.basicData.cache.LocationCode'), label: i18n.t('module.basicData.cache.LocationCode'),
filter: timeFormatter,
align: 'center' align: 'center'
}, },
{ {

View File

@ -2,7 +2,7 @@
* @Author: gtz * @Author: gtz
* @Date: 2022-03-03 09:16:10 * @Date: 2022-03-03 09:16:10
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2022-03-15 14:27:57 * @LastEditTime: 2022-03-15 11:03:18
* @Description: file content * @Description: file content
* @FilePath: \mt-ck-wms-ui\src\views\dashboard\index.vue * @FilePath: \mt-ck-wms-ui\src\views\dashboard\index.vue
--> -->
@ -276,7 +276,7 @@ import testdata from './testdata'
import processStorageType from './processStorageType' import processStorageType from './processStorageType'
export default { export default {
name: 'ProcessStorageLink1', name: 'Dashboard',
components: { processStorageType }, components: { processStorageType },
data() { data() {
return testdata return testdata
@ -316,7 +316,7 @@ export default {
return item.locationName return item.locationName
}) })
const obj = { const obj = {
workSequenId: this.id, id: this.id,
processLocationStorageList: this.selectStorageList processLocationStorageList: this.selectStorageList
} }
this.$confirm(`${this.$t('module.basicData.visual.TipsStorageBefore')}[${tipArr.join(',')}]?`, this.$t('module.basicData.visual.Tips'), { this.$confirm(`${this.$t('module.basicData.visual.TipsStorageBefore')}[${tipArr.join(',')}]?`, this.$t('module.basicData.visual.Tips'), {