|
@@ -144,7 +144,7 @@
|
|
|
<source src="movie.mp4" type="video/mp4">
|
|
|
<source src="movie.ogg" type="video/ogg">
|
|
|
</video> -->
|
|
|
- <video ref="video" id="video" src="infoData.videoAddressUrl" autoplay="false" controls="true"
|
|
|
+ <video ref="video" id="video" :src="infoData.videoAddressUrl" autoplay="false" controls="true"
|
|
|
class="right_img">
|
|
|
</video>
|
|
|
</div>
|
|
@@ -170,19 +170,19 @@
|
|
|
billList: [],
|
|
|
tableData: [],
|
|
|
//分页
|
|
|
- searchkeyWord: "",
|
|
|
+ searchkeyWord: '',
|
|
|
currentPage: 1,
|
|
|
pageSize: 10,
|
|
|
deptBudgetTotal: 0,
|
|
|
deptCircularPage: {},
|
|
|
- search: "1",
|
|
|
+ search: '1',
|
|
|
addressUrl: [],
|
|
|
disabled: false,
|
|
|
rejectInfo: false,
|
|
|
checkList: [],
|
|
|
form: {
|
|
|
checkList: [],
|
|
|
- textarea: "",
|
|
|
+ textarea: '',
|
|
|
},
|
|
|
rightSee: false,
|
|
|
infoData: {},
|
|
@@ -227,15 +227,15 @@
|
|
|
submit(num) {
|
|
|
var _allowObj = {}
|
|
|
_allowObj.id = this.infoData.id
|
|
|
- let allowTitle = ""
|
|
|
+ let allowTitle = ''
|
|
|
if (num == 1) {
|
|
|
_allowObj.flag = 1
|
|
|
- allowTitle = "通过"
|
|
|
+ allowTitle = '通过'
|
|
|
} else if (num == 2) {
|
|
|
_allowObj.flag = 2
|
|
|
- allowTitle = "驳回"
|
|
|
+ allowTitle = '驳回'
|
|
|
}
|
|
|
- this.$confirm("确定" + allowTitle + "企业审核?", '提示', {
|
|
|
+ this.$confirm('确定' + allowTitle + '企业审核?', '提示', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning',
|
|
@@ -282,7 +282,7 @@
|
|
|
this.formData.addressUrl = response;
|
|
|
})
|
|
|
.catch((res) => {
|
|
|
- EventBus.$emit("error", (JSON.parse(res) || {}).message);
|
|
|
+ EventBus.$emit('error', (JSON.parse(res) || {}).message);
|
|
|
this.$refs.upload.clearFiles();
|
|
|
});
|
|
|
},
|