|
@@ -0,0 +1,521 @@
|
|
|
|
+<template>
|
|
|
|
+ <div style="padding-left: 5px">
|
|
|
|
+ <el-breadcrumb separator=">">
|
|
|
|
+ <el-breadcrumb-item :to="{ path: '/' }">首页</el-breadcrumb-item>
|
|
|
|
+ <el-breadcrumb-item>
|
|
|
|
+ <a href="#">基础信息管理</a>
|
|
|
|
+ </el-breadcrumb-item>
|
|
|
|
+ <el-breadcrumb-item>
|
|
|
|
+ <a href="/driverInfo">司机管理</a>
|
|
|
|
+ </el-breadcrumb-item>
|
|
|
|
+ </el-breadcrumb>
|
|
|
|
+ <el-divider></el-divider>
|
|
|
|
+ <el-form
|
|
|
|
+ ref="queryForm"
|
|
|
|
+ :model="queryModel"
|
|
|
|
+ inline
|
|
|
|
+ class="demo-form-inline"
|
|
|
|
+ >
|
|
|
|
+ <el-form-item label="所属公司" prop="companyId">
|
|
|
|
+ <el-select-tree
|
|
|
|
+ size="mini"
|
|
|
|
+ :props="props"
|
|
|
|
+ :options="companyResult"
|
|
|
|
+ v-model="queryModel.companyId"
|
|
|
|
+ height="200"
|
|
|
|
+ ></el-select-tree
|
|
|
|
+ >
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="车牌号" prop="licensePlateNumber">
|
|
|
|
+ <el-input type="text" size="mini" v-model="queryModel.licensePlateNumber"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="gps设备编号" prop="gpsDeviceNo">
|
|
|
|
+ <el-input type="text" size="mini" v-model="queryModel.gpsDeviceNo"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="设备编号" prop="deviceNo">
|
|
|
|
+ <el-input type="text" size="mini" v-model="queryModel.deviceNo"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-button
|
|
|
|
+ type="primary"
|
|
|
|
+ size="mini"
|
|
|
|
+ icon="ios-search"
|
|
|
|
+ @click="changePage(1)"
|
|
|
|
+ :loading="loading"
|
|
|
|
+ >查询</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-button
|
|
|
|
+ type="info"
|
|
|
|
+ size="mini"
|
|
|
|
+ style="margin-left: 8px"
|
|
|
|
+ @click="handleReset('queryForm')"
|
|
|
|
+ >重置</el-button
|
|
|
|
+ >
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+ <el-divider></el-divider>
|
|
|
|
+ <el-row class="button-group">
|
|
|
|
+ <el-button
|
|
|
|
+ type="primary"
|
|
|
|
+ size="small"
|
|
|
|
+ plain
|
|
|
|
+ icon="el-icon-circle-plus"
|
|
|
|
+ @click="handleAdd"
|
|
|
|
+ >新增</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-button
|
|
|
|
+ type="primary"
|
|
|
|
+ size="small"
|
|
|
|
+ plain
|
|
|
|
+ icon="el-icon-remove"
|
|
|
|
+ :disabled="multipleSelection.length == 0"
|
|
|
|
+ @click="handleBatchDelete"
|
|
|
|
+ >删除选中项</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-button
|
|
|
|
+ type="primary"
|
|
|
|
+ size="small"
|
|
|
|
+ plain
|
|
|
|
+ icon="el-icon-upload2"
|
|
|
|
+ @click="batchImportVisible = true"
|
|
|
|
+ >导入</el-button
|
|
|
|
+ >
|
|
|
|
+ </el-row>
|
|
|
|
+ <el-table
|
|
|
|
+ ref="formTable"
|
|
|
|
+ :data="tableData"
|
|
|
|
+ v-loading="loading"
|
|
|
|
+ stripe
|
|
|
|
+ :height="tableHeight"
|
|
|
|
+ @sort-change="sortChange"
|
|
|
|
+ @selection-change="handleSelectionChange"
|
|
|
|
+ >
|
|
|
|
+ <el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="licensePlateNumber"
|
|
|
|
+ label="车牌号"
|
|
|
|
+ width="150"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="gpsDeviceNo"
|
|
|
|
+ label="gps设备编号"
|
|
|
|
+ width="130"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="deviceNo"
|
|
|
|
+ label="门禁设备编号"
|
|
|
|
+ width="200"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column prop="picture" label="照片" width="150">
|
|
|
|
+ <template slot-scope="{row}">
|
|
|
|
+ <a v-if="row.picture" :href="row.picture" target="_blank">
|
|
|
|
+ <el-image
|
|
|
|
+ :size="50"
|
|
|
|
+ :src="row.picture+'?x-oss-process=image/resize,m_fill,w_64,h_64'"
|
|
|
|
+ :key="row.id"
|
|
|
|
+ ></el-image>
|
|
|
|
+ </a>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="loadNumber"
|
|
|
|
+ label="荷载人数"
|
|
|
|
+ width="100"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column prop="status" label="车辆状态" width="100">
|
|
|
|
+ <template slot-scope="{ row }">
|
|
|
|
+ <span v-if="row.status==1">正常</span>
|
|
|
|
+ <span v-else-if="row.status==2">异常</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="companyName"
|
|
|
|
+ label="所属单位"
|
|
|
|
+ width="130"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column prop="running" label="是否运行" width="100">
|
|
|
|
+ <template slot-scope="{ row }">
|
|
|
|
+ <span v-if="row.running==0">停车</span>
|
|
|
|
+ <span v-else-if="row.running==1">行驶中</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column prop="online" label="在线状态" width="100">
|
|
|
|
+ <template slot-scope="{ row }">
|
|
|
|
+ <div
|
|
|
|
+ v-if="row.online"
|
|
|
|
+ style="border-radius: 30px;background-color:#67C23A;width:20px;height:20px;"
|
|
|
|
+ ></div>
|
|
|
|
+ <div
|
|
|
|
+ v-if="!row.online"
|
|
|
|
+ style="border-radius: 30px;background-color:#F56C6C;width:20px;height:20px;"
|
|
|
|
+ ></div>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ prop="latestAddress"
|
|
|
|
+ label="最后所在位置"
|
|
|
|
+ width="150"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column label="操作" fixed="right" width="220">
|
|
|
|
+ <template slot-scope="{ row }">
|
|
|
|
+ <el-button size="mini" type="warning" @click="handleEdit(row)">编辑</el-button>
|
|
|
|
+ <el-button size="mini" type="danger" @click="handleDelete(row)">删除</el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+ <el-pagination
|
|
|
|
+ :current-page.sync="pageIndex"
|
|
|
|
+ :total="totalElements"
|
|
|
|
+ :page-sizes="pageSizeList"
|
|
|
|
+ @current-change="changePage"
|
|
|
|
+ @size-change="pageSizeChange"
|
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
+ ></el-pagination>
|
|
|
|
+ <vehicleInfo-detail
|
|
|
|
+ v-if="showModal"
|
|
|
|
+ :businessKey="businessKey"
|
|
|
|
+ :title="modalTitle"
|
|
|
|
+ @close="onDetailModalClose"
|
|
|
|
+ ></vehicleInfo-detail>
|
|
|
|
+ <el-select-tree
|
|
|
|
+ size="mini"
|
|
|
|
+ :props="props"
|
|
|
|
+ :options="companyResult"
|
|
|
|
+ v-model="queryModel.companyId"
|
|
|
|
+ height="200"
|
|
|
|
+ ></el-select-tree>
|
|
|
|
+ <el-dialog
|
|
|
|
+ title="导入"
|
|
|
|
+ :visible.sync="batchImportVisible"
|
|
|
|
+ :modal-append-to-body="false"
|
|
|
|
+ style="text-align: left"
|
|
|
|
+ :close-on-click-modal="false"
|
|
|
|
+ >
|
|
|
|
+ <el-form label-width="150px">
|
|
|
|
+ <el-form-item label="模板下载">
|
|
|
|
+ <el-link
|
|
|
|
+ href="http://rccs.oss-cn-hangzhou.aliyuncs.com/smart-bus/excel/vehicle.xls"
|
|
|
|
+ type="primary"
|
|
|
|
+ target="_blank"
|
|
|
|
+ >点击下载模板</el-link
|
|
|
|
+ >
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="上传文件">
|
|
|
|
+ <el-upload
|
|
|
|
+ class="upload-demo"
|
|
|
|
+ accept=".xls"
|
|
|
|
+ :action="uploadUrlXls"
|
|
|
|
+ :data="uploadXlsData"
|
|
|
|
+ :headers="headers"
|
|
|
|
+ :on-preview="handleBatchImportPreview"
|
|
|
|
+ name="uploadFile"
|
|
|
|
+ :multiple="true"
|
|
|
|
+ :limit="1"
|
|
|
|
+ :on-remove="handleBatchImportRemove"
|
|
|
|
+ :before-remove="beforeBatchImportRemove"
|
|
|
|
+ :before-upload="beforeUpload"
|
|
|
|
+ :on-exceed="handleBatchImportExceed"
|
|
|
|
+ :on-success="handleBatchImportSuccess"
|
|
|
|
+ :file-list="batchImportFileList"
|
|
|
|
+ >
|
|
|
|
+ <el-button size="small" type="primary" :loading="xlsLoading"
|
|
|
|
+ >点击上传</el-button
|
|
|
|
+ >
|
|
|
|
+ <div slot="tip" class="el-upload__tip">
|
|
|
|
+ 只能上传xls文件,且不超过500kb
|
|
|
|
+ </div>
|
|
|
|
+ </el-upload>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
+ <el-button type="primary" @click="batchImportVisible = false"
|
|
|
|
+ >关 闭</el-button
|
|
|
|
+ >
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
|
|
+ <!--批量导入E-->
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+<script>
|
|
|
|
+import Constant from "@/constant";
|
|
|
|
+import vehicleInfoDetail from "./vehicleInfo-detail";
|
|
|
|
+import vehicleInfoApi from "@/api/bus/vehicleInfo";
|
|
|
|
+import SelectTree from "@/components/SelectTree";
|
|
|
|
+import companyInfoApi from "@/api/bus/companyInfo";
|
|
|
|
+
|
|
|
|
+import { getToken } from "@/utils/auth"; // get token from cookie
|
|
|
|
+import "nprogress/nprogress.css"; // progress bar style
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ name: "BusDriverInfoList",
|
|
|
|
+ data() {
|
|
|
|
+ var self = this;
|
|
|
|
+ return {
|
|
|
|
+ activeName: "list",
|
|
|
|
+ queryModel: {
|
|
|
|
+ licensePlateNumber: "",
|
|
|
|
+ companyId: "",
|
|
|
|
+ gpsDeviceNo: "",
|
|
|
|
+ deviceNo: "",
|
|
|
|
+ },
|
|
|
|
+ loading: false,
|
|
|
|
+ tableData: [],
|
|
|
|
+ treeData: [],
|
|
|
|
+ pageIndex: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ totalPages: 0,
|
|
|
|
+ totalElements: 0,
|
|
|
|
+ field: "",
|
|
|
|
+ direction: "",
|
|
|
|
+ pageSizeList: [10, 20, 30],
|
|
|
|
+ multipleSelection: [],
|
|
|
|
+ showModal: false,
|
|
|
|
+ modalTitle: "",
|
|
|
|
+ businessKey: "",
|
|
|
|
+ tableHeight: 300,
|
|
|
|
+ showDeviceModal: false,
|
|
|
|
+ companyId: "",
|
|
|
|
+ qrCode: "",
|
|
|
|
+ companyResult: [],
|
|
|
|
+ props: {
|
|
|
|
+ // 配置项(必选)
|
|
|
|
+ value: "id",
|
|
|
|
+ label: "name",
|
|
|
|
+ children: "children",
|
|
|
|
+ },
|
|
|
|
+ batchImportVisible: false,
|
|
|
|
+ batchImportFileList: [],
|
|
|
|
+ uploadUrlXls: Constant.serverUrl + "/bus/vehicleInfo/importXls",
|
|
|
|
+ uploadXlsData: {
|
|
|
|
+ subFolder: "driver",
|
|
|
|
+ },
|
|
|
|
+ headers: {
|
|
|
|
+ Authorization: getToken(),
|
|
|
|
+ },
|
|
|
|
+ xlsLoading: false,
|
|
|
|
+ sceneData: [],
|
|
|
|
+ typeData:[]
|
|
|
|
+ };
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+ var self = this;
|
|
|
|
+
|
|
|
|
+ companyInfoApi.treeList().then(function (response) {
|
|
|
|
+ var jsonData = response.data;
|
|
|
|
+ if (jsonData.result) {
|
|
|
|
+ self.companyResult = jsonData.data;
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ this.changePage(1);
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ changePage(pageIndex) {
|
|
|
|
+ var self = this;
|
|
|
|
+
|
|
|
|
+ self.loading = true;
|
|
|
|
+
|
|
|
|
+ self.pageIndex = pageIndex;
|
|
|
|
+ var formData = new FormData();
|
|
|
|
+
|
|
|
|
+ formData.append("pageIndex", self.pageIndex);
|
|
|
|
+ formData.append("pageSize", self.pageSize);
|
|
|
|
+
|
|
|
|
+ formData.append("companyId", self.queryModel.companyId);
|
|
|
|
+ formData.append("licensePlateNumber", self.queryModel.licensePlateNumber);
|
|
|
|
+ formData.append("gpsDeviceNo", self.queryModel.gpsDeviceNo);
|
|
|
|
+ formData.append("deviceNo", self.queryModel.deviceNo);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ vehicleInfoApi
|
|
|
|
+ .pageList(formData)
|
|
|
|
+ .then(function (response) {
|
|
|
|
+ self.loading = false;
|
|
|
|
+
|
|
|
|
+ var jsonData = response.data.data;
|
|
|
|
+
|
|
|
|
+ self.tableData = jsonData.data;
|
|
|
|
+ self.totalPages = jsonData.totalPages;
|
|
|
|
+ self.totalElements = jsonData.recordsTotal;
|
|
|
|
+ //45为分页栏的高度
|
|
|
|
+ //页面高度-列表上面的高度-分页栏高度
|
|
|
|
+ self.tableHeight =
|
|
|
|
+ window.innerHeight - self.$refs.formTable.$el.offsetTop - 100;
|
|
|
|
+ })
|
|
|
|
+ .catch((error) => {
|
|
|
|
+ self.loading = false;
|
|
|
|
+ // self.$message.error(error + "");
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ pageSizeChange(pageSize) {
|
|
|
|
+ this.pageSize = pageSize;
|
|
|
|
+ },
|
|
|
|
+ sortChange(data) {
|
|
|
|
+ this.field = data.column.field;
|
|
|
|
+ this.direction = data.order == "ascending" ? "asc" : "desc";
|
|
|
|
+
|
|
|
|
+ this.changePage(this.pageIndex);
|
|
|
|
+ },
|
|
|
|
+ handleSelectionChange(val) {
|
|
|
|
+ this.multipleSelection = val;
|
|
|
|
+ },
|
|
|
|
+ handleReset(name) {
|
|
|
|
+ this.$refs[name].resetFields();
|
|
|
|
+ },
|
|
|
|
+ handleAdd() {
|
|
|
|
+ this.modalTitle = "新增";
|
|
|
|
+ this.businessKey = "";
|
|
|
|
+ this.showModal = true;
|
|
|
|
+ },
|
|
|
|
+ handleEdit(record) {
|
|
|
|
+ this.modalTitle = "编辑";
|
|
|
|
+ this.businessKey = record.id;
|
|
|
|
+ this.showModal = true;
|
|
|
|
+ },
|
|
|
|
+ handleDelete(record) {
|
|
|
|
+ var self = this;
|
|
|
|
+
|
|
|
|
+ self
|
|
|
|
+ .$confirm("是否确认删除?", "提示", {
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
+ type: "warning",
|
|
|
|
+ })
|
|
|
|
+ .then(() => {
|
|
|
|
+ vehicleInfoApi.remove(record.id).then(function (response) {
|
|
|
|
+ var jsonData = response.data;
|
|
|
|
+
|
|
|
|
+ if (jsonData.result) {
|
|
|
|
+ // var index = self.tableData.indexOf(record);
|
|
|
|
+ // self.tableData.splice(index, 1);
|
|
|
|
+ self.changePage(self.pageIndex);
|
|
|
|
+
|
|
|
|
+ self.$message({
|
|
|
|
+ type: "success",
|
|
|
|
+ message: "删除成功!",
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ handleBatchDelete() {
|
|
|
|
+ var self = this;
|
|
|
|
+
|
|
|
|
+ var idList = this.multipleSelection.map((record) => {
|
|
|
|
+ return record.id;
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ this.$confirm("是否确认删除选中项?", "提示", {
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
+ type: "warning",
|
|
|
|
+ }).then(() => {
|
|
|
|
+ vehicleInfoApi.batchRemove(idList).then(function (response) {
|
|
|
|
+ var jsonData = response.data;
|
|
|
|
+
|
|
|
|
+ if (jsonData.result) {
|
|
|
|
+ self.changePage(self.pageIndex);
|
|
|
|
+
|
|
|
|
+ self.$message({
|
|
|
|
+ type: "success",
|
|
|
|
+ message: "删除成功!",
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ onDetailModalClose(refreshed) {
|
|
|
|
+ //保存成功后回调
|
|
|
|
+ this.showModal = false;
|
|
|
|
+ this.showDeviceModal = false;
|
|
|
|
+
|
|
|
|
+ if (refreshed) {
|
|
|
|
+ this.changePage(this.pageIndex);
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ beforeUpload(file, fileList) {
|
|
|
|
+ //导入前判断
|
|
|
|
+ },
|
|
|
|
+ //批量导入-上传成功
|
|
|
|
+ handleBatchImportSuccess(response, file, fileList) {
|
|
|
|
+ var self = this;
|
|
|
|
+ self.xlsLoading = false;
|
|
|
|
+ if (response.result) {
|
|
|
|
+ self.$message.success(response.message);
|
|
|
|
+ this.batchImportFileList = [];
|
|
|
|
+ this.changePage(1);
|
|
|
|
+ this.uploadCompanyId = "";
|
|
|
|
+ this.uploadXlsData.companyId = "";
|
|
|
|
+ this.batchImportVisible = false;
|
|
|
|
+ } else {
|
|
|
|
+ //this.$message.error(response.message);
|
|
|
|
+ this.batchImportFileList = [];
|
|
|
|
+ this.changePage(1);
|
|
|
|
+ this.uploadCompanyId = "";
|
|
|
|
+ this.uploadXlsData.companyId = "";
|
|
|
|
+
|
|
|
|
+ if (response.data != null) {
|
|
|
|
+ //下载有错误信息提示的报表
|
|
|
|
+ //window.open(response.data);
|
|
|
|
+ self.$message({
|
|
|
|
+ showClose: true,
|
|
|
|
+ dangerouslyUseHTMLString: true,
|
|
|
|
+ message:
|
|
|
|
+ response.message +
|
|
|
|
+ `,<a href="${response.data}" target="_blank">点击下载未导入的数据报表</a> `,
|
|
|
|
+ duration: 30000,
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ //批量导入-预览
|
|
|
|
+ handleBatchImportPreview(file) {
|
|
|
|
+ console.log(file.url);
|
|
|
|
+ },
|
|
|
|
+ //批量导入-移除
|
|
|
|
+ handleBatchImportRemove(file, fileList) {
|
|
|
|
+ console.log(file, fileList);
|
|
|
|
+ },
|
|
|
|
+ //批量导入-移除前操作
|
|
|
|
+ beforeBatchImportRemove(file, fileList) {
|
|
|
|
+ console.log(file, fileList);
|
|
|
|
+ },
|
|
|
|
+ //批量导入-文件超出个数限制时的钩子
|
|
|
|
+ handleBatchImportExceed(files, fileList) {
|
|
|
|
+ this.$message.warning(
|
|
|
|
+ `当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${
|
|
|
|
+ files.length + fileList.length
|
|
|
|
+ } 个文件`
|
|
|
|
+ );
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ mounted: function () {},
|
|
|
|
+ components: {
|
|
|
|
+ "vehicleInfo-detail": vehicleInfoDetail,
|
|
|
|
+ "el-select-tree": SelectTree,
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+</script>
|
|
|
|
+<style lang="scss" scoped>
|
|
|
|
+.el-breadcrumb {
|
|
|
|
+ margin: 10px;
|
|
|
|
+ line-height: 20px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.el-divider {
|
|
|
|
+ margin: 5px 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.demo-form-inline {
|
|
|
|
+ margin-left: 10px;
|
|
|
|
+ text-align: left;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.button-group {
|
|
|
|
+ margin-left: 10px;
|
|
|
|
+ text-align: left;
|
|
|
|
+}
|
|
|
|
+</style>
|