|
@@ -36,6 +36,26 @@
|
|
|
>新增
|
|
>新增
|
|
|
</el-button>
|
|
</el-button>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
|
+ <el-button v-no-more-click
|
|
|
|
|
+ type="warning"
|
|
|
|
|
+ plain
|
|
|
|
|
+ icon="el-icon-download"
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ @click="handleExport"
|
|
|
|
|
+ v-hasPermi="['iscs:sop:export']"
|
|
|
|
|
+ >导出</el-button>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
|
+ <el-button v-no-more-click
|
|
|
|
|
+ type="info"
|
|
|
|
|
+ plain
|
|
|
|
|
+ icon="el-icon-upload2"
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ @click="handleImport"
|
|
|
|
|
+ v-hasPermi="['iscs:sop:import']"
|
|
|
|
|
+ >导入</el-button>
|
|
|
|
|
+ </el-col>
|
|
|
<!-- <el-col :span="1.5">-->
|
|
<!-- <el-col :span="1.5">-->
|
|
|
<!-- <el-button v-no-more-click-->
|
|
<!-- <el-button v-no-more-click-->
|
|
|
<!-- type="info"-->
|
|
<!-- type="info"-->
|
|
@@ -98,6 +118,7 @@
|
|
|
v-hasPermi="['iscs:mars:sop:remove']"
|
|
v-hasPermi="['iscs:mars:sop:remove']"
|
|
|
>删除
|
|
>删除
|
|
|
</el-button>
|
|
</el-button>
|
|
|
|
|
+
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
</el-table>
|
|
</el-table>
|
|
@@ -177,6 +198,51 @@
|
|
|
<el-button v-no-more-click @click="cancel">取 消</el-button>
|
|
<el-button v-no-more-click @click="cancel">取 消</el-button>
|
|
|
</div>
|
|
</div>
|
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
|
|
+<!-- 导入文件-->
|
|
|
|
|
+ <el-dialog
|
|
|
|
|
+ :title="upload.title"
|
|
|
|
|
+ :visible.sync="upload.open"
|
|
|
|
|
+ width="400px"
|
|
|
|
|
+ append-to-body
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-upload
|
|
|
|
|
+ ref="upload"
|
|
|
|
|
+ :limit="1"
|
|
|
|
|
+ accept=".xlsx, .xls"
|
|
|
|
|
+ :headers="upload.headers"
|
|
|
|
|
+ :action="upload.url + '?updateSupport=' + upload.updateSupport"
|
|
|
|
|
+ :disabled="upload.isUploading"
|
|
|
|
|
+ :on-progress="handleFileUploadProgress"
|
|
|
|
|
+ :on-success="handleFileSuccess"
|
|
|
|
|
+ :auto-upload="false"
|
|
|
|
|
+ drag
|
|
|
|
|
+ >
|
|
|
|
|
+ <i class="el-icon-upload"></i>
|
|
|
|
|
+ <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
|
|
|
|
|
+ <div class="el-upload__tip text-center" slot="tip">
|
|
|
|
|
+ <div class="el-upload__tip" slot="tip">
|
|
|
|
|
+ <el-checkbox v-model="upload.updateSupport" />
|
|
|
|
|
+ 是否更新已经存在的用户数据
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <span>仅允许导入xls、xlsx格式文件。</span>
|
|
|
|
|
+ <el-link
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ :underline="false"
|
|
|
|
|
+ style="font-size: 12px; vertical-align: baseline"
|
|
|
|
|
+ @click="importTemplate"
|
|
|
|
|
+ >下载模板</el-link
|
|
|
|
|
+ >
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </el-upload>
|
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
|
+ <el-button v-no-more-click type="primary" @click="submitFileForm"
|
|
|
|
|
+ >确 定</el-button
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-button v-no-more-click @click="upload.open = false"
|
|
|
|
|
+ >取 消</el-button
|
|
|
|
|
+ >
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -191,6 +257,7 @@ import { listMarsDept } from '@/api/system/marsdept'
|
|
|
import {listLoto} from '@/api/mes/lotoStation/lotoStation'
|
|
import {listLoto} from '@/api/mes/lotoStation/lotoStation'
|
|
|
import { listTechnology } from '@/api/system/machinery'
|
|
import { listTechnology } from '@/api/system/machinery'
|
|
|
import Template from '@/views/print/printtemplate/list.vue'
|
|
import Template from '@/views/print/printtemplate/list.vue'
|
|
|
|
|
+import { getToken } from '@/utils/auth'
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
|
name: 'Dept',
|
|
name: 'Dept',
|
|
@@ -249,16 +316,32 @@ export default {
|
|
|
{ required: true, message: '岗位不能为空', trigger: 'blur' }
|
|
{ required: true, message: '岗位不能为空', trigger: 'blur' }
|
|
|
],
|
|
],
|
|
|
lotoId:[
|
|
lotoId:[
|
|
|
- { required: true, message: '电柜不能为空', trigger: 'blur' }
|
|
|
|
|
|
|
+ { required: true, message: '锁定站不能为空', trigger: 'blur' }
|
|
|
],
|
|
],
|
|
|
machineryId:[
|
|
machineryId:[
|
|
|
{ required: true, message: '设备/工艺不能为空', trigger: 'blur' }
|
|
{ required: true, message: '设备/工艺不能为空', trigger: 'blur' }
|
|
|
]
|
|
]
|
|
|
- }
|
|
|
|
|
|
|
+ },
|
|
|
|
|
+ // 用户导入参数
|
|
|
|
|
+ upload: {
|
|
|
|
|
+ // 是否显示弹出层(用户导入)
|
|
|
|
|
+ open: false,
|
|
|
|
|
+ // 弹出层标题(用户导入)
|
|
|
|
|
+ title: "",
|
|
|
|
|
+ // 是否禁用上传
|
|
|
|
|
+ isUploading: false,
|
|
|
|
|
+ // 是否更新已经存在的用户数据
|
|
|
|
|
+ updateSupport: 0,
|
|
|
|
|
+ // 设置上传的请求头部
|
|
|
|
|
+ headers: { Authorization: "Bearer " + getToken() },
|
|
|
|
|
+ // 上传的地址
|
|
|
|
|
+ url: process.env.VUE_APP_BASE_API + "/iscs/mars/sop/importSop"
|
|
|
|
|
+ },
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
created() {
|
|
created() {
|
|
|
this.getList()
|
|
this.getList()
|
|
|
|
|
+ this.getOtherList()
|
|
|
},
|
|
},
|
|
|
watch:{
|
|
watch:{
|
|
|
"form.workstationId":function(newVal,oldVal){
|
|
"form.workstationId":function(newVal,oldVal){
|
|
@@ -290,6 +373,9 @@ export default {
|
|
|
this.total = response.data.total;
|
|
this.total = response.data.total;
|
|
|
this.loading = false
|
|
this.loading = false
|
|
|
})
|
|
})
|
|
|
|
|
+
|
|
|
|
|
+ },
|
|
|
|
|
+ getOtherList(){
|
|
|
const data={
|
|
const data={
|
|
|
pasge:1,
|
|
pasge:1,
|
|
|
size:-1
|
|
size:-1
|
|
@@ -437,7 +523,40 @@ export default {
|
|
|
this.$modal.msgSuccess('删除成功')
|
|
this.$modal.msgSuccess('删除成功')
|
|
|
}).catch(() => {
|
|
}).catch(() => {
|
|
|
})
|
|
})
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 导出按钮操作 */
|
|
|
|
|
+ handleExport() {
|
|
|
|
|
+ this.download('iscs/mars/sop/exportIsMarsSop', {
|
|
|
|
|
+ ...this.queryParams
|
|
|
|
|
+ }, `sop_${new Date().getTime()}.xlsx`)
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 导入按钮操作 */
|
|
|
|
|
+ handleImport() {
|
|
|
|
|
+ this.upload.title = "sop导入";
|
|
|
|
|
+ this.upload.open = true;
|
|
|
|
|
+ },
|
|
|
|
|
+ /** 下载模板操作 */
|
|
|
|
|
+ importTemplate() {
|
|
|
|
|
+ this.download('iscs/mars/sop/importTemplate', {
|
|
|
|
|
+ }, `sop_item_${new Date().getTime()}.xlsx`)
|
|
|
|
|
+ },
|
|
|
|
|
+ // 文件上传中处理
|
|
|
|
|
+ handleFileUploadProgress(event, file, fileList) {
|
|
|
|
|
+ this.upload.isUploading = true;
|
|
|
|
|
+ },
|
|
|
|
|
+ // 文件上传成功处理
|
|
|
|
|
+ handleFileSuccess(response, file, fileList) {
|
|
|
|
|
+ this.upload.open = false;
|
|
|
|
|
+ this.upload.isUploading = false;
|
|
|
|
|
+ this.$refs.upload.clearFiles();
|
|
|
|
|
+ this.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + "</div>", "导入结果", { dangerouslyUseHTMLString: true });
|
|
|
|
|
+ this.getList();
|
|
|
|
|
+ },
|
|
|
|
|
+ // 提交上传文件
|
|
|
|
|
+ submitFileForm() {
|
|
|
|
|
+ this.$refs.upload.submit();
|
|
|
|
|
+ },
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|