|
@@ -45,7 +45,7 @@
|
|
</el-row>
|
|
</el-row>
|
|
<el-dialog title="审核" :visible.sync="shenheDialog" :show-close="false">
|
|
<el-dialog title="审核" :visible.sync="shenheDialog" :show-close="false">
|
|
<el-form :model="shenheForm">
|
|
<el-form :model="shenheForm">
|
|
- <el-form-item label="备注">
|
|
|
|
|
|
+ <el-form-item label="备注" :label-width="formLabelWidth">
|
|
<el-input v-model="shenheForm.senhemessage" type="textarea" :autosize="{ minRows: 2, maxRows: 4 }"></el-input>
|
|
<el-input v-model="shenheForm.senhemessage" type="textarea" :autosize="{ minRows: 2, maxRows: 4 }"></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-form>
|
|
@@ -54,10 +54,15 @@
|
|
<el-button type="primary" @click="shenheBtn">确 定</el-button>
|
|
<el-button type="primary" @click="shenheBtn">确 定</el-button>
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
- <el-dialog title="授信" :visible.sync="shouxinDialog" :show-close="false">
|
|
|
|
- <el-form :model="shouxinForm">
|
|
|
|
- <el-form-item label="备注">
|
|
|
|
- <el-input v-model="shouxinForm.money" type="text" placeholder="请输入授信金额"></el-input>
|
|
|
|
|
|
+ <el-dialog title="授信" :visible.sync="shouxinDialog" :show-close="false" class="demo-ruleForm">
|
|
|
|
+ <el-form :model="shouxinForm" ref="shouxinForm">
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="授信金额"
|
|
|
|
+ prop="money"
|
|
|
|
+ :label-width="formLabelWidth"
|
|
|
|
+ :rules="[{ required: true, message: '金额不能为空' }, , { type: 'number', message: '金额必须为数字值' }]"
|
|
|
|
+ >
|
|
|
|
+ <el-input v-model.number="shouxinForm.money" type="text" autocomplete="off" placeholder="请输入授信金额(万元)"></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<div slot="footer" class="dialog-footer">
|
|
@@ -73,39 +78,49 @@ export default {
|
|
name: 'intelligentDockingFollowDetails',
|
|
name: 'intelligentDockingFollowDetails',
|
|
props: {
|
|
props: {
|
|
form: null,
|
|
form: null,
|
|
- shenheDialog: null,
|
|
|
|
|
|
+ // shenheDialog: null,
|
|
shenheForm: null,
|
|
shenheForm: null,
|
|
- shouxinDialog: null,
|
|
|
|
|
|
+ // shouxinDialog: null,
|
|
shouxinForm: null,
|
|
shouxinForm: null,
|
|
},
|
|
},
|
|
components: {},
|
|
components: {},
|
|
- data: () => ({}),
|
|
|
|
|
|
+ data: () => ({
|
|
|
|
+ shenheDialog: false,
|
|
|
|
+ shouxinDialog: false,
|
|
|
|
+ formLabelWidth: '80px',
|
|
|
|
+ }),
|
|
created() {},
|
|
created() {},
|
|
computed: {},
|
|
computed: {},
|
|
methods: {
|
|
methods: {
|
|
// 打开审核
|
|
// 打开审核
|
|
shenheBtns() {
|
|
shenheBtns() {
|
|
|
|
+ this.shenheDialog = true;
|
|
this.$emit('shenheBtns');
|
|
this.$emit('shenheBtns');
|
|
},
|
|
},
|
|
// 取消审核
|
|
// 取消审核
|
|
shenheOut() {
|
|
shenheOut() {
|
|
|
|
+ this.shenheDialog = false;
|
|
this.$emit('shenheOut');
|
|
this.$emit('shenheOut');
|
|
},
|
|
},
|
|
// 提交审核
|
|
// 提交审核
|
|
shenheBtn() {
|
|
shenheBtn() {
|
|
this.$emit('shenheBtn', { data: this.shenheForm });
|
|
this.$emit('shenheBtn', { data: this.shenheForm });
|
|
|
|
+ this.shenheDialog = false;
|
|
},
|
|
},
|
|
// 打开授信
|
|
// 打开授信
|
|
shouxinBtns() {
|
|
shouxinBtns() {
|
|
|
|
+ this.shouxinDialog = true;
|
|
this.$emit('shouxinBtns');
|
|
this.$emit('shouxinBtns');
|
|
},
|
|
},
|
|
// 取消授信
|
|
// 取消授信
|
|
shouxinOut() {
|
|
shouxinOut() {
|
|
|
|
+ this.shouxinDialog = false;
|
|
this.$emit('shouxinOut');
|
|
this.$emit('shouxinOut');
|
|
},
|
|
},
|
|
// 提交授信
|
|
// 提交授信
|
|
shouxinBtn() {
|
|
shouxinBtn() {
|
|
this.$emit('shouxinBtn', { data: this.shouxinForm });
|
|
this.$emit('shouxinBtn', { data: this.shouxinForm });
|
|
|
|
+ this.shouxinDialog = false;
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|