|
@@ -9,7 +9,7 @@
|
|
>
|
|
>
|
|
<div class="form-dialog-box"
|
|
<div class="form-dialog-box"
|
|
v-loading="loading"
|
|
v-loading="loading"
|
|
- element-loading-text="拼命加载数据中"
|
|
|
|
|
|
+ :element-loading-text="loadingText"
|
|
element-loading-spinner="el-icon-loading"
|
|
element-loading-spinner="el-icon-loading"
|
|
element-loading-background="rgba(0, 0, 0, 0.8)">
|
|
element-loading-background="rgba(0, 0, 0, 0.8)">
|
|
<el-form :model="form" ref="form" :rules="rules" label-width="130px">
|
|
<el-form :model="form" ref="form" :rules="rules" label-width="130px">
|
|
@@ -34,7 +34,7 @@
|
|
<el-button
|
|
<el-button
|
|
type="primary"
|
|
type="primary"
|
|
@click="submitForm"
|
|
@click="submitForm"
|
|
- v-loading="loading"
|
|
|
|
|
|
+ :loading="loading"
|
|
element-loading-text="提交中..."
|
|
element-loading-text="提交中..."
|
|
element-loading-spinner="el-icon-loading"
|
|
element-loading-spinner="el-icon-loading"
|
|
element-loading-background="rgba(0, 0, 0, 0.8)"
|
|
element-loading-background="rgba(0, 0, 0, 0.8)"
|
|
@@ -68,6 +68,7 @@ export default {
|
|
model: "", // EDIT: 编辑模式 ADD : 新增模式 EDITInit : 编辑模式(需要请求详情)
|
|
model: "", // EDIT: 编辑模式 ADD : 新增模式 EDITInit : 编辑模式(需要请求详情)
|
|
open: false,
|
|
open: false,
|
|
loading: false,
|
|
loading: false,
|
|
|
|
+ loadingText: "拼命加载数据中...",
|
|
formStatus: null, // 0/null : 加载中 1 : 获取详情成功 2 : 获取详情失败
|
|
formStatus: null, // 0/null : 加载中 1 : 获取详情成功 2 : 获取详情失败
|
|
configUrl: {
|
|
configUrl: {
|
|
add: '/system/question/insertOrUpdate', // 新增地址
|
|
add: '/system/question/insertOrUpdate', // 新增地址
|
|
@@ -111,6 +112,7 @@ export default {
|
|
async initData(title , model,row){
|
|
async initData(title , model,row){
|
|
this.title = title
|
|
this.title = title
|
|
this.open = true
|
|
this.open = true
|
|
|
|
+ this.loadingText = "拼命加载数据中..."
|
|
this.loading = true
|
|
this.loading = true
|
|
this.model = model
|
|
this.model = model
|
|
this.formStatus = 0
|
|
this.formStatus = 0
|
|
@@ -119,7 +121,7 @@ export default {
|
|
this.formStatus = 1
|
|
this.formStatus = 1
|
|
}else if(model=='EDIT') { // 新增
|
|
}else if(model=='EDIT') { // 新增
|
|
let obj = {
|
|
let obj = {
|
|
- ...res.data
|
|
|
|
|
|
+ ...row
|
|
}
|
|
}
|
|
this.$set(this,'form',obj)
|
|
this.$set(this,'form',obj)
|
|
this.formStatus = 1
|
|
this.formStatus = 1
|
|
@@ -141,7 +143,7 @@ export default {
|
|
let res = await getTableDeatilsByIdApi(this.configUrl.details,{id})
|
|
let res = await getTableDeatilsByIdApi(this.configUrl.details,{id})
|
|
if(res.code == 200) {
|
|
if(res.code == 200) {
|
|
let obj = {
|
|
let obj = {
|
|
- ...row
|
|
|
|
|
|
+ ...res.data
|
|
}
|
|
}
|
|
this.$set(this,'form',JSON.parse(JSON.stringify(obj)))
|
|
this.$set(this,'form',JSON.parse(JSON.stringify(obj)))
|
|
this.formStatus = 1
|
|
this.formStatus = 1
|
|
@@ -167,6 +169,7 @@ export default {
|
|
submitForm() {
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
if (valid) {
|
|
|
|
+ this.loadingText = "提交数据中..."
|
|
this.loading = true
|
|
this.loading = true
|
|
if (this.model != 'ADD') {
|
|
if (this.model != 'ADD') {
|
|
addTableApi(
|
|
addTableApi(
|