1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
| <template> <div class="container"> <div class="card text-bg-secondary" style="margin-top: 20px;"> <div class="card-header"> <h3>My Bots</h3> </div> <div class="card-body" style="background-color: rgba(255, 255, 255, 0.5);"> <div class="row"> <div class="col-md-3"> <div class="card"> <div class="card-body text-center"> <img class="img-fluid" :src="$store.state.user.photo" style="width: 50%; border-radius: 50%;"> <div style="font-size: 20px; margin-top: 10px; font-weight: bold;"> {{ $store.state.user.username }} </div> </div> </div> </div> <div class="col-md-9"> <div class="card"> <div class="card-header"> <span style="font-size: 25px;">Bot 管理</span> <button class="btn btn-outline-success float-end" type="button" data-bs-toggle="modal" data-bs-target="#add_bot_modal"> 创建 Bot </button> <div class="modal fade" id="add_bot_modal" tabindex="-1"> <div class="modal-dialog modal-xl"> <div class="modal-content"> <div class="modal-header" style="background-color: #198754;"> <h1 class="modal-title fs-5" style="color: white;">创建 Bot</h1> <button type="button" class="btn-close" data-bs-dismiss="modal"></button> </div> <div class="modal-body"> <div class="mb-3"> <label for="title" class="form-label">名称</label> <input v-model="new_bot.title" type="email" class="form-control" id="title" placeholder="请输入 Bot 名称"> </div> <div class="mb-3"> <label for="description" class="form-label">简介</label> <textarea v-model="new_bot.description" class="form-control" id="description" rows="3" placeholder="介绍一下你的 Bot 吧~(可以暂时不填)"></textarea> </div> <div class="mb-3"> <label for="content" class="form-label">代码</label> <textarea v-model="new_bot.content" class="form-control" id="content" rows="14" placeholder="在这里编写你的 Bot 代码~"></textarea> </div> </div> <div class="modal-footer"> <div class="error_message" style="color: red;">{{ new_bot.error_message }}</div> <button type="button" class="btn btn-success" @click="add_bot">创建</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">取消</button> </div> </div> </div> </div> </div> <div class="card-body"> <table class="table table-striped table-hover"> <thead> <tr> <th>名称</th> <th>创建时间</th> <th>操作</th> </tr> </thead> <tbody> <tr v-for="bot in bots" :key="bot.id"> <td style="line-height: 32px;">{{ bot.title }}</td> <td style="line-height: 32px;">{{ bot.createtime }}</td> <td> <button class="btn btn-outline-primary" type="button" data-bs-toggle="modal" :data-bs-target="'#update_bot_modal_' + bot.id" style="margin-right: 10px; padding: 3px 10px;"> 修改 </button> <button class="btn btn-outline-danger" type="button" data-bs-toggle="modal" :data-bs-target="'#remove_bot_modal_' + bot.id" style="padding: 3px 10px;"> 删除 </button> <div class="modal fade" :id="'update_bot_modal_' + bot.id" tabindex="-1"> <div class="modal-dialog modal-xl"> <div class="modal-content"> <div class="modal-header" style="background-color: #0D6EFD;"> <h1 class="modal-title fs-5" style="color: white;">修改 Bot</h1> <button type="button" class="btn-close" data-bs-dismiss="modal"></button> </div> <div class="modal-body"> <div class="mb-3"> <label for="title" class="form-label">名称</label> <input v-model="bot.title" type="email" class="form-control" id="title" placeholder="请输入 Bot 名称"> </div> <div class="mb-3"> <label for="description" class="form-label">简介</label> <textarea v-model="bot.description" class="form-control" id="description" rows="3" placeholder="介绍一下你的 Bot 吧~(可以暂时不填)"></textarea> </div> <div class="mb-3"> <label for="content" class="form-label">代码</label> <textarea v-model="bot.content" class="form-control" id="content" rows="14" placeholder="在这里编写你的 Bot 代码~"></textarea> </div> </div> <div class="modal-footer"> <div class="error_message" style="color: red;">{{ new_bot.error_message }}</div> <button type="button" class="btn btn-primary" @click="update_bot(bot)">保存修改</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">取消</button> </div> </div> </div> </div> <div class="modal fade" :id="'remove_bot_modal_' + bot.id" tabindex="-1"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <div class="modal-header" style="background-color: #DC3545;"> <h1 class="modal-title fs-5" style="color: white;">警告</h1> <button type="button" class="btn-close" data-bs-dismiss="modal"></button> </div> <div class="modal-body" style="font-size: 20px;"> 确认删除?该操作无法撤销哦~ </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" @click="remove_bot(bot)">删除</button> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">取消</button> </div> </div> </div> </div> </td> </tr> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> </template>
<script> import { ref, reactive } from "vue"; import { useStore } from "vuex"; import { Modal } from "bootstrap/dist/js/bootstrap"; import $ from "jquery";
export default { setup() { const store = useStore(); let bots = ref([]);
const new_bot = reactive({ title: "", description: "", content: "", error_message: "", });
const get_bots = () => { $.ajax({ url: "http://localhost:3000/user/bot/getlist/", type: "GET", headers: { Authorization: "Bearer " + store.state.user.jwt_token, }, success(resp) { bots.value = resp; }, }); };
get_bots();
const add_bot = () => { new_bot.error_message = ""; $.ajax({ url: "http://localhost:3000/user/bot/add/", type: "POST", data: { title: new_bot.title, description: new_bot.description, content: new_bot.content, }, headers: { Authorization: "Bearer " + store.state.user.jwt_token, }, success(resp) { if (resp.result === "success") { new_bot.title = ""; new_bot.description = ""; new_bot.content = ""; Modal.getInstance("#add_bot_modal").hide(); get_bots(); } else { new_bot.error_message = resp.result; } }, }); };
const remove_bot = (bot) => { $.ajax({ url: "http://localhost:3000/user/bot/remove/", type: "POST", data: { bot_id: bot.id, }, headers: { Authorization: "Bearer " + store.state.user.jwt_token, }, success(resp) { if (resp.result === "success") { Modal.getInstance("#remove_bot_modal_" + bot.id).hide(); get_bots(); } }, }); };
const update_bot = (bot) => { new_bot.error_message = ""; $.ajax({ url: "http://localhost:3000/user/bot/update/", type: "POST", data: { bot_id: bot.id, title: bot.title, description: bot.description, content: bot.content, }, headers: { Authorization: "Bearer " + store.state.user.jwt_token, }, success(resp) { if (resp.result === "success") { Modal.getInstance("#update_bot_modal_" + bot.id).hide(); get_bots(); } else { new_bot.error_message = resp.result; } }, }); };
return { bots, new_bot, add_bot, remove_bot, update_bot, }; }, }; </script>
<style scoped></style>
|