Compare commits

...

8 Commits

Author SHA1 Message Date
x
caf54ac50f 解包修改 2026-08-12 16:13:39 +08:00
x
0df297c98d 状态修改 2026-08-11 13:09:20 +08:00
x
7c944bfc59 解包出桶 2026-08-10 16:45:08 +08:00
x
686a2809a6 版本 2026-07-27 16:27:02 +08:00
x
ff19772127 解包出桶 2026-07-20 18:21:42 +08:00
x
8094f456be 配置修改 2026-07-20 17:36:45 +08:00
x
853153181a 人车处理 2026-06-25 17:49:36 +08:00
x
441034e962 mancar 2026-06-17 15:03:22 +08:00
7 changed files with 22 additions and 16 deletions

View File

@@ -2,8 +2,8 @@
"name" : "株洲中钨", "name" : "株洲中钨",
"appid" : "__UNI__B609253", "appid" : "__UNI__B609253",
"description" : "株硬粉末LMS手持系统", "description" : "株硬粉末LMS手持系统",
"versionName" : "1.0.1", "versionName" : "1.0.2",
"versionCode" : 101, "versionCode" : 102,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

@@ -146,11 +146,10 @@
standError: '', standError: '',
disabled: false, disabled: false,
statusMap: { statusMap: {
'1': '未开始', '1': '未审核',
'2': '已下发', '2': '已审核',
'3': '生产中', '3': '生产中',
'4': '等待中', '4': '等待下料'
'5': '已完成'
}, },
reload: false, reload: false,
status: 'more', status: 'more',
@@ -209,6 +208,7 @@
return return
} }
this.showDialog = true this.showDialog = true
this._structListByWorkId()
}, },
// 库位选择事件 // 库位选择事件
onStructChange(e) { onStructChange(e) {
@@ -256,6 +256,10 @@
let res = await structListByWorkId(this.pkId) let res = await structListByWorkId(this.pkId)
if (res.code === '200') { if (res.code === '200') {
this.structList = res.data this.structList = res.data
this.structList.map(el => {
this.$set(el, 'text', el.struct_name)
this.$set(el, 'value', el.struct_code)
})
} }
}, },
async _regionList () { async _regionList () {

View File

@@ -113,11 +113,10 @@
showDialog: false, // 控制弹窗显示 showDialog: false, // 控制弹窗显示
selectType: '0', // 选中的类型 selectType: '0', // 选中的类型
statusMap: { statusMap: {
'1': '未开始', '1': '未审核',
'2': '已下发', '2': '已审核',
'3': '生产中', '3': '生产中',
'4': '等待中', '4': '等待下料'
'5': '已完成'
}, },
reload: false, reload: false,
status: 'more', status: 'more',

View File

@@ -105,11 +105,10 @@
showDialog: false, // 控制弹窗显示 showDialog: false, // 控制弹窗显示
selectType: '0', // 选中的类型 selectType: '0', // 选中的类型
statusMap: { statusMap: {
'1': '未开始', '1': '未审核',
'2': '已下发', '2': '已审核',
'3': '生产中', '3': '生产中',
'4': '等待中', '4': '等待下料'
'5': '已完成'
}, },
reload: false, reload: false,
status: 'more', status: 'more',

View File

@@ -60,6 +60,10 @@
id: '', id: '',
code: '', code: '',
dataList: [], dataList: [],
// dataList: [
// {record_id: 'c1', into_member: '张一', in_time: '2026-5-5 10:20', region_code: 'RG01'},
// {record_id: 'c2', into_member: '李一', in_time: '2026-3-2 17:18', region_code: 'RG02'},
// ],
pkId: '', pkId: '',
pkObj: {}, pkObj: {},
disabled: false, disabled: false,

View File

@@ -131,7 +131,7 @@
this.title = options.title this.title = options.title
}, },
created () { created () {
// this._structList() this._structList()
}, },
methods: { methods: {
async _structList () { async _structList () {

View File

@@ -1,6 +1,6 @@
import * as types from '../types' import * as types from '../types'
const baseUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.10.71:8099' : 'http://192.168.10.71:8099' const baseUrl = process.env.NODE_ENV === 'development' ? 'http://10.30.4.233:8010' : 'http://10.30.4.233:8010'
const acsUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.18.250:8012' : 'http://192.168.18.250:8012' const acsUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.18.250:8012' : 'http://192.168.18.250:8012'
const printUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.81.162:8010' : 'http://192.168.81.162:8010' const printUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.81.162:8010' : 'http://192.168.81.162:8010'
const state = { const state = {