Commit 17dd35c2 by nanrui

eadinf优化

parent b6ed56f7
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
<!-- 变动日期 --> <!-- 变动日期 -->
<c-col :span="24"> <c-col :span="24">
<el-form-item label="变动日期" prop="eblmod.ebl.reldat"> <el-form-item label="变动日期" prop="eblmod.ebl.reldat">
<c-date-picker type="date" v-model="model.recp.dclp.chdate" style="width:100%" disabled <c-date-picker type="date" v-model="model.recp.dclp.chdate" style="width:100%"
placeholder="请选择变动日期"></c-date-picker> placeholder="请选择变动日期"></c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="发生日期" prop="cfabut.paydat"> <el-form-item label="发生日期" prop="cfabut.paydat">
<c-date-picker type="date" v-model="model.cfabut.paydat" style="width:100%" <c-date-picker type="date" v-model="model.cfabut.paydat" style="width:100%"
placeholder="请输入发生日期" disabled></c-date-picker> placeholder="请输入发生日期"></c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
...@@ -137,14 +137,14 @@ export default { ...@@ -137,14 +137,14 @@ export default {
methods: { methods: {
...Event, ...Event,
toEadame () { toEadame () {
console.log('进入Eadame交易'); this.$router.history.push("/business/eadame");
}, },
toEaddel () { toEaddel () {
console.log('进入Eaddel交易'); this.$router.history.push("/business/eaddel");
} }
}, },
created: function () { created: function () {
this.model.cfabut.paydat = new Date();
} }
} }
</script> </script>
......
<template> <template>
<div class="eContainer"> <div class="eContainer">
<el-form :model="model" :rules="rules" ref="modelForm" label-width="150px" label-position="right" size="small" <c-page tittle="查-外债海外代付">
:validate-on-rule-change="false"> <el-form :model="model" :rules="rules" ref="modelForm" label-width="150px" label-position="right"
size="small" :validate-on-rule-change="false">
<c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="myTabClick"> <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="myTabClick">
<!--cfabut PD000002 接口数据 --> <!--cfabut PD000002 接口数据 -->
<el-tab-pane label="接口数据" name="sel"> <el-tab-pane label="接口数据" name="sel">
...@@ -23,7 +24,10 @@ ...@@ -23,7 +24,10 @@
</el-tab-pane> </el-tab-pane>
</c-tabs> </c-tabs>
</el-form> </el-form>
<c-function-btn :handleSubmit="handleSubmit" :handleCheck="handleCheck" :handleStash="handleStash"></c-function-btn>
<c-function-btn :handleSubmit="handleSubmit.bind(this, 'cfabut.sav')"
:handleCheck="handleCheck.bind(this, 'cfabut.chk')" :handleStash="handleStash"></c-function-btn>
</c-page>
</div> </div>
</template> </template>
<script> <script>
...@@ -88,6 +92,9 @@ export default { ...@@ -88,6 +92,9 @@ export default {
else { else {
this.$notify.error({ title: '错误', message: '服务请求失败!' }); this.$notify.error({ title: '错误', message: '服务请求失败!' });
} }
},
mounted() {
window.Vue = this;
} }
} }
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment