|
@@ -483,7 +483,8 @@ export default {
|
|
this.$prompt(selectedOpt.openOptionTips, "请填写", {
|
|
this.$prompt(selectedOpt.openOptionTips, "请填写", {
|
|
confirmButtonText: "确定",
|
|
confirmButtonText: "确定",
|
|
cancelButtonText: "取消",
|
|
cancelButtonText: "取消",
|
|
- customClass: "select-open-dialog"
|
|
|
|
|
|
+ customClass: "select-open-dialog",
|
|
|
|
+ inputType: "textarea"
|
|
}).then(({ value }) => {
|
|
}).then(({ value }) => {
|
|
console.log(`Dialog value: ${value}, `);
|
|
console.log(`Dialog value: ${value}, `);
|
|
this.$set(this.selectedOpenList, this.selectedOpenList.length, {
|
|
this.$set(this.selectedOpenList, this.selectedOpenList.length, {
|
|
@@ -853,4 +854,7 @@ export default {
|
|
.select-open-dialog {
|
|
.select-open-dialog {
|
|
width: 50%;
|
|
width: 50%;
|
|
}
|
|
}
|
|
|
|
+.select-open-dialog textarea{
|
|
|
|
+ height: 100px;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|