add:刻字缓存物料维护/物料信息

This commit is contained in:
zhangzhiqiang
2023-06-24 19:05:54 +08:00
parent 4612ce74f5
commit d9125962b2
35 changed files with 1180 additions and 267 deletions

View File

@@ -55,7 +55,6 @@
highlight-current-row
style="width: 100%;"
@selection-change="crud.selectionChangeHandler"
@current-change="handleCurrentChange"
>
<el-table-column type="selection" width="55" />
<el-table-column prop="product_area" label="生产车间" width="100px" show-overflow-tooltip />
@@ -85,8 +84,15 @@
</el-table-column>
</el-table>
<!--分页组件-->
<MaterDtl
:dialog-show.sync="materialShow"
:is-single="true"
:mater-opt-code="materType"
@setMaterValue="setMaterValue"
/>
<pagination />
</el-card>
</div>
</template>
@@ -96,12 +102,13 @@ import CRUD, { presenter, header, form } from '@crud/crud'
import crudOperation from '@crud/CRUD.operation'
import pagination from '@crud/Pagination'
import rrOperation from '@crud/RR.operation'
import MaterDtl from '@/views/wms/pub/MaterDialog'
const defaultForm = { product_area: 'A1', workprocedure_id: '1535144552481034240', device_code: null, material_id: null, material_name: null, material_spec: null, deviceinstor_qty: null, deviceinstor_weight: null, remark: null }
export default {
name: 'SKdevice',
components: { crudOperation, pagination, rrOperation },
components: { crudOperation, pagination, rrOperation, MaterDtl },
dicts: ['product_area'],
cruds() {
return [
@@ -111,6 +118,7 @@ export default {
mixins: [presenter(), header(), form(defaultForm)],
data() {
return {
materType: '',
materialShow: false,
queryTypeOptions: [
{ key: 'name', display_name: '字典名称' },
@@ -129,6 +137,13 @@ export default {
}
},
methods: {
setMaterValue(row) {
this.nowrow.material_id = row.material_id
this.nowrow.material_code = row.material_code
this.nowrow.material_name = row.material_name
this.nowrow.material_spec = row.material_spec
this.tableData.splice(this.nowindex, 1, this.nowrow) // 通过splice 替换数据 触发视图更新
},
queryMater(index, row) {
this.materialShow = true
this.nowindex = index