|
@@ -247,6 +247,13 @@ export default {
|
|
|
//查看无法编辑
|
|
|
return this.type=="view"?false:true;
|
|
|
},
|
|
|
+ addInputPlace(){
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ let element = document.getElementById('luckysheet_info_detail_input');
|
|
|
+ element.placeholder = '请输入标题'
|
|
|
+ element.style['min-width'] = '120px'
|
|
|
+ })
|
|
|
+ },
|
|
|
async handleQuery() {
|
|
|
const {
|
|
|
data: {
|
|
@@ -279,8 +286,9 @@ export default {
|
|
|
showsheetbar: false,
|
|
|
data:[{}],
|
|
|
userInfo:undefined,
|
|
|
- title:"请输入标题"
|
|
|
+ title:""
|
|
|
})
|
|
|
+ this.addInputPlace();
|
|
|
if (!this.fullscreen){
|
|
|
let interval = setInterval(()=>{
|
|
|
let elementById = document.getElementById("luckysheet-icon-morebtn-div");
|
|
@@ -316,6 +324,7 @@ export default {
|
|
|
userInfo:export_json.info.name.creater
|
|
|
|
|
|
})
|
|
|
+ this.addInputPlace();
|
|
|
if (!this.fullscreen){
|
|
|
let interval = setInterval(()=>{
|
|
|
let elementById = document.getElementById("luckysheet-icon-morebtn-div");
|
|
@@ -387,6 +396,7 @@ export default {
|
|
|
title:name,
|
|
|
userInfo:name.creater
|
|
|
});
|
|
|
+ this.addInputPlace();
|
|
|
if (!this.fullscreen){
|
|
|
let interval = setInterval(()=>{
|
|
|
let elementById = document.getElementById("luckysheet-icon-morebtn-div");
|