This commit is contained in:
parent
0125a69ed5
commit
ac7371c95b
|
|
@ -426,13 +426,13 @@ export default {
|
|||
// ownPro: [
|
||||
// { required: true, message: "所属工程项目不能为空", trigger: "blur" }
|
||||
// ],
|
||||
typeId: [
|
||||
{
|
||||
required: true,
|
||||
message: '工程类型不能为空',
|
||||
trigger: 'blur',
|
||||
},
|
||||
],
|
||||
// typeId: [
|
||||
// {
|
||||
// required: true,
|
||||
// message: '工程类型不能为空',
|
||||
// trigger: 'blur',
|
||||
// },
|
||||
// ],
|
||||
deptId: [
|
||||
{
|
||||
required: true,
|
||||
|
|
|
|||
|
|
@ -286,7 +286,6 @@
|
|||
placeholder="请输入预领数量"
|
||||
type="number"
|
||||
min="1"
|
||||
@input="checkNum(scope.row)"
|
||||
clearable
|
||||
style="width: 100%"
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -151,6 +151,12 @@
|
|||
prop="num"
|
||||
:show-overflow-tooltip="true"
|
||||
/>
|
||||
<el-table-column
|
||||
label="出库数量"
|
||||
align="center"
|
||||
prop="outNum"
|
||||
:show-overflow-tooltip="true"
|
||||
/>
|
||||
<el-table-column
|
||||
label="预领数量"
|
||||
align="center"
|
||||
|
|
|
|||
|
|
@ -524,6 +524,17 @@
|
|||
prop="maStatus"
|
||||
:show-overflow-tooltip="true"
|
||||
/>
|
||||
<el-table-column label="备注" align="center" prop="remark">
|
||||
<template slot-scope="scope">
|
||||
<el-input
|
||||
v-model="scope.row.remark"
|
||||
placeholder="请输入备注"
|
||||
clearable
|
||||
maxlength="300"
|
||||
style="width: 100%"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
|
|
@ -615,6 +626,17 @@
|
|||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="备注" align="center" prop="remark">
|
||||
<template slot-scope="scope">
|
||||
<el-input
|
||||
v-model="scope.row.remark"
|
||||
placeholder="请输入备注"
|
||||
clearable
|
||||
maxlength="300"
|
||||
style="width: 100%"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</el-dialog>
|
||||
|
||||
|
|
|
|||
|
|
@ -37,13 +37,13 @@ module.exports = {
|
|||
[process.env.VUE_APP_BASE_API]: {
|
||||
// target: `http://112.29.103.165:21626`, //线上环境-重庆
|
||||
// target: `http://112.29.103.165:21624`,//线上环境-宁夏 打包前放开数据大屏的路由
|
||||
// target: `http://192.168.0.56:39080`, //测试环境
|
||||
target: `http://192.168.0.56:39080`, //测试环境
|
||||
// target: `http://1.12.248.179:23028`,//线上环境-南网
|
||||
// target: `https://test-cc.zhgkxt.com`,//线上环境-南网
|
||||
// target: `https://z.csgmall.com.cn`,
|
||||
|
||||
// target: `http://192.168.2.125:39080`, //超
|
||||
target: `http://192.168.2.122:39080`, //超
|
||||
// target: `http://192.168.2.122:39080`, //超
|
||||
|
||||
// target: `http://192.168.2.74:49080`, //旭/
|
||||
// target: `http://192.168.2.17:39080`, //帅
|
||||
|
|
|
|||
Loading…
Reference in New Issue