更新
This commit is contained in:
@@ -27,7 +27,9 @@
|
|||||||
<!-- 搜索部分开始 -->
|
<!-- 搜索部分开始 -->
|
||||||
<el-form label-width="90px" :inline="true" :model="page" :size="$store.getters.size">
|
<el-form label-width="90px" :inline="true" :model="page" :size="$store.getters.size">
|
||||||
<el-col :span="18">
|
<el-col :span="18">
|
||||||
<autocomplete class="mr20" :params="page.params" :config="configAutocomplete" />
|
<el-form-item>
|
||||||
|
<autocomplete class="mr20" :params="page.params" :config="configAutocomplete" />
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item prop="createTimeRange">
|
<el-form-item prop="createTimeRange">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
@@ -231,7 +233,7 @@ export default {
|
|||||||
goIn: 0,
|
goIn: 0,
|
||||||
importData: {},
|
importData: {},
|
||||||
page: {
|
page: {
|
||||||
pageSize: 10, // 每页显示条数
|
pageSize: 10000, // 每页显示条数
|
||||||
currentPage: 1, // 默认页
|
currentPage: 1, // 默认页
|
||||||
totalCount: 0,
|
totalCount: 0,
|
||||||
params: {},
|
params: {},
|
||||||
@@ -440,12 +442,9 @@ export default {
|
|||||||
this.importData.createSource = 'XOIL_OMS_WEB'
|
this.importData.createSource = 'XOIL_OMS_WEB'
|
||||||
this.importData.orderStartDate = this.createT
|
this.importData.orderStartDate = this.createT
|
||||||
this.importData.orderEndDate = this.endT
|
this.importData.orderEndDate = this.endT
|
||||||
this.importData.settlementObjectName = this.$refs.changeName.selectedLabel
|
this.importData.settlementObjectName = this.selectedStaffList[0].customerName
|
||||||
this.importData.settlementId = this.selectedStaffList[0].customerId
|
this.importData.settlementId = this.selectedStaffList[0].customerId
|
||||||
if (!this.importData.settlementObjectName) {
|
|
||||||
this.$message.error('企业名称为空,无法提交')
|
|
||||||
return
|
|
||||||
}
|
|
||||||
this.submitDialog = true
|
this.submitDialog = true
|
||||||
},
|
},
|
||||||
search() {
|
search() {
|
||||||
|
|||||||
@@ -126,7 +126,9 @@
|
|||||||
<div class="button-style" :span="24">
|
<div class="button-style" :span="24">
|
||||||
<el-divider style="width: 100%"></el-divider>
|
<el-divider style="width: 100%"></el-divider>
|
||||||
<el-button @click="close(1)" style="margin-right: 10px">关闭</el-button>
|
<el-button @click="close(1)" style="margin-right: 10px">关闭</el-button>
|
||||||
<el-button v-if="importData.auditState == 0" type="primary" @click="submit" style="margin-right: 10px">结算单审核 </el-button>
|
<el-button v-permission="['oil:to:examine']" v-if="importData.auditState == 0" type="primary" @click="submit" style="margin-right: 10px"
|
||||||
|
>结算单审核
|
||||||
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
<el-dialog class="dialogInfo" append-to-body :visible.sync="submitDialog" v-if="submitDialog" width="500px">
|
<el-dialog class="dialogInfo" append-to-body :visible.sync="submitDialog" v-if="submitDialog" width="500px">
|
||||||
<el-form class="messageConfirm" ref="form" :model="importData" label-width="110px" size="mini">
|
<el-form class="messageConfirm" ref="form" :model="importData" label-width="110px" size="mini">
|
||||||
@@ -182,6 +184,7 @@
|
|||||||
import { imgCompress } from '@/utils'
|
import { imgCompress } from '@/utils'
|
||||||
import internalCompanyApi from '@/api/user/internalCompany'
|
import internalCompanyApi from '@/api/user/internalCompany'
|
||||||
import utils from '@/utils/encode'
|
import utils from '@/utils/encode'
|
||||||
|
import { mapGetters } from 'vuex'
|
||||||
const JSESSIONID = utils.uuid()
|
const JSESSIONID = utils.uuid()
|
||||||
export default {
|
export default {
|
||||||
filters: {},
|
filters: {},
|
||||||
|
|||||||
Reference in New Issue
Block a user