Commit d2f99cce by zhangzhen

细节优化

parent 461f11ad
...@@ -139,6 +139,13 @@ ...@@ -139,6 +139,13 @@
v-hasPermi="['system:store:remove']" v-hasPermi="['system:store:remove']"
>删除 >删除
</el-button> </el-button>
<el-button
size="mini"
type="text"
icon="el-icon-user"
@click="handleCleanConsumer(scope.row)"
v-hasPermi="['system:store:edit']"
>分配保洁</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
...@@ -369,6 +376,11 @@ export default { ...@@ -369,6 +376,11 @@ export default {
this.title = '修改门店' this.title = '修改门店'
}) })
}, },
/** 分配用户操作 */
handleCleanConsumer: function(row) {
const storeId = row.id;
this.$router.push("/share/store-consumer/clean/" + storeId);
},
/** 提交按钮 */ /** 提交按钮 */
submitForm() { submitForm() {
this.$refs['form'].validate(valid => { this.$refs['form'].validate(valid => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment