| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <div>
- <el-dialog
- :visible.sync="formVisible"
- width="268px"
- :close-on-click-modal="false"
- :close-on-press-escape="false"
- :center="true"
- >
- <div class="form-title" slot="title">
- 解绑账号
- </div>
- <div class="unbind-main">
- <el-checkbox v-model="checked">删除所有已抓取的内容</el-checkbox>
- </div>
- <div class="submit-btn">解除绑定</div>
- </el-dialog>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- checked:false,
- formVisible: false,
- };
- },
- methods: {
- show() {
- this.formVisible = true;
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .flex-center {
- display: flex;
- align-items: center;
- }
- .form-title {
- text-align: center;
- height: 20px;
- font-size: 18px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #0b121a;
- line-height: 20px;
- }
- .submit-btn {
- margin: 0 auto;
- width: 188px;
- height: 46px;
- background: #308eff;
- border-radius: 2px;
- text-align: center;
- line-height: 46px;
- font-size: 16px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #ffffff;
- cursor: pointer;
- }
- .unbind-main{
- margin-bottom: 20px;
- }
- </style>
|