信息同步,积分同步 页面

master
382696293@qq.com 2 years ago
parent 9cd6b19958
commit 83dcf16ee1

@ -251,8 +251,8 @@
<el-button v-if="scope.row.activity == 2" size="mini" type="text" @click="openOrCloseActivity(scope.row)">
开启活动
</el-button>
<el-button size="mini" type="text">个人信息同步</el-button>
<el-button size="mini" type="text">积分同步</el-button>
<el-button size="mini" type="text" @click="informationSynchronization(scope.row)"></el-button>
<el-button size="mini" type="text" @click="integralSynchronization(scope.row)"></el-button>
</template>
</el-table-column>
</el-table>
@ -1140,7 +1140,30 @@ export default {
});
}).catch(() => {
});
},
//
informationSynchronization(row) {
this.$confirm("<span style='font-size: 18px'><strong>确定将选择的数据信息同步?</strong></span><br/><span style='padding-left:2em'>请谨慎操作,一旦成功将无法撤销。</span>", "信息同步", {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
dangerouslyUseHTMLString: true
}).then(() => {
alert("用户id" + row.id);
}).catch(() => {
});
},
//
integralSynchronization(row) {
this.$confirm("<span style='font-size: 18px'><strong>确定将选择的数据积分同步?</strong></span><br/><span style='padding-left:2em'>请谨慎操作,一旦成功将无法撤销。</span>", "积分同步", {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
dangerouslyUseHTMLString: true
}).then(() => {
alert("用户id" + row.id);
}).catch(() => {
});
},
/** 提交按钮 */
submitForm() {

Loading…
Cancel
Save