|
|
@@ -51,6 +51,8 @@
|
|
|
></Input>
|
|
|
<Button type="primary" @click="search()">查询</Button>
|
|
|
</FormItem>
|
|
|
+
|
|
|
+ <Button type="primary" @click="tb('同步倍数')">同步倍数</Button>
|
|
|
</Form>
|
|
|
</Card>
|
|
|
|
|
|
@@ -236,6 +238,23 @@ export default {
|
|
|
this.getList();
|
|
|
},
|
|
|
methods: {
|
|
|
+ tb(tit) {
|
|
|
+ let delfromData = {
|
|
|
+ title: tit,
|
|
|
+ url: `finance/integral/set_rate`,
|
|
|
+ method: "post",
|
|
|
+ ids: "",
|
|
|
+ };
|
|
|
+ this.$modalSure(delfromData)
|
|
|
+ .then((res) => {
|
|
|
+ this.$Message.success(res.msg);
|
|
|
+
|
|
|
+ this.getList();
|
|
|
+ })
|
|
|
+ .catch((res) => {
|
|
|
+ this.$Message.error(res.msg);
|
|
|
+ });
|
|
|
+ },
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
getFlowList(this.formValidate)
|