|
@@ -34,6 +34,24 @@
|
|
|
</h2>
|
|
|
<div class="small-title">基本信息</div>
|
|
|
<ws-info-table>
|
|
|
+ <!--任务编号-->
|
|
|
+ <ws-form-item label="任务编号" span="1" prop="inOutTaskNo">
|
|
|
+ <el-select
|
|
|
+ filterable
|
|
|
+ clearable
|
|
|
+ v-model="dataList.inOutTaskNo"
|
|
|
+ placeholder="请选择任务编号"
|
|
|
+ class="typeselect"
|
|
|
+ @change="contractNoChange"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in deptBudgetList2"
|
|
|
+ :key="item.inOutTaskNo"
|
|
|
+ :label="item.inOutTaskNo"
|
|
|
+ :value="item.inOutTaskNo"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </ws-form-item>
|
|
|
<ws-form-item label="合同编号" span="1" prop="contractNo">
|
|
|
<ws-select
|
|
|
v-model="dataList.contractNo"
|
|
@@ -360,7 +378,8 @@ import {
|
|
|
addstorageputList,
|
|
|
xialaNo,
|
|
|
getstaff,
|
|
|
- getPrintInfo
|
|
|
+ getPrintInfo,
|
|
|
+ getReceiptTaskNo
|
|
|
} from '@/model/warehouse/index'
|
|
|
import { downloadFile } from '@/utils/batchDown'
|
|
|
import Pagination from '@/components/Pagination'
|
|
@@ -392,6 +411,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ deptBudgetList2:[],
|
|
|
//弹出框
|
|
|
dialogViewSpareMoney: false,
|
|
|
dialogApproveFormVisible: false,
|
|
@@ -521,6 +541,11 @@ export default {
|
|
|
this.dataList.statusFlag = this.$route.statusFlag
|
|
|
this.dataList.warehouseInOutDetail = this.$route.query.warehouseInOutDetail
|
|
|
console.log(this.dataList)
|
|
|
+ getReceiptTaskNo().toPromise()
|
|
|
+ .then((response) => {
|
|
|
+ console.log(response)
|
|
|
+ this.deptBudgetList2 = response
|
|
|
+ })
|
|
|
},
|
|
|
methods: {
|
|
|
async closePort() {
|