diff --git a/src/views/big/device/components/assembly.vue b/src/views/big/device/components/assembly.vue new file mode 100644 index 0000000..b30a481 --- /dev/null +++ b/src/views/big/device/components/assembly.vue @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + 开始装配 + 装配完成 + 检验完成 + 内包完成 + + + + + + + + + + \ No newline at end of file diff --git a/src/views/big/device/index.vue b/src/views/big/device/index.vue index 20f83c8..2f09d2d 100644 --- a/src/views/big/device/index.vue +++ b/src/views/big/device/index.vue @@ -56,6 +56,10 @@ + + + @@ -73,6 +77,7 @@ + @@ -86,6 +91,7 @@ import { getDeviceList, delDevice } from '@/api/big/device' import { getDeptList } from '@/api/big/dept' import { getDeviceTypeList } from '@/api/big/deviceType' import add_edit from './components/add_edit.vue' +import assemblyVue from './components/assembly' const { proxy } = getCurrentInstance(); const data = reactive({ @@ -121,6 +127,8 @@ const total = ref(0); const title = ref(""); const file_list = ref([]) const type = ref("add"); +const assemblyTitle = ref("设备装配信息") +const assemblyOpen = ref(false) /** 查询部门列表 */ function getList() { @@ -180,6 +188,13 @@ function handleUpdate(id) { open.value = true; } +//设备装配信息 +function handleAssembly(row) { + assemblyTitle.value = "设备装配信息"; + assemblyOpen.value = true; + form.value = row; +} + /** 删除按钮操作 */ function handleDelete(row) { let rows = deptList.value.filter(item => ids.value.includes(item.id));