|
@@ -2,7 +2,7 @@
|
|
|
<view>
|
|
<view>
|
|
|
<h3>请求退回说明</h3>
|
|
<h3>请求退回说明</h3>
|
|
|
<view class="centent">
|
|
<view class="centent">
|
|
|
- <u-input v-model="value" type="textarea" :border="true" height="200" />
|
|
|
|
|
|
|
+ <u-input v-model="content" type="textarea" :border="true" height="200" />
|
|
|
<u-button type="error" class="btn" @click="getSave">提交申请</u-button>
|
|
<u-button type="error" class="btn" @click="getSave">提交申请</u-button>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
@@ -28,6 +28,7 @@
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
// value: '',
|
|
// value: '',
|
|
|
|
|
+ content: this.value,
|
|
|
userid: '',
|
|
userid: '',
|
|
|
time: ''
|
|
time: ''
|
|
|
}
|
|
}
|
|
@@ -53,7 +54,7 @@
|
|
|
}],
|
|
}],
|
|
|
tableName: "t_lhwtsqb",
|
|
tableName: "t_lhwtsqb",
|
|
|
paramCond: {
|
|
paramCond: {
|
|
|
- xiu_gai_bei_zhu_: this.value,
|
|
|
|
|
|
|
+ xiu_gai_bei_zhu_: this.content,
|
|
|
update_time_: this.time,
|
|
update_time_: this.time,
|
|
|
update_by_: this.userid
|
|
update_by_: this.userid
|
|
|
}
|
|
}
|
|
@@ -62,6 +63,7 @@
|
|
|
|
|
|
|
|
this.$http.post("ibps/business/v3/sys/universal/updateDatasContextTable", data).then(res => {
|
|
this.$http.post("ibps/business/v3/sys/universal/updateDatasContextTable", data).then(res => {
|
|
|
if (res.data.state == 200) {
|
|
if (res.data.state == 200) {
|
|
|
|
|
+ this.getFullAll()
|
|
|
uni.showToast({
|
|
uni.showToast({
|
|
|
title: '提交成功',
|
|
title: '提交成功',
|
|
|
icon: 'none',
|
|
icon: 'none',
|
|
@@ -78,6 +80,12 @@
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
|
|
+ },
|
|
|
|
|
+ // 清理缓存
|
|
|
|
|
+ getFullAll() {
|
|
|
|
|
+ this.$http.post("ibps/business/v3/form/cache/system/flushAll", {}).then(res => {
|
|
|
|
|
+
|
|
|
|
|
+ })
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|