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