|
@@ -25,7 +25,7 @@
|
|
|
<script>
|
|
|
import { parseTime } from '@/utils'
|
|
|
import { getToken } from '@/utils/auth'
|
|
|
-import { Query, newData } from '@/api/webApi'
|
|
|
+import { Query, newData, modifyData } from '@/api/webApi'
|
|
|
export default {
|
|
|
name: 'BaggageStory',
|
|
|
props: {
|
|
@@ -62,6 +62,17 @@ export default {
|
|
|
},
|
|
|
event: '1'
|
|
|
}
|
|
|
+ const parmasts = {
|
|
|
+ "serviceId": SERVICE_ID.advancedRemakesId,
|
|
|
+ "page": 1,
|
|
|
+ "pageSize": 10,
|
|
|
+ "dataContent": {
|
|
|
+ "ID": this.storyId,
|
|
|
+ "luggage_describe": "..."
|
|
|
+ },
|
|
|
+ "event": "2"
|
|
|
+ }
|
|
|
+ await modifyData(parmasts)
|
|
|
const { code } = await newData(params)
|
|
|
if (code == 0) {
|
|
|
const item = {
|