|
@@ -226,7 +226,7 @@
|
|
style="width: 200px"
|
|
style="width: 200px"
|
|
@keyup.enter.native="handleQuery"
|
|
@keyup.enter.native="handleQuery"
|
|
:remote-method="corpsRemoteMethod"
|
|
:remote-method="corpsRemoteMethod"
|
|
- :disabled="notChange"
|
|
|
|
|
|
+ :disabled="doNot"
|
|
placeholder="请输入结算单位"
|
|
placeholder="请输入结算单位"
|
|
>
|
|
>
|
|
<el-option
|
|
<el-option
|
|
@@ -364,6 +364,7 @@
|
|
clearable
|
|
clearable
|
|
size="small"
|
|
size="small"
|
|
style="width: 200px"
|
|
style="width: 200px"
|
|
|
|
+ :disabled="doNot"
|
|
@keyup.enter.native="handleQuery"
|
|
@keyup.enter.native="handleQuery"
|
|
:remote-method="corpsRemoteMethod"
|
|
:remote-method="corpsRemoteMethod"
|
|
placeholder="请输入结算单位"
|
|
placeholder="请输入结算单位"
|
|
@@ -508,7 +509,7 @@
|
|
</el-table>
|
|
</el-table>
|
|
<div slot="footer" class="dialog-footer">
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="confirmImport">确 定</el-button>
|
|
<el-button type="primary" @click="confirmImport">确 定</el-button>
|
|
- <el-button @click="innerVisible = false">取 消</el-button>
|
|
|
|
|
|
+ <el-button @click="signOut">取 消</el-button>
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
@@ -582,6 +583,7 @@ export default {
|
|
name: 'Charge',
|
|
name: 'Charge',
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ doNot:false,
|
|
Lander:'',
|
|
Lander:'',
|
|
Operator:'',
|
|
Operator:'',
|
|
approve:false,
|
|
approve:false,
|
|
@@ -736,6 +738,16 @@ export default {
|
|
this.adoPt()
|
|
this.adoPt()
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ //财务主取消
|
|
|
|
+ signOut(){
|
|
|
|
+ if(this.increase_s.length == 0){
|
|
|
|
+ this.doNot = false
|
|
|
|
+ }else{
|
|
|
|
+ this.doNot = true
|
|
|
|
+ }
|
|
|
|
+ this.innerVisible = false
|
|
|
|
+ this.feeList = []
|
|
|
|
+ },
|
|
//收费页面合计
|
|
//收费页面合计
|
|
listTotal(param){
|
|
listTotal(param){
|
|
const { columns, data } = param
|
|
const { columns, data } = param
|
|
@@ -1024,6 +1036,9 @@ export default {
|
|
this.chargeList_s = []
|
|
this.chargeList_s = []
|
|
// this.queryParameter.fToCorpid = this.queryParams.fCorpid
|
|
// this.queryParameter.fToCorpid = this.queryParams.fCorpid
|
|
this.innerVisible = true
|
|
this.innerVisible = true
|
|
|
|
+ if(this.queryParams.fCorpid){
|
|
|
|
+ this.doNot = true
|
|
|
|
+ }
|
|
},
|
|
},
|
|
getSum(param){
|
|
getSum(param){
|
|
const {columns,data} = param;
|
|
const {columns,data} = param;
|
|
@@ -1083,6 +1098,7 @@ export default {
|
|
},
|
|
},
|
|
//确认导入
|
|
//确认导入
|
|
confirmImport() {
|
|
confirmImport() {
|
|
|
|
+ this.doNot = true
|
|
this.hide = true
|
|
this.hide = true
|
|
for (let item in this.selection) {
|
|
for (let item in this.selection) {
|
|
this.pass.fAmtcr += Number(this.selection[item].fAmt)
|
|
this.pass.fAmtcr += Number(this.selection[item].fAmt)
|
|
@@ -1340,6 +1356,11 @@ export default {
|
|
this.fMblnoOptions = response.data.corps
|
|
this.fMblnoOptions = response.data.corps
|
|
this.open = true
|
|
this.open = true
|
|
this.title = '修改收费列表'
|
|
this.title = '修改收费列表'
|
|
|
|
+ if(this.DzfeeList){
|
|
|
|
+ this.doNot = true
|
|
|
|
+ }else{
|
|
|
|
+ this.doNot = false
|
|
|
|
+ }
|
|
})
|
|
})
|
|
},
|
|
},
|
|
/** 提交按钮 */
|
|
/** 提交按钮 */
|
|
@@ -1431,6 +1452,12 @@ export default {
|
|
this.queryParams.fAmtcr += this.increase_s[item].fAmt
|
|
this.queryParams.fAmtcr += this.increase_s[item].fAmt
|
|
this.queryParams.fAmtdr += this.increase_s[item].fAmtdr
|
|
this.queryParams.fAmtdr += this.increase_s[item].fAmtdr
|
|
}
|
|
}
|
|
|
|
+ if(this.increase_s == 0){
|
|
|
|
+ console.log("111")
|
|
|
|
+ this.doNot = false
|
|
|
|
+ }else{
|
|
|
|
+ this.doNot = true
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|