|
@@ -1,6 +1,12 @@
|
|
<template>
|
|
<template>
|
|
<div>
|
|
<div>
|
|
- <a-modal v-model="isShow" @cancel="cancel" title="点检关联门店" width="45%" :footer="null">
|
|
|
|
|
|
+ <a-modal
|
|
|
|
+ v-model="isShow"
|
|
|
|
+ @cancel="cancel"
|
|
|
|
+ title="点检关联门店"
|
|
|
|
+ width="45%"
|
|
|
|
+ :footer="null"
|
|
|
|
+ :centered="true">
|
|
<!-- 新增点检门店按钮 -->
|
|
<!-- 新增点检门店按钮 -->
|
|
<a-button type="primary" icon="plus" @click="openModal" style="margin-bottom: 20px;" id="usedStoreModal-openModal">新增门店</a-button>
|
|
<a-button type="primary" icon="plus" @click="openModal" style="margin-bottom: 20px;" id="usedStoreModal-openModal">新增门店</a-button>
|
|
<!-- 列表 -->
|
|
<!-- 列表 -->
|
|
@@ -53,7 +59,7 @@ export default {
|
|
columns: [{
|
|
columns: [{
|
|
title: '序号',
|
|
title: '序号',
|
|
dataIndex: 'no',
|
|
dataIndex: 'no',
|
|
- width: 60,
|
|
|
|
|
|
+ width: 60,
|
|
align: 'center'
|
|
align: 'center'
|
|
},
|
|
},
|
|
{
|
|
{
|
|
@@ -107,6 +113,7 @@ export default {
|
|
const _this = this
|
|
const _this = this
|
|
this.$confirm({
|
|
this.$confirm({
|
|
title: '提示',
|
|
title: '提示',
|
|
|
|
+ centered: true,
|
|
content: '删除后无法恢复,确认删除?',
|
|
content: '删除后无法恢复,确认删除?',
|
|
okText: '确定',
|
|
okText: '确定',
|
|
cancelText: '取消',
|
|
cancelText: '取消',
|